2021-06-18 14:38:58 +00:00
|
|
|
import contactAPI, { buildContactParams } from '../contacts';
|
2020-01-13 05:47:03 +00:00
|
|
|
import ApiClient from '../ApiClient';
|
2021-05-25 08:30:21 +00:00
|
|
|
import describeWithAPIMock from './apiSpecHelper';
|
2020-01-13 05:47:03 +00:00
|
|
|
|
|
|
|
describe('#ContactsAPI', () => {
|
|
|
|
it('creates correct instance', () => {
|
2021-05-25 08:30:21 +00:00
|
|
|
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', () => {
|
2021-06-18 14:38:58 +00:00
|
|
|
contactAPI.get(1, 'name', 'customer-support');
|
2021-05-25 08:30:21 +00:00
|
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
2021-06-18 14:38:58 +00:00
|
|
|
'/api/v1/contacts?page=1&sort=name&labels[]=customer-support'
|
2021-05-25 08:30:21 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
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'
|
|
|
|
);
|
|
|
|
});
|
2021-06-14 05:06:00 +00:00
|
|
|
|
|
|
|
it('#getContactLabels', () => {
|
|
|
|
contactAPI.getContactLabels(1);
|
|
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
|
|
|
'/api/v1/contacts/1/labels'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('#updateContactLabels', () => {
|
|
|
|
const labels = ['support-query'];
|
|
|
|
contactAPI.updateContactLabels(1, labels);
|
|
|
|
expect(context.axiosMock.post).toHaveBeenCalledWith(
|
|
|
|
'/api/v1/contacts/1/labels',
|
|
|
|
{
|
|
|
|
labels,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2021-05-25 08:30:21 +00:00
|
|
|
it('#search', () => {
|
2021-06-18 14:38:58 +00:00
|
|
|
contactAPI.search('leads', 1, 'date', 'customer-support');
|
2021-05-25 08:30:21 +00:00
|
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
2021-06-18 14:38:58 +00:00
|
|
|
'/api/v1/contacts/search?page=1&sort=date&q=leads&labels[]=customer-support'
|
2021-05-25 08:30:21 +00:00
|
|
|
);
|
|
|
|
});
|
2020-01-13 05:47:03 +00:00
|
|
|
});
|
|
|
|
});
|
2021-06-18 14:38:58 +00:00
|
|
|
|
|
|
|
describe('#buildContactParams', () => {
|
|
|
|
it('returns correct string', () => {
|
|
|
|
expect(buildContactParams(1, 'name', '', '')).toBe('page=1&sort=name');
|
|
|
|
expect(buildContactParams(1, 'name', 'customer-support', '')).toBe(
|
|
|
|
'page=1&sort=name&labels[]=customer-support'
|
|
|
|
);
|
|
|
|
expect(
|
|
|
|
buildContactParams(1, 'name', 'customer-support', 'message-content')
|
|
|
|
).toBe('page=1&sort=name&q=message-content&labels[]=customer-support');
|
|
|
|
});
|
|
|
|
});
|