-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathrenderer.test.tsx
116 lines (99 loc) · 3 KB
/
renderer.test.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
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
113
114
115
116
import * as React from 'react';
import { View, Text } from 'react-native';
import { createRenderer } from '../renderer';
function Passthrough({ children }: { children: React.ReactNode }) {
return children;
}
function RendersNull() {
return null;
}
test('renders View', () => {
const renderer = createRenderer();
renderer.render(<View />);
expect(renderer.toJSON()).toMatchInlineSnapshot(`<View />`);
});
test('renders Text', () => {
const renderer = createRenderer();
renderer.render(<Text>Hello RNTL!</Text>);
expect(renderer.toJSON()).toMatchInlineSnapshot(`
<Text>
Hello RNTL!
</Text>
`);
});
test('can update rendered element', () => {
const renderer = createRenderer();
renderer.render(<View testID="view" />);
expect(renderer.toJSON()).toMatchInlineSnapshot(`
<View
testID="view"
/>
`);
renderer.render(
<View testID="view">
<Text>Hello</Text>
</View>,
);
expect(renderer.toJSON()).toMatchInlineSnapshot(`
<View
testID="view"
>
<Text>
Hello
</Text>
</View>
`);
});
test('can unmount renderer element', () => {
const renderer = createRenderer();
renderer.render(<View testID="view" />);
expect(renderer.toJSON()).toMatchInlineSnapshot(`
<View
testID="view"
/>
`);
renderer.unmount();
expect(renderer.toJSON()).toBeNull();
});
test('returns root view', () => {
const renderer = createRenderer();
renderer.render(<View testID="view" />);
expect(renderer.root).toMatchInlineSnapshot(`
<View
testID="view"
/>
`);
});
test('returns container view', () => {
const renderer = createRenderer();
renderer.render(<View testID="view" />);
expect(renderer.container).toMatchInlineSnapshot(`
<CONTAINER>
<View
testID="view"
/>
</CONTAINER>
`);
});
test('returns null when rendering indirectly null', () => {
const renderer = createRenderer();
renderer.render(<RendersNull />);
expect(renderer.container).toMatchInlineSnapshot(`<CONTAINER />`);
expect(renderer.root).toBeNull();
expect(renderer.toJSON()).toBeNull();
});
test('throws when rendering string outside of Text', () => {
jest.spyOn(console, 'error').mockImplementation(() => {});
expect(() => createRenderer().render(<View>Hello</View>)).toThrowErrorMatchingInlineSnapshot(
`"Invariant Violation: Text strings must be rendered within a <Text> component. Detected attempt to render "Hello" string within a <View> component."`,
);
expect(() =>
createRenderer().render(<Passthrough>Hello</Passthrough>),
).toThrowErrorMatchingInlineSnapshot(
`"Invariant Violation: Text strings must be rendered within a <Text> component. Detected attempt to render "Hello" string within a <ROOT> component."`,
);
expect(() => createRenderer().render(<>Hello</>)).toThrowErrorMatchingInlineSnapshot(
`"Invariant Violation: Text strings must be rendered within a <Text> component. Detected attempt to render "Hello" string within a <ROOT> component."`,
);
jest.restoreAllMocks();
});