Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
1a0d8827
Commit
1a0d8827
authored
Jun 11, 2014
by
Greg Price
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor global var setup for forum Jasmine tests
Originally reviewed in #4072
parent
220a028b
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
14 additions
and
16 deletions
+14
-16
common/static/coffee/spec/discussion/content_spec.coffee
+1
-4
common/static/coffee/spec/discussion/discussion_spec_helper.coffee
+6
-0
common/static/coffee/spec/discussion/view/discussion_content_view_spec.coffee
+1
-2
common/static/coffee/spec/discussion/view/discussion_thread_list_view_spec.coffee
+1
-3
common/static/coffee/spec/discussion/view/discussion_thread_show_view_spec.coffee
+1
-2
common/static/coffee/spec/discussion/view/discussion_user_profile_view_spec.coffee
+1
-1
common/static/coffee/spec/discussion/view/response_comment_show_view_spec.coffee
+1
-0
common/static/coffee/spec/discussion/view/response_comment_view_spec.coffee
+1
-3
common/static/coffee/spec/discussion/view/thread_response_show_view_spec.coffee
+1
-1
No files found.
common/static/coffee/spec/discussion/content_spec.coffee
View file @
1a0d8827
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
->
...
...
common/static/coffee/spec/discussion/discussion_spec_helper.coffee
0 → 100644
View file @
1a0d8827
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
:
[]})
common/static/coffee/spec/discussion/view/discussion_content_view_spec.coffee
View file @
1a0d8827
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
...
...
common/static/coffee/spec/discussion/view/discussion_thread_list_view_spec.coffee
View file @
1a0d8827
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"
)
...
...
common/static/coffee/spec/discussion/view/discussion_thread_show_view_spec.coffee
View file @
1a0d8827
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
,
...
...
common/static/coffee/spec/discussion/view/discussion_user_profile_view_spec.coffee
View file @
1a0d8827
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
)
->
...
...
common/static/coffee/spec/discussion/view/response_comment_show_view_spec.coffee
View file @
1a0d8827
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>
...
...
common/static/coffee/spec/discussion/view/response_comment_view_spec.coffee
View file @
1a0d8827
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
,
...
...
common/static/coffee/spec/discussion/view/thread_response_show_view_spec.coffee
View file @
1a0d8827
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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment