2021-05-25 08:30:21 +00:00
|
|
|
import conversationsAPI from '../conversations';
|
2020-01-21 13:12:44 +00:00
|
|
|
import ApiClient from '../ApiClient';
|
2021-05-25 08:30:21 +00:00
|
|
|
import describeWithAPIMock from './apiSpecHelper';
|
2020-01-21 13:12:44 +00:00
|
|
|
|
|
|
|
describe('#ConversationApi', () => {
|
|
|
|
it('creates correct instance', () => {
|
2021-05-25 08:30:21 +00:00
|
|
|
expect(conversationsAPI).toBeInstanceOf(ApiClient);
|
|
|
|
expect(conversationsAPI).toHaveProperty('get');
|
|
|
|
expect(conversationsAPI).toHaveProperty('show');
|
|
|
|
expect(conversationsAPI).toHaveProperty('create');
|
|
|
|
expect(conversationsAPI).toHaveProperty('update');
|
|
|
|
expect(conversationsAPI).toHaveProperty('delete');
|
|
|
|
expect(conversationsAPI).toHaveProperty('getLabels');
|
|
|
|
expect(conversationsAPI).toHaveProperty('updateLabels');
|
|
|
|
});
|
|
|
|
|
|
|
|
describeWithAPIMock('API calls', context => {
|
|
|
|
it('#getLabels', () => {
|
|
|
|
conversationsAPI.getLabels(1);
|
|
|
|
expect(context.axiosMock.get).toHaveBeenCalledWith(
|
|
|
|
'/api/v1/conversations/1/labels'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('#updateLabels', () => {
|
|
|
|
const labels = ['support-query'];
|
|
|
|
conversationsAPI.updateLabels(1, labels);
|
|
|
|
expect(context.axiosMock.post).toHaveBeenCalledWith(
|
|
|
|
'/api/v1/conversations/1/labels',
|
|
|
|
{
|
|
|
|
labels,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2020-01-21 13:12:44 +00:00
|
|
|
});
|
|
|
|
});
|