forked from muxinc/elements
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatus.test.js
81 lines (66 loc) · 2.28 KB
/
status.test.js
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
import { server } from './utils/server';
import { fixture, assert, oneEvent, aTimeout } from '@open-wc/testing';
import '../src/index.ts';
describe('<mux-uploader-status>', () => {
let file = new File(['foo'], 'foo.mp4', {
type: 'video/mp4',
});
it('updates with success message on success', async function () {
server.respondWith('PUT', 'https://mock-upload-endpoint.com', [
200,
{ 'Content-Type': 'application/json' },
'{success: true}',
]);
const uploader = await fixture(`<mux-uploader
endpoint="https://mock-upload-endpoint.com"
></mux-uploader>`);
const status = uploader.shadowRoot.querySelector('mux-uploader-status');
setTimeout(() => {
uploader.dispatchEvent(
new CustomEvent('file-ready', {
composed: true,
bubbles: true,
detail: file,
})
);
});
await aTimeout(500);
server.respond();
await oneEvent(uploader, 'success');
assert.equal(status.statusMessage.innerHTML, 'Upload complete!', 'status message matches');
});
it('show an error when not provided an endpoint', async function () {
const uploader = await fixture(`<mux-uploader></mux-uploader>`);
const status = uploader.shadowRoot.querySelector('mux-uploader-status');
setTimeout(() => {
uploader.dispatchEvent(
new CustomEvent('file-ready', {
composed: true,
bubbles: true,
detail: file,
})
);
});
const { detail } = await oneEvent(uploader, 'uploaderror');
assert.equal(status.statusMessage.innerHTML, detail.message, 'status message matches');
});
it('clears an error on retry click', async function () {
const uploader = await fixture(`<mux-uploader></mux-uploader>`);
const status = uploader.shadowRoot.querySelector('mux-uploader-status');
setTimeout(() => {
uploader.dispatchEvent(
new CustomEvent('file-ready', {
composed: true,
bubbles: true,
detail: file,
})
);
});
await oneEvent(uploader, 'uploaderror');
setTimeout(() => {
uploader.dispatchEvent(new CustomEvent('reset'));
});
const e = await oneEvent(uploader, 'reset');
assert.equal(status.statusMessage.innerHTML, '', 'status message cleared');
});
});