58 lines
No EOL
2.2 KiB
CoffeeScript
58 lines
No EOL
2.2 KiB
CoffeeScript
#= require issue
|
|
|
|
describe 'Issue', ->
|
|
describe 'task lists', ->
|
|
fixture.preload('issues_show.html')
|
|
|
|
beforeEach ->
|
|
fixture.load('issues_show.html')
|
|
@issue = new Issue()
|
|
|
|
it 'modifies the Markdown field', ->
|
|
spyOn(jQuery, 'ajax').and.stub()
|
|
$('input[type=checkbox]').attr('checked', true).trigger('change')
|
|
expect($('.js-task-list-field').val()).toBe('- [x] Task List Item')
|
|
|
|
it 'submits an ajax request on tasklist:changed', ->
|
|
spyOn(jQuery, 'ajax').and.callFake (req) ->
|
|
expect(req.type).toBe('PATCH')
|
|
expect(req.url).toBe('/foo')
|
|
expect(req.data.issue.description).not.toBe(null)
|
|
|
|
$('.js-task-list-field').trigger('tasklist:changed')
|
|
describe 'reopen/close issue', ->
|
|
fixture.preload('issues_show.html')
|
|
beforeEach ->
|
|
fixture.load('issues_show.html')
|
|
@issue = new Issue()
|
|
it 'closes an issue', ->
|
|
$.ajax = (obj) ->
|
|
expect(obj.type).toBe('PUT')
|
|
expect(obj.url).toBe('http://gitlab/issues/6/close')
|
|
obj.success saved: true
|
|
$btnClose = $('a.btn-close')
|
|
$btnReopen = $('a.btn-reopen')
|
|
expect($btnReopen.hasClass('hidden')).toBe(true)
|
|
expect($btnClose.text()).toBe('Close')
|
|
expect(typeof $btnClose.prop('disabled')).toBe('undefined')
|
|
$btnClose.trigger('click')
|
|
expect($btnClose.hasClass('hidden')).toBe(true)
|
|
expect($btnReopen.hasClass('hidden')).toBe(false)
|
|
expect($btnClose.prop('disabled')).toBe(false)
|
|
expect($('div.issue-box-open').hasClass('hidden')).toBe(true)
|
|
expect($('div.issue-box-closed').hasClass('hidden')).toBe(false)
|
|
it 'reopens an issue', ->
|
|
$.ajax = (obj) ->
|
|
expect(obj.type).toBe('PUT')
|
|
expect(obj.url).toBe('http://gitlab/issues/6/reopen')
|
|
obj.success saved: true
|
|
$btnClose = $('a.btn-close')
|
|
$btnReopen = $('a.btn-reopen')
|
|
expect(typeof $btnReopen.prop('disabled')).toBe('undefined')
|
|
expect($btnReopen.text()).toBe('Reopen')
|
|
$btnReopen.trigger('click')
|
|
expect($btnReopen.hasClass('hidden')).toBe(true)
|
|
expect($btnClose.hasClass('hidden')).toBe(false)
|
|
expect($btnReopen.prop('disabled')).toBe(false)
|
|
expect($('div.issue-box-open').hasClass('hidden')).toBe(false)
|
|
expect($('div.issue-box-closed').hasClass('hidden')).toBe(true) |