salix/modules/ticket/front/summary/index.spec.js

47 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-08-10 05:43:39 +00:00
import './index';
2018-08-10 09:40:48 +00:00
describe('Ticket', () => {
2018-08-10 05:43:39 +00:00
describe('Component vnTicketSummary', () => {
let controller;
let $httpBackend;
beforeEach(ngModule('ticket'));
2018-08-10 05:43:39 +00:00
beforeEach(angular.mock.inject(($componentController, _$httpBackend_) => {
2018-08-10 05:43:39 +00:00
$httpBackend = _$httpBackend_;
2020-03-18 07:35:59 +00:00
const $element = angular.element('<vn-ticket-summary></vn-ticket-summary>');
controller = $componentController('vnTicketSummary', {$element});
2018-08-10 05:43:39 +00:00
controller.ticket = {id: 1};
}));
2018-09-04 09:49:00 +00:00
describe('ticket()', () => {
2020-02-26 12:22:52 +00:00
it('should perform a GET query and define the summary property', () => {
2018-08-10 05:43:39 +00:00
let res = {id: 1, nickname: 'Batman'};
$httpBackend.when('GET', `Tickets/1/summary`).respond(200, res);
$httpBackend.expect('GET', `Tickets/1/summary`);
2018-09-04 09:49:00 +00:00
controller.ticket = {id: 1};
2018-08-10 05:43:39 +00:00
$httpBackend.flush();
expect(controller.summary).toBeDefined();
expect(controller.summary.nickname).toEqual('Batman');
});
});
describe('formattedAddress()', () => {
it('should return a full fromatted address with city and province', () => {
controller.summary = {
address: {
province: {
name: 'Gotham'
},
street: '1007 Mountain Drive',
city: 'Gotham'
}
};
expect(controller.formattedAddress).toEqual('1007 Mountain Drive - Gotham (Gotham)');
});
});
});
});