Commit 1a0d8827 by Greg Price

Refactor global var setup for forum Jasmine tests

Originally reviewed in #4072
parent 220a028b
describe 'All Content', -> describe 'All Content', ->
beforeEach -> beforeEach ->
# TODO: figure out a better way of handling this DiscussionSpecHelper.setUpGlobals()
# It is set up in main.coffee DiscussionApp.start
window.$$course_id = 'edX/999/test'
window.user = new DiscussionUser {id: '567'}
describe 'Content', -> describe 'Content', ->
beforeEach -> beforeEach ->
......
class @DiscussionSpecHelper
# This is sad. We should avoid dependence on global vars.
@setUpGlobals = ->
DiscussionUtil.loadRoles({"Moderator": [], "Administrator": [], "Community TA": []})
window.$$course_id = "edX/999/test"
window.user = new DiscussionUser({id: "567", upvoted_ids: []})
describe "DiscussionContentView", -> describe "DiscussionContentView", ->
beforeEach -> beforeEach ->
DiscussionSpecHelper.setUpGlobals()
setFixtures( setFixtures(
""" """
<div class="discussion-post"> <div class="discussion-post">
...@@ -36,7 +36,6 @@ describe "DiscussionContentView", -> ...@@ -36,7 +36,6 @@ describe "DiscussionContentView", ->
@thread = new Thread(@threadData) @thread = new Thread(@threadData)
@view = new DiscussionContentView({ model: @thread }) @view = new DiscussionContentView({ model: @thread })
@view.setElement($('.discussion-post')) @view.setElement($('.discussion-post'))
window.user = new DiscussionUser({id: '567', upvoted_ids: []})
it 'defines the tag', -> it 'defines the tag', ->
expect($('#jasmine-fixtures')).toExist expect($('#jasmine-fixtures')).toExist
......
describe "DiscussionThreadListView", -> describe "DiscussionThreadListView", ->
beforeEach -> beforeEach ->
DiscussionSpecHelper.setUpGlobals()
setFixtures """ setFixtures """
<script type="text/template" id="thread-list-item-template"> <script type="text/template" id="thread-list-item-template">
<a href="<%- id %>" data-id="<%- id %>"> <a href="<%- id %>" data-id="<%- id %>">
...@@ -75,8 +75,6 @@ describe "DiscussionThreadListView", -> ...@@ -75,8 +75,6 @@ describe "DiscussionThreadListView", ->
{id: "2", title: "Thread2", body: "dummy body", votes: {up_count: '42'}, unread_comments_count:0, comments_count:2, created_at: '2013-04-03T20:07:39Z',}, {id: "2", title: "Thread2", body: "dummy body", votes: {up_count: '42'}, unread_comments_count:0, comments_count:2, created_at: '2013-04-03T20:07:39Z',},
{id: "3", title: "Thread3", body: "dummy body", votes: {up_count: '12'}, unread_comments_count:0, comments_count:3, created_at: '2013-04-03T20:06:39Z',}, {id: "3", title: "Thread3", body: "dummy body", votes: {up_count: '12'}, unread_comments_count:0, comments_count:3, created_at: '2013-04-03T20:06:39Z',},
] ]
window.$$course_id = "TestOrg/TestCourse/TestRun"
window.user = new DiscussionUser({id: "567", upvoted_ids: []})
spyOn($, "ajax") spyOn($, "ajax")
......
describe "DiscussionThreadShowView", -> describe "DiscussionThreadShowView", ->
beforeEach -> beforeEach ->
DiscussionSpecHelper.setUpGlobals()
setFixtures( setFixtures(
""" """
<div class="discussion-post"> <div class="discussion-post">
...@@ -14,8 +15,6 @@ describe "DiscussionThreadShowView", -> ...@@ -14,8 +15,6 @@ describe "DiscussionThreadShowView", ->
""" """
) )
window.$$course_id = "TestOrg/TestCourse/TestRun"
window.user = new DiscussionUser({id: "567", upvoted_ids: []})
@threadData = { @threadData = {
id: "dummy", id: "dummy",
user_id: user.id, user_id: user.id,
......
describe "DiscussionUserProfileView", -> describe "DiscussionUserProfileView", ->
beforeEach -> beforeEach ->
DiscussionSpecHelper.setUpGlobals()
setFixtures( setFixtures(
""" """
<script type="text/template" id="_user_profile"> <script type="text/template" id="_user_profile">
...@@ -46,7 +47,6 @@ describe "DiscussionUserProfileView", -> ...@@ -46,7 +47,6 @@ describe "DiscussionUserProfileView", ->
<div class="user-profile-fixture"/> <div class="user-profile-fixture"/>
""" """
) )
window.$$course_id = "dummy_course_id"
spyOn(DiscussionThreadProfileView.prototype, "render") spyOn(DiscussionThreadProfileView.prototype, "render")
makeView = (threads, page, numPages) -> makeView = (threads, page, numPages) ->
......
describe 'ResponseCommentShowView', -> describe 'ResponseCommentShowView', ->
beforeEach -> beforeEach ->
DiscussionSpecHelper.setUpGlobals()
# set up the container for the response to go in # set up the container for the response to go in
setFixtures """ setFixtures """
<ol class="responses"></ol> <ol class="responses"></ol>
......
describe 'ResponseCommentView', -> describe 'ResponseCommentView', ->
beforeEach -> beforeEach ->
window.$$course_id = 'edX/999/test' DiscussionSpecHelper.setUpGlobals()
window.user = new DiscussionUser {id: '567'}
DiscussionUtil.loadRoles []
@comment = new Comment { @comment = new Comment {
id: '01234567', id: '01234567',
user_id: user.id, user_id: user.id,
......
describe "ThreadResponseShowView", -> describe "ThreadResponseShowView", ->
beforeEach -> beforeEach ->
DiscussionSpecHelper.setUpGlobals()
setFixtures( setFixtures(
""" """
<div class="discussion-post"> <div class="discussion-post">
...@@ -22,7 +23,6 @@ describe "ThreadResponseShowView", -> ...@@ -22,7 +23,6 @@ describe "ThreadResponseShowView", ->
@comment = new Comment(@commentData) @comment = new Comment(@commentData)
@view = new ThreadResponseShowView({ model: @comment }) @view = new ThreadResponseShowView({ model: @comment })
@view.setElement($(".discussion-post")) @view.setElement($(".discussion-post"))
window.user = new DiscussionUser({id: "567", upvoted_ids: []})
it "renders the vote correctly", -> it "renders the vote correctly", ->
DiscussionViewSpecHelper.checkRenderVote(@view, @comment) DiscussionViewSpecHelper.checkRenderVote(@view, @comment)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment