forked from electron/fiddle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands-address-bar.spec.tsx
84 lines (68 loc) · 2.43 KB
/
commands-address-bar.spec.tsx
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
import React from 'react';
import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { runInAction } from 'mobx';
import { GistActionState } from '../src/interfaces';
import { AddressBar } from '../src/renderer/components/commands-address-bar';
import { AppState } from '../src/renderer/state';
import { StateMock } from '../tests/mocks/state';
describe('AddressBar component', () => {
let store: StateMock;
beforeEach(() => {
store = (window.ElectronFiddle.app.state as unknown) as StateMock;
});
it('loads a remote gist from a gist URL', async () => {
const gistId = '159cb99a70a201bd5e08194674f4c571';
const gistUrl = `https://gist.github.com/ghost/${gistId}`;
const { getByRole, getByPlaceholderText } = render(
<AddressBar appState={(store as unknown) as AppState} />,
);
await userEvent.type(
getByPlaceholderText('https://gist.github.com/...'),
gistUrl,
);
const btn = getByRole('button');
expect(btn).not.toBeDisabled();
await userEvent.click(btn);
const { fetchGistAndLoad } = window.ElectronFiddle.app.remoteLoader;
expect(fetchGistAndLoad).toBeCalledWith(gistId);
});
it('is disabled if address is empty', () => {
const { getByRole } = render(
<AddressBar appState={(store as unknown) as AppState} />,
);
const btn = getByRole('button');
expect(btn).toBeDisabled();
});
it('is disabled if the URL is invalid', async () => {
const { getByRole, getByPlaceholderText } = render(
<AddressBar appState={(store as unknown) as AppState} />,
);
const btn = getByRole('button');
await userEvent.type(
getByPlaceholderText('https://gist.github.com/...'),
'bad url',
);
expect(btn).toBeDisabled();
});
it.each([
GistActionState.deleting,
GistActionState.publishing,
GistActionState.updating,
])('disables during active gist action (%s)', async (action) => {
const gistId = '159cb99a70a201bd5e08194674f4c571';
const gistUrl = `https://gist.github.com/ghost/${gistId}`;
const { getByPlaceholderText, getByRole } = render(
<AddressBar appState={(store as unknown) as AppState} />,
);
await userEvent.type(
getByPlaceholderText('https://gist.github.com/...'),
gistUrl,
);
runInAction(() => {
store.activeGistAction = action;
});
const btn = getByRole('button');
expect(btn).toBeDisabled();
});
});