This repository was archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDescope.test.ts
112 lines (97 loc) · 3.5 KB
/
Descope.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import { shallowMount, mount } from '@vue/test-utils';
import Descope from '../src/Descope.vue';
import { default as DescopeWC } from '@descope/web-component';
jest.mock('../src/hooks', () => ({
useOptions: () => ({ projectId: 'project1', baseUrl: 'baseUrl' }),
useDescope: () => ({ httpClient: { hooks: { afterRequest: jest.fn() } } }),
useUser: () => ({}),
useSession: () => ({})
}));
globalThis.Response = <any>class {};
describe('Descope.vue', () => {
it('renders the WC', () => {
const wrapper = shallowMount(Descope, {
props: { flowId: 'flow1' }
});
expect(wrapper.find('descope-wc').exists()).toBe(true);
});
it('renders a DescopeWc component with the correct props', () => {
const errorTransformer = (error: { text: string; type: string }) => {
return error.text || error.type;
};
const wrapper = mount(Descope, {
props: {
flowId: 'test-flow-id',
tenant: 'test-tenant',
theme: 'test-theme',
locale: 'test-locale',
debug: true,
telemetryKey: 'test-telemetry-key',
redirectUrl: 'test-redirect-url',
autoFocus: true,
errorTransformer,
form: { test: 'a' },
client: { test: 'b' }
}
});
const descopeWc = wrapper.find('descope-wc');
expect(descopeWc.exists()).toBe(true);
expect(descopeWc.attributes('project-id')).toBe('project1');
expect(descopeWc.attributes('base-url')).toBe('baseUrl');
expect(descopeWc.attributes('flow-id')).toBe('test-flow-id');
expect(descopeWc.attributes('theme')).toBe('test-theme');
expect(descopeWc.attributes('locale')).toBe('test-locale');
expect(descopeWc.attributes('tenant')).toBe('test-tenant');
expect(descopeWc.attributes('debug')).toBe('true');
expect(descopeWc.attributes('telemetrykey')).toBe('test-telemetry-key');
expect(descopeWc.attributes('redirect-url')).toBe('test-redirect-url');
expect(descopeWc.attributes('auto-focus')).toBe('true');
expect(wrapper.vm.errorTransformer).toBe(errorTransformer);
expect(descopeWc.attributes('form')).toBe('{"test":"a"}');
expect(wrapper.vm.client).toStrictEqual({ test: 'b' });
});
it('renders a DescopeWc component with empty props', () => {
const wrapper = mount(Descope, {
props: {
form: null,
client: null
}
});
const descopeWc = wrapper.find('descope-wc');
expect(descopeWc.attributes('form')).toBe('');
expect(wrapper.vm.client).toBeNull();
});
it('init sdk config', async () => {
const wrapper = mount(Descope);
const descopeWc = wrapper.find('descope-wc');
expect(descopeWc).toBeTruthy();
expect(DescopeWC.sdkConfigOverrides).toEqual({
baseHeaders: {
'x-descope-sdk-name': 'vue',
'x-descope-sdk-version': '123'
},
persistTokens: false,
hooks: {
beforeRequest: expect.any(Function)
}
});
});
it('emits a success event when the DescopeWc component emits a success event', async () => {
const wrapper = mount(Descope);
const descopeWc = wrapper.find('descope-wc');
await descopeWc.trigger('success', { detail: 'test-success-payload' });
expect(wrapper.emitted('success')).toBeTruthy();
expect(wrapper.emitted('success')?.[0]?.[0]).toMatchObject({
detail: 'test-success-payload'
});
});
it('emits an error event when the DescopeWc component emits an error event', async () => {
const wrapper = mount(Descope);
const descopeWc = wrapper.find('descope-wc');
await descopeWc.trigger('error', { detail: 'test-error-payload' });
expect(wrapper.emitted('error')).toBeTruthy();
expect(wrapper.emitted('error')?.[0]?.[0]).toMatchObject({
detail: 'test-error-payload'
});
});
});