-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathcommonButton-test.js
127 lines (113 loc) · 4.33 KB
/
commonButton-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
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
/*
* Backpack - Skyscanner's Design System
*
* Copyright 2016 Skyscanner Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { render } from '@testing-library/react';
import BpkButtonDestructive from './BpkButtonDestructive';
import BpkButtonFeatured from './BpkButtonFeatured';
import BpkButtonLink from './BpkButtonLink';
import BpkButtonLinkOnDark from './BpkButtonLinkOnDark';
import BpkButtonPrimary from './BpkButtonPrimary';
import BpkButtonPrimaryOnDark from './BpkButtonPrimaryOnDark';
import BpkButtonPrimaryOnLight from './BpkButtonPrimaryOnLight';
import BpkButtonSecondary from './BpkButtonSecondary';
import BpkButtonSecondaryOnDark from './BpkButtonSecondaryOnDark';
describe.each([
{ name: 'BpkButtonDestructive', ButtonToTest: BpkButtonDestructive },
{ name: 'BpkButtonFeatured', ButtonToTest: BpkButtonFeatured },
{ name: 'BpkButtonLink', ButtonToTest: BpkButtonLink },
{ name: 'BpkButtonLinkOnDark', ButtonToTest: BpkButtonLinkOnDark },
{ name: 'BpkButtonPrimary', ButtonToTest: BpkButtonPrimary },
{ name: 'BpkButtonPrimaryOnDark', ButtonToTest: BpkButtonPrimaryOnDark },
{ name: 'BpkButtonPrimaryOnLight', ButtonToTest: BpkButtonPrimaryOnLight },
{ name: 'BpkButtonSecondary', ButtonToTest: BpkButtonSecondary },
{ name: 'BpkButtonSecondaryOnDark', ButtonToTest: BpkButtonSecondaryOnDark },
])('$name', ({ ButtonToTest }) => {
it('should render correctly', () => {
const { asFragment } = render(<ButtonToTest>My button</ButtonToTest>);
expect(asFragment()).toMatchSnapshot();
});
it('should render correctly with a "href" attribute', () => {
const { asFragment } = render(
<ButtonToTest href="#">My button</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
it('should render correctly with a "disabled" attribute', () => {
const { asFragment } = render(
<ButtonToTest disabled>My button</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
it('should render correctly with a "large" attribute', () => {
const { asFragment } = render(<ButtonToTest large>My button</ButtonToTest>);
expect(asFragment()).toMatchSnapshot();
});
it('should render correctly with an "iconOnly" attribute', () => {
const { asFragment } = render(
<ButtonToTest iconOnly>My button</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
it('should respect the class names entered as a string', () => {
const { asFragment } = render(
<ButtonToTest large className="custom-class-1 custom-class-2">
My button
</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
it('should add only bpk specific classes if className prop is set to empty string', () => {
const { asFragment } = render(
<ButtonToTest large className="">
My button
</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
it('should render correctly with "blank" attribute', () => {
const { asFragment } = render(
<ButtonToTest href="#" blank>
My button
</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
it('should render correctly with "rel" attribute', () => {
const { asFragment } = render(
<ButtonToTest href="#" rel="rel-attr">
My button
</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
it('should render correctly with "blank" and "rel" attributes', () => {
const { asFragment } = render(
<ButtonToTest href="#" blank rel="rel-overwrite">
My button
</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
it('should render correctly with "disabled" and "href" attributes', () => {
const { asFragment } = render(
<ButtonToTest href="#" disabled>
My button
</ButtonToTest>,
);
expect(asFragment()).toMatchSnapshot();
});
});