59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
import axios from 'axios';
|
|
import InboxesAPI from 'dashboard/api/inboxes';
|
|
import { actions, types } from '../../inboxAssignableAgents';
|
|
import agentsData from './fixtures';
|
|
|
|
const commit = vi.fn();
|
|
global.axios = axios;
|
|
vi.mock('axios');
|
|
vi.mock('dashboard/api/inboxes');
|
|
|
|
describe('#actions', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
describe('#fetch', () => {
|
|
it('sends correct actions if API is success', async () => {
|
|
axios.get.mockResolvedValue({
|
|
data: { payload: agentsData },
|
|
});
|
|
await actions.fetch({ commit }, [1]);
|
|
expect(commit.mock.calls).toEqual([
|
|
[types.SET_INBOX_ASSIGNABLE_AGENTS_UI_FLAG, { isFetching: true }],
|
|
[
|
|
types.SET_INBOX_ASSIGNABLE_AGENTS,
|
|
{ inboxId: '1', members: agentsData },
|
|
],
|
|
[types.SET_INBOX_ASSIGNABLE_AGENTS_UI_FLAG, { isFetching: false }],
|
|
]);
|
|
});
|
|
it('sends correct actions if API is error', async () => {
|
|
axios.get.mockRejectedValue({ message: 'Incorrect header' });
|
|
await expect(actions.fetch({ commit }, { inboxId: 1 })).rejects.toThrow(
|
|
Error
|
|
);
|
|
expect(commit.mock.calls).toEqual([
|
|
[types.SET_INBOX_ASSIGNABLE_AGENTS_UI_FLAG, { isFetching: true }],
|
|
[types.SET_INBOX_ASSIGNABLE_AGENTS_UI_FLAG, { isFetching: false }],
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('#fetchAssignableOwners', () => {
|
|
it('stores assignable owners for the inbox', async () => {
|
|
InboxesAPI.getAssignableOwners.mockResolvedValue({
|
|
data: { payload: agentsData },
|
|
});
|
|
|
|
await actions.fetchAssignableOwners({ commit }, 1);
|
|
|
|
expect(InboxesAPI.getAssignableOwners).toHaveBeenCalledWith(1);
|
|
expect(commit).toHaveBeenCalledWith(types.SET_INBOX_ASSIGNABLE_OWNERS, {
|
|
inboxId: 1,
|
|
owners: agentsData,
|
|
});
|
|
});
|
|
});
|
|
});
|