54 lines
1.9 KiB
CoffeeScript
54 lines
1.9 KiB
CoffeeScript
require ["jquery", "backbone", "coffee/src/main", "common/js/spec_helpers/ajax_helpers", "jasmine-stealth", "jquery.cookie"],
|
|
($, Backbone, main, AjaxHelpers) ->
|
|
describe "CMS", ->
|
|
it "should initialize URL", ->
|
|
expect(window.CMS.URL).toBeDefined()
|
|
|
|
describe "main helper", ->
|
|
beforeEach ->
|
|
@previousAjaxSettings = $.extend(true, {}, $.ajaxSettings)
|
|
spyOn($, "cookie")
|
|
$.cookie.when("csrftoken").thenReturn("stubCSRFToken")
|
|
main()
|
|
|
|
afterEach ->
|
|
$.ajaxSettings = @previousAjaxSettings
|
|
|
|
it "turn on Backbone emulateHTTP", ->
|
|
expect(Backbone.emulateHTTP).toBeTruthy()
|
|
|
|
it "setup AJAX CSRF token", ->
|
|
expect($.ajaxSettings.headers["X-CSRFToken"]).toEqual("stubCSRFToken")
|
|
|
|
describe "AJAX Errors", ->
|
|
|
|
beforeEach ->
|
|
appendSetFixtures(sandbox({id: "page-notification"}))
|
|
|
|
it "successful AJAX request does not pop an error notification", ->
|
|
server = AjaxHelpers.server(this, [200, {}, ''])
|
|
|
|
expect($("#page-notification")).toBeEmpty()
|
|
$.ajax("/test")
|
|
expect($("#page-notification")).toBeEmpty()
|
|
server.respond()
|
|
expect($("#page-notification")).toBeEmpty()
|
|
|
|
it "AJAX request with error should pop an error notification", ->
|
|
server = AjaxHelpers.server(this, [500, {}, ''])
|
|
|
|
$.ajax("/test")
|
|
server.respond()
|
|
expect($("#page-notification")).not.toBeEmpty()
|
|
expect($("#page-notification")).toContain('div.wrapper-notification-error')
|
|
|
|
it "can override AJAX request with error so it does not pop an error notification", ->
|
|
server = AjaxHelpers.server(this, [500, {}, ''])
|
|
|
|
$.ajax
|
|
url: "/test"
|
|
notifyOnError: false
|
|
|
|
server.respond()
|
|
expect($("#page-notification")).toBeEmpty()
|