mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-04 12:51:12 -05:00
e2d08fa7cf
Partially fix ActivateLicensesModal.spec [IN PROGRESS] Don't display deleted users Move userID to classroom.deletedMembers on user delete (not retroactive) Fix PDF links for course guides, remove old PDFs from repo Remove deprecated SalesView Remove underline for not-yet-linked student names Only show class select when there's more than one Ignore case when sorting student names Use student.broadName instead of name for display and sorting Fix initial load not showing progress after joining a course (hacky) Fix text entry for enrollment number input Fix enrollment statistics Fix enrollment stats completely (and add back in per-class unenrolled count) Add deletedMembers to classroom schema More fixes to enrollment stats (don't count nonmember prepaids) Don't use 0 as implicit false for openSpots Update suggested number of credit to buy automatically Fix classroom edit form ignoring cleared values Add alert text when more users selected than enrollments available Alert user when trying to assign course to unenrolled students Alert user when assigning course to nobody Add some tests for TeacherClassView bulk assign alerts Fix TeacherClassView tests failing without demos Use model/collection.fakeRequests :D Remove unused comment Fix handling of improperly sorted deleted users on clientside Add test for moving deleted users to deletedMembers Add script for moving all deleted classroom members to classroom.deletedMembers Completely rewrite tallying up enrollment statistics Fix some tests to not be dependent on logged-in user Address PR comments Fix default number of enrollments to buy Fix i18n for not enough enrollments Use custom error message for classroom name length
74 lines
3.1 KiB
CoffeeScript
74 lines
3.1 KiB
CoffeeScript
TeacherClassView = require 'views/courses/TeacherClassView'
|
|
storage = require 'core/storage'
|
|
forms = require 'core/forms'
|
|
|
|
describe '/teachers/classes/:handle', ->
|
|
|
|
describe 'TeacherClassView', ->
|
|
|
|
# describe 'when logged out', ->
|
|
# it 'responds with 401 error'
|
|
# it 'shows Log In and Create Account buttons'
|
|
|
|
@view = null
|
|
|
|
# describe "when you don't own the class", ->
|
|
# it 'responds with 403 error'
|
|
# it 'shows Log Out button'
|
|
|
|
describe 'when logged in', ->
|
|
beforeEach (done) ->
|
|
me = require 'test/app/fixtures/teacher'
|
|
@classroom = require 'test/app/fixtures/classrooms/active-classroom'
|
|
@students = require 'test/app/fixtures/students'
|
|
@courses = require 'test/app/fixtures/courses'
|
|
@campaigns = require 'test/app/fixtures/campaigns'
|
|
@courseInstances = require 'test/app/fixtures/course-instances'
|
|
@levelSessions = require 'test/app/fixtures/level-sessions-partially-completed'
|
|
|
|
@view = new TeacherClassView()
|
|
@view.classroom.fakeRequests.forEach (r, index) => r.respondWith({ status: 200, responseText: JSON.stringify(@classroom) })
|
|
@view.courses.fakeRequests.forEach (r, index) => r.respondWith({ status: 200, responseText: JSON.stringify(@courses) })
|
|
@view.campaigns.fakeRequests.forEach (r, index) => r.respondWith({ status: 200, responseText: JSON.stringify(@campaigns) })
|
|
@view.courseInstances.fakeRequests.forEach (r, index) => r.respondWith({ status: 200, responseText: JSON.stringify(@courseInstances) })
|
|
@view.students.fakeRequests.forEach (r, index) => r.respondWith({ status: 200, responseText: JSON.stringify(@students) })
|
|
@view.classroom.sessions.fakeRequests.forEach (r, index) => r.respondWith({ status: 200, responseText: JSON.stringify(@levelSessions) })
|
|
|
|
jasmine.demoEl(@view.$el)
|
|
_.defer done
|
|
|
|
it 'has contents', ->
|
|
expect(@view.$el.children().length).toBeGreaterThan(0)
|
|
|
|
|
|
# it "shows the classroom's name and description"
|
|
# it "shows the classroom's join code"
|
|
|
|
describe 'the Students tab', ->
|
|
# it 'shows all of the students'
|
|
# it 'sorts correctly by Name'
|
|
# it 'sorts correctly by Progress'
|
|
|
|
describe 'bulk-assign controls', ->
|
|
it 'shows alert when assigning course 2 to unenrolled students', ->
|
|
expect(@view.$('.cant-assign-to-unenrolled').hasClass('visible')).toBe(false)
|
|
@view.$('.student-row .checkbox-flat').click()
|
|
@view.$('.assign-to-selected-students').click()
|
|
expect(@view.$('.cant-assign-to-unenrolled').hasClass('visible')).toBe(true)
|
|
|
|
it 'shows alert when assigning but no students are selected', ->
|
|
expect(@view.$('.no-students-selected').hasClass('visible')).toBe(false)
|
|
@view.$('.assign-to-selected-students').click()
|
|
expect(@view.$('.no-students-selected').hasClass('visible')).toBe(true)
|
|
|
|
# describe 'the Course Progress tab', ->
|
|
# it 'shows the correct Course Overview progress'
|
|
#
|
|
# describe 'when viewing another course'
|
|
# it 'still shows the correct Course Overview progress'
|
|
#
|
|
|
|
|
|
|
|
|
|
|