-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathCard.test.tsx
More file actions
254 lines (223 loc) · 6.17 KB
/
Copy pathCard.test.tsx
File metadata and controls
254 lines (223 loc) · 6.17 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
import React from 'react';
import { Animated, StyleSheet, Text } from 'react-native';
import { act, render } from '@testing-library/react-native';
import { getTheme } from '../../../core/theming';
import { Palette } from '../../../theme/tokens';
import Button from '../../Button/Button';
import Card from '../../Card/Card';
import { getCardColors, getCardCoverStyle } from '../../Card/utils';
const styles = StyleSheet.create({
customBorderRadius: {
borderRadius: 32,
},
customCoverRadius: {
borderTopLeftRadius: 4,
borderTopRightRadius: 8,
borderBottomLeftRadius: 0,
borderBottomRightRadius: 2,
},
contentStyle: {
flexDirection: 'column-reverse',
},
});
describe('Card', () => {
it('renders an outlined card', () => {
const tree = render(<Card mode="outlined">{null}</Card>).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders an outlined card with custom border radius and color', () => {
const { getByTestId } = render(
<Card
mode="outlined"
theme={{ colors: { outline: 'purple' } }}
style={styles.customBorderRadius}
>
{null}
</Card>
);
expect(getByTestId('card-outline')).toHaveStyle({
borderRadius: 32,
borderColor: 'purple',
});
});
it('renders an outlined card with custom border color', () => {
const { getByLabelText } = render(
<Card
mode="outlined"
accessibilityLabel="card"
style={{ borderColor: Palette.error50 }}
>
{null}
</Card>
);
expect(getByLabelText('card')).toHaveStyle({
borderColor: Palette.error50,
});
});
it('renders with a custom theme', () => {
const { getByLabelText } = render(
<Card
mode="outlined"
accessibilityLabel="card"
theme={{ colors: { surface: '#0000FF' } }}
>
{null}
</Card>
);
expect(getByLabelText('card')).toHaveStyle({
backgroundColor: '#0000FF',
});
});
it('renders with a content style', () => {
const { getByTestId } = render(
<Card contentStyle={styles.contentStyle}>
<Text>Content</Text>
</Card>
);
expect(getByTestId('card')).toHaveStyle(styles.contentStyle);
});
it('does not render a disabled accessibility state', () => {
const { getByTestId } = render(<Card>{null}</Card>);
expect(
getByTestId('card').props.accessibilityState || {}
).not.toMatchObject({
disabled: true,
});
});
it('does render a disabled accessibility state', () => {
const { getByA11yState } = render(
<Card onPress={() => {}} disabled>
{null}
</Card>
);
expect(getByA11yState({ disabled: true })).toBeOnTheScreen();
});
});
describe('CardCover', () => {
it('renders with custom border radius', () => {
const { getByTestId } = render(
<Card>
<Card.Cover
source={{ uri: 'https://picsum.photos/700' }}
testID="card-cover"
style={styles.customCoverRadius}
/>
</Card>
);
expect(getByTestId('card-cover')).toHaveStyle(styles.customCoverRadius);
});
});
describe('CardActions', () => {
it('renders button with passed mode', () => {
const { getByTestId } = render(
<Card>
<Card.Actions testID="card-actions">
<Button mode="contained">Agree</Button>
</Card.Actions>
</Card>
);
expect(getByTestId('card-actions').props.children[0].props.mode).toBe(
'contained'
);
});
it('renders button with custom styles', () => {
const { getByTestId } = render(
<Card>
<Card.Actions>
<Button
testID="card-actions-button"
mode="contained"
style={styles.customBorderRadius}
>
Agree
</Button>
</Card.Actions>
</Card>
);
expect(getByTestId('card-actions-button')).toHaveStyle({
borderRadius: 32,
});
});
});
describe('getCardColors - background color', () => {
it('should return correct theme color, for theme version 3, contained mode', () => {
expect(
getCardColors({
theme: getTheme(),
mode: 'contained',
})
).toMatchObject({
backgroundColor: getTheme().colors.surfaceVariant,
});
});
it('should return correct theme color, for theme version 3, outlined mode', () => {
expect(
getCardColors({
theme: getTheme(),
mode: 'outlined',
})
).toMatchObject({ backgroundColor: getTheme().colors.surface });
});
it('should return undefined, for theme version 3, elevated mode', () => {
expect(
getCardColors({
theme: getTheme(),
mode: 'elevated',
})
).toMatchObject({ backgroundColor: undefined });
});
});
describe('getCardColors - border color', () => {
it('should return correct theme color, for theme version 3', () => {
expect(
getCardColors({
theme: getTheme(),
mode: undefined as any,
})
).toMatchObject({ borderColor: getTheme().colors.outline });
});
});
describe('getCardCoverStyle - border radius', () => {
it('should return custom border radius', () => {
expect(
getCardCoverStyle({
theme: getTheme(),
borderRadiusStyles: styles.customCoverRadius,
})
).toMatchObject(styles.customCoverRadius);
});
it('should return correct border radius based on roundness, for theme version 3', () => {
expect(
getCardCoverStyle({
theme: getTheme(),
borderRadiusStyles: {},
})
).toMatchObject({ borderRadius: 3 * getTheme().roundness });
});
});
it('animated value changes correctly', () => {
const value = new Animated.Value(1);
const { getByTestId } = render(
<Card
mode="outlined"
accessibilityLabel="card"
style={[{ transform: [{ scale: value }] }]}
>
{null}
</Card>
);
expect(getByTestId('card-container-outer-layer')).toHaveStyle({
transform: [{ scale: 1 }],
});
Animated.timing(value, {
toValue: 1.5,
useNativeDriver: false,
duration: 200,
}).start();
act(() => {
jest.advanceTimersByTime(200);
});
expect(getByTestId('card-container-outer-layer')).toHaveStyle({
transform: [{ scale: 1.5 }],
});
});