mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-11 16:21:08 -05:00
8dbc86ca04
Hide TeachersContactModal after sending message Fix GET /db/level/:handle/session, more extensively test Fix EnrollmentView number of students input to stop losing focus on input Fix EnrollmentsView syntax Fix ActivateLicensesModal "Get Enrollments" button when already in the enrollments page Update EnrollmentsView with new credit numbers when ActivateLicensesModal closes Hide search box in TeacherClassView "Enrollment Status" tab Tweak EnrollmentsView styling Fix EnrollmentsView tests Fix AnalyticsView Make EnrollmentsView more explicitly handle undefined and empty array prepaid groups Remove log CoursesView handles JoinClassModal cancel Re-enable EditStudentModal set password button when the form changes Fix course instance tests, next level endpoint bug Fix EditStudentModal tests
50 lines
1.9 KiB
CoffeeScript
50 lines
1.9 KiB
CoffeeScript
TeachersContactModal = require 'views/teachers/TeachersContactModal'
|
|
TrialRequests = require 'collections/TrialRequests'
|
|
factories = require 'test/app/factories'
|
|
|
|
describe 'TeachersContactModal', ->
|
|
beforeEach (done) ->
|
|
@modal = new TeachersContactModal({ enrollmentsNeeded: 10 })
|
|
@modal.render()
|
|
trialRequests = new TrialRequests([factories.makeTrialRequest()])
|
|
@modal.trialRequests.fakeRequests[0].respondWith({ status: 200, responseText: trialRequests.stringify() })
|
|
@modal.supermodel.once('loaded-all', done)
|
|
jasmine.demoModal(@modal)
|
|
|
|
it 'shows an error when the email is invalid and the form is submitted', ->
|
|
@modal.$('input[name="email"]').val('not an email')
|
|
@modal.$('form').submit()
|
|
expect(@modal.$('input[name="email"]').closest('.form-group').hasClass('has-error')).toBe(true)
|
|
|
|
it 'shows an error when the message is empty and the form is submitted', ->
|
|
@modal.$('textarea[name="message"]').val('')
|
|
@modal.$('form').submit()
|
|
expect(@modal.$('textarea[name="message"]').closest('.form-group').hasClass('has-error')).toBe(true)
|
|
|
|
describe 'submit form', ->
|
|
beforeEach ->
|
|
@modal.$('form').submit()
|
|
|
|
it 'disables inputs', ->
|
|
for el in @modal.$('button, input, textarea')
|
|
expect($(el).is(':disabled')).toBe(true)
|
|
|
|
describe 'failed contact', ->
|
|
beforeEach ->
|
|
request = jasmine.Ajax.requests.mostRecent()
|
|
request.respondWith({status: 500})
|
|
|
|
it 'shows an error', ->
|
|
expect(@modal.$('.alert-danger').length).toBe(1)
|
|
|
|
describe 'successful contact', ->
|
|
beforeEach ->
|
|
request = jasmine.Ajax.requests.mostRecent()
|
|
request.respondWith({status: 200, responseText: '{}'})
|
|
|
|
it 'shows a success message', ->
|
|
expect(@modal.$('.alert-success').length).toBe(1)
|
|
|
|
it 'disables the submit button', ->
|
|
expect(@modal.$('#submit-btn').is(':disabled')).toBe(true)
|
|
|