cfdf4a12c8
* complete dshboard api specs * code cleanup * add conversation mixin spec * add isadmin mixin spec * add agent details component spec * add notification badge spec * spec for thumbnail exist in agent details * fix the deprecation warnings * add agent details spec * add account selector specs * code cleanup * refactor contact spec * review fixes * review fixes * add shared spec helper * update api spec helper * review fixes
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import contactAPI from '../contacts';
|
|
import ApiClient from '../ApiClient';
|
|
import describeWithAPIMock from './apiSpecHelper';
|
|
|
|
describe('#ContactsAPI', () => {
|
|
it('creates correct instance', () => {
|
|
expect(contactAPI).toBeInstanceOf(ApiClient);
|
|
expect(contactAPI).toHaveProperty('get');
|
|
expect(contactAPI).toHaveProperty('show');
|
|
expect(contactAPI).toHaveProperty('create');
|
|
expect(contactAPI).toHaveProperty('update');
|
|
expect(contactAPI).toHaveProperty('delete');
|
|
expect(contactAPI).toHaveProperty('getConversations');
|
|
});
|
|
|
|
describeWithAPIMock('API calls', context => {
|
|
it('#get', () => {
|
|
contactAPI.get(1, 'name');
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
|
'/api/v1/contacts?page=1&sort=name'
|
|
);
|
|
});
|
|
|
|
it('#getConversations', () => {
|
|
contactAPI.getConversations(1);
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
|
'/api/v1/contacts/1/conversations'
|
|
);
|
|
});
|
|
|
|
it('#getContactableInboxes', () => {
|
|
contactAPI.getContactableInboxes(1);
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
|
'/api/v1/contacts/1/contactable_inboxes'
|
|
);
|
|
});
|
|
it('#search', () => {
|
|
contactAPI.search('leads', 1, 'date');
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
|
'/api/v1/contacts/search?q=leads&page=1&sort=date'
|
|
);
|
|
});
|
|
});
|
|
});
|