Copy the Chatwoot (v4.14.0) frontend runnable subset into frontend/ for customization: - app/javascript/ (Vue SPA: dashboard, widget, sdk, portal, superadmin) - app/views/ (ERB templates for vite-plugin-ruby entrypoint resolution) - app/helpers/, app/assets/ (Rails view helpers, static assets) - enterprise/ (Enterprise edition frontend overlay) - config/vite.json, vite.config.ts, bin/vite (Vite-Rails toolchain) - package.json, pnpm-lock.yaml, tailwind/postcss/eslint configs - Gemfile, Gemfile.lock (vite_rails gem for bin/vite binstub) Excluded Rails backend: controllers, models, services, jobs, mailers, policies, db, lib, spec, public, node_modules. Update references to the new frontend location: - .gitignore: exclude frontend build artifacts (node_modules, tmp, packs), keep frontend/bin/ and frontend/vendor/ via negation - backend/scripts/parity_frontend_smoke.sh: CHATWOOT_DIR default reference/chatwoot -> ../frontend - backend/scripts/parity_frontend_browser_smoke.mjs: same default update - AGENTS.md: add frontend section with Rails/Vite coupling notes - README: architecture tree includes frontend/
89 lines
2.5 KiB
JavaScript
89 lines
2.5 KiB
JavaScript
import integrationAPI from '../integrations';
|
|
import ApiClient from '../ApiClient';
|
|
|
|
describe('#integrationAPI', () => {
|
|
it('creates correct instance', () => {
|
|
expect(integrationAPI).toBeInstanceOf(ApiClient);
|
|
expect(integrationAPI).toHaveProperty('get');
|
|
expect(integrationAPI).toHaveProperty('show');
|
|
expect(integrationAPI).toHaveProperty('create');
|
|
expect(integrationAPI).toHaveProperty('update');
|
|
expect(integrationAPI).toHaveProperty('delete');
|
|
expect(integrationAPI).toHaveProperty('connectSlack');
|
|
expect(integrationAPI).toHaveProperty('updateSlack');
|
|
expect(integrationAPI).toHaveProperty('updateSlack');
|
|
expect(integrationAPI).toHaveProperty('listAllSlackChannels');
|
|
expect(integrationAPI).toHaveProperty('deleteHook');
|
|
});
|
|
describe('API calls', () => {
|
|
const originalAxios = window.axios;
|
|
const axiosMock = {
|
|
post: vi.fn(() => Promise.resolve()),
|
|
get: vi.fn(() => Promise.resolve()),
|
|
patch: vi.fn(() => Promise.resolve()),
|
|
delete: vi.fn(() => Promise.resolve()),
|
|
};
|
|
|
|
beforeEach(() => {
|
|
window.axios = axiosMock;
|
|
});
|
|
|
|
afterEach(() => {
|
|
window.axios = originalAxios;
|
|
});
|
|
|
|
it('#connectSlack', () => {
|
|
const code = 'SDNFJNSDFNDSJN';
|
|
integrationAPI.connectSlack(code);
|
|
expect(axiosMock.post).toHaveBeenCalledWith(
|
|
'/api/v1/integrations/slack',
|
|
{
|
|
code,
|
|
}
|
|
);
|
|
});
|
|
|
|
it('#updateSlack', () => {
|
|
const updateObj = { referenceId: 'SDFSDGSVE' };
|
|
integrationAPI.updateSlack(updateObj);
|
|
expect(axiosMock.patch).toHaveBeenCalledWith(
|
|
'/api/v1/integrations/slack',
|
|
{
|
|
reference_id: updateObj.referenceId,
|
|
}
|
|
);
|
|
});
|
|
|
|
it('#listAllSlackChannels', () => {
|
|
integrationAPI.listAllSlackChannels();
|
|
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
'/api/v1/integrations/slack/list_all_channels'
|
|
);
|
|
});
|
|
|
|
it('#delete', () => {
|
|
integrationAPI.delete(2);
|
|
expect(axiosMock.delete).toHaveBeenCalledWith('/api/v1/integrations/2');
|
|
});
|
|
|
|
it('#createHook', () => {
|
|
const hookData = {
|
|
app_id: 'fullcontact',
|
|
settings: { api_key: 'SDFSDGSVE' },
|
|
};
|
|
integrationAPI.createHook(hookData);
|
|
expect(axiosMock.post).toHaveBeenCalledWith(
|
|
'/api/v1/integrations/hooks',
|
|
hookData
|
|
);
|
|
});
|
|
|
|
it('#deleteHook', () => {
|
|
integrationAPI.deleteHook(2);
|
|
expect(axiosMock.delete).toHaveBeenCalledWith(
|
|
'/api/v1/integrations/hooks/2'
|
|
);
|
|
});
|
|
});
|
|
});
|