-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathE2EButtonTest.tsx
104 lines (98 loc) · 3.63 KB
/
E2EButtonTest.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
/* eslint-disable @typescript-eslint/no-var-requires */
import * as React from 'react';
import { View } from 'react-native';
import { Text } from '@fluentui/react-native';
import { ButtonV1 as Button } from '@fluentui/react-native';
import { Stack } from '@fluentui-react-native/stack';
import type { IViewWin32Props } from '@office-iss/react-native-win32';
import {
BUTTON_TEST_COMPONENT,
BUTTON_ON_PRESS,
BUTTON_NO_A11Y_LABEL_COMPONENT,
BUTTON_ACCESSIBILITY_LABEL,
BUTTON_TEST_COMPONENT_LABEL,
BUTTON_ON_KEY,
BUTTON_PRESS_TEST_COMPONENT,
BUTTON_PRESS_TEST_COMPONENT_LABEL,
BUTTON_FOCUSABLE_TEST_COMPONENT,
BUTTON_FOCUSABLE_TEST_COMPONENT_LABEL,
} from '../../../../E2E/src/ButtonLegacy/consts';
import { stackStyle } from '../Common/styles';
import { testProps } from '../Common/TestProps';
export const E2EButtonTest: React.FunctionComponent = () => {
const [buttonPressed, setButtonPressed] = React.useState(false);
const [keyDetected, setKeyDetected] = React.useState('');
const onClick = React.useCallback(() => {
setButtonPressed(!buttonPressed);
setKeyDetected('');
}, [buttonPressed]);
const keyPressProps: Omit<IViewWin32Props, 'accessibilityRole' | 'role' | 'onBlur' | 'onFocus' | 'onMouseLeave' | 'onMouseEnter'> = {
keyDownEvents: [{ key: 'a' }],
onKeyDown: (args) => {
if (args.nativeEvent.key === 'a') {
setKeyDetected('a (down)');
args.stopPropagation();
}
},
keyUpEvents: [{ key: 'b' }],
onKeyUp: (args) => {
if (args.nativeEvent.key === 'b') {
setKeyDetected('b (up)');
args.stopPropagation();
}
},
};
return (
<View>
<Stack style={stackStyle}>
<Button
onClick={onClick}
accessibilityLabel={BUTTON_ACCESSIBILITY_LABEL}
/* For Android E2E testing purposes, testProps must be passed in after accessibilityLabel. */
{...testProps(BUTTON_TEST_COMPONENT)}
>
This is a button for E2E testing
</Button>
<Button
onClick={onClick}
accessibilityRole="menuitem"
/* For Android E2E testing purposes, testProps must be passed in after accessibilityLabel. */
{...testProps(BUTTON_NO_A11Y_LABEL_COMPONENT)}
>
{BUTTON_TEST_COMPONENT_LABEL}
</Button>
<Button
onClick={onClick}
accessibilityLabel={BUTTON_PRESS_TEST_COMPONENT_LABEL}
{...keyPressProps}
/* For Android E2E testing purposes, testProps must be passed in after accessibilityLabel. */
{...testProps(BUTTON_PRESS_TEST_COMPONENT)}
>
Press "a" or "b" after focusing this button
</Button>
<Button
onClick={onClick}
accessibilityLabel={BUTTON_FOCUSABLE_TEST_COMPONENT_LABEL}
focusable={false}
/* For Android E2E testing purposes, testProps must be passed in after accessibilityLabel. */
{...testProps(BUTTON_FOCUSABLE_TEST_COMPONENT)}
>
This button isn't focusable (but isn't disabled or indeterminate either)
</Button>
{buttonPressed ? (
<Text
/* For Android E2E testing purposes, testProps must be passed in after accessibilityLabel. */
{...testProps(BUTTON_ON_PRESS)}
>
Button Pressed
</Text>
) : null}
{keyDetected ? (
<Text /* For Android E2E testing purposes, testProps must be passed in after accessibilityLabel. */ {...testProps(BUTTON_ON_KEY)}>
Button Key Press detected: {keyDetected}
</Text>
) : null}
</Stack>
</View>
);
};