codecombat/test/app/views/play/level/modal/CourseVictoryModal.spec.coffee

101 lines
3.5 KiB
CoffeeScript
Raw Normal View History

2016-01-19 18:42:20 -05:00
Course = require 'models/Course'
Level = require 'models/Level'
LevelSession = require 'models/LevelSession'
CourseVictoryModal = require 'views/play/level/modal/CourseVictoryModal'
ProgressView = require 'views/play/level/modal/ProgressView'
factories = require 'test/app/factories'
2016-01-19 18:42:20 -05:00
describe 'CourseVictoryModal', ->
Stuff 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
2016-04-07 17:55:42 -04:00
beforeEach ->
me.clear()
2016-01-19 18:42:20 -05:00
it 'will eventually be the only victory modal'
2016-01-19 18:42:20 -05:00
makeViewOptions = ->
level = factories.makeLevel()
course = factories.makeCourse()
courseInstance = factories.makeCourseInstance()
2016-01-19 18:42:20 -05:00
{
course: factories.makeCourse()
level: level
session: factories.makeLevelSession({ state: { complete: true } }, { level })
nextLevel: factories.makeLevel()
courseInstanceID: courseInstance.id
courseID: course.id
2016-01-19 18:42:20 -05:00
}
2016-04-13 12:54:24 -04:00
nextLevelRequest = null
handleRequests = (modal) ->
2016-01-19 18:42:20 -05:00
requests = jasmine.Ajax.requests.all()
modal.levelSessions.fakeRequests[0].respondWith({ status: 200, responseText: '[]' })
modal.classroom.fakeRequests[0].respondWith({
status: 200, responseText: factories.makeClassroom().stringify()
})
2016-06-02 19:08:35 -04:00
if me.fakeRequests
lastRequest = _.last(me.fakeRequests)
if not lastRequest.response
lastRequest.respondWith({
status: 200, responseText: factories.makeUser().stringify()
})
nextLevelRequest = modal.nextLevel.fakeRequests[0]
2016-01-19 18:42:20 -05:00
describe 'given a course level with a next level and no item or hero rewards', ->
modal = null
beforeEach (done) ->
options = makeViewOptions()
modal = new CourseVictoryModal(options)
handleRequests(modal)
nextLevelRequest.respondWith({status: 200, responseText: factories.makeLevel().stringify()})
2016-01-19 18:42:20 -05:00
_.defer done
it 'only shows the ProgressView', ->
expect(_.size(modal.views)).toBe(1)
expect(modal.views[0] instanceof ProgressView).toBe(true)
2016-01-26 14:02:11 -05:00
it '(demo)', -> jasmine.demoModal(modal)
2016-01-19 18:42:20 -05:00
describe 'its ProgressView', ->
it 'has a next level button which navigates to the next level on click', ->
spyOn(application.router, 'navigate')
button = modal.$el.find('#next-level-btn')
expect(button.length).toBe(1)
button.click()
expect(application.router.navigate).toHaveBeenCalled()
2016-01-19 18:42:20 -05:00
it 'has two columns', ->
expect(modal.$('.row:first .col-sm-12').length).toBe(0)
expect(modal.$('.row:first .col-sm-5').length).toBe(1)
expect(modal.$('.row:first .col-sm-7').length).toBe(1)
2016-01-19 18:42:20 -05:00
describe 'given a course level without a next level', ->
modal = null
beforeEach (done) ->
options = makeViewOptions()
# make the level not have a next level
level = options.level
level.unset('nextLevel')
delete options.nextLevel
modal = new CourseVictoryModal(options)
handleRequests(modal)
2016-04-13 12:54:24 -04:00
nextLevelRequest.respondWith({status: 404, responseText: '{}'})
2016-01-19 18:42:20 -05:00
_.defer done
2016-01-19 18:42:20 -05:00
describe 'its ProgressView', ->
it 'has a single large column, since there is no next level to display', ->
expect(modal.$('.row:first .col-sm-12').length).toBe(1)
expect(modal.$('.row:first .col-sm-5').length).toBe(0)
expect(modal.$('.row:first .col-sm-7').length).toBe(0)
2016-01-19 18:42:20 -05:00
it 'has a done button which navigates to the CourseDetailsView for the given course instance', ->
spyOn(application.router, 'navigate')
button = modal.$el.find('#done-btn')
expect(button.length).toBe(1)
button.click()
expect(application.router.navigate).toHaveBeenCalled()
2016-01-26 14:02:11 -05:00
it '(demo)', -> jasmine.demoModal(modal)