Commit 0431657f authored by Clement Ho's avatar Clement Ho

Add karma tests

parent f2f7ef9d
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
/* global BoardService */ /* global BoardService */
/* global ListIssue */ /* global ListIssue */
import Vue from 'vue';
import '~/lib/utils/url_utility'; import '~/lib/utils/url_utility';
import '~/boards/models/issue'; import '~/boards/models/issue';
import '~/boards/models/label'; import '~/boards/models/label';
...@@ -28,7 +29,12 @@ describe('Issue model', () => { ...@@ -28,7 +29,12 @@ describe('Issue model', () => {
color: 'red', color: 'red',
description: 'testing' description: 'testing'
}], }],
assignees: [], assignees: [{
id: 1,
name: 'name',
username: 'username',
avatar_url: 'http://avatar_url',
}],
}); });
}); });
...@@ -81,6 +87,33 @@ describe('Issue model', () => { ...@@ -81,6 +87,33 @@ describe('Issue model', () => {
expect(issue.labels.length).toBe(0); expect(issue.labels.length).toBe(0);
}); });
it('adds assignee', () => {
issue.addAssignee({
id: 2,
name: 'Bruce Wayne',
username: 'batman',
avatar_url: 'http://batman',
});
expect(issue.assignees.length).toBe(2);
});
it('finds assignee', () => {
const assignee = issue.findAssignee(issue.assignees[0]);
expect(assignee).toBeDefined();
});
it('removes assignee', () => {
const assignee = issue.findAssignee(issue.assignees[0]);
issue.removeAssignee(assignee);
expect(issue.assignees.length).toBe(0);
});
it('removes all assignees', () => {
issue.removeAllAssignees();
expect(issue.assignees.length).toBe(0);
});
it('sets position to infinity if no position is stored', () => { it('sets position to infinity if no position is stored', () => {
expect(issue.position).toBe(Infinity); expect(issue.position).toBe(Infinity);
}); });
...@@ -97,4 +130,25 @@ describe('Issue model', () => { ...@@ -97,4 +130,25 @@ describe('Issue model', () => {
expect(relativePositionIssue.position).toBe(1); expect(relativePositionIssue.position).toBe(1);
}); });
describe('update', () => {
it('passes assignee ids when there are assignees', (done) => {
spyOn(Vue.http, 'patch').and.callFake((url, data) => {
expect(data.issue.assignee_ids).toEqual([1]);
done();
});
issue.update('url');
});
it('passes assignee ids of [0] when there are no assignees', (done) => {
spyOn(Vue.http, 'patch').and.callFake((url, data) => {
expect(data.issue.assignee_ids).toEqual([0]);
done();
});
issue.removeAllAssignees();
issue.update('url');
});
});
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment