1
1
import React from 'react' ;
2
2
import { fireEvent , render } from '@testing-library/react' ;
3
+ import { alert } from 'ant-design-testing' ;
3
4
import '@testing-library/jest-dom/extend-expect' ;
4
5
5
6
import SlidePane from '../index' ;
6
7
7
8
describe ( 'test SlidePane ' , ( ) => {
8
9
test ( 'snapshot match' , ( ) => {
9
- const wrapper = render ( < SlidePane visible > Hello World</ SlidePane > ) ;
10
+ const wrapper = render ( < SlidePane open > Hello World</ SlidePane > ) ;
10
11
expect ( wrapper ) . toMatchSnapshot ( ) ;
11
12
} ) ;
12
- test ( 'should be invisible ' , ( ) => {
13
- const { container } = render ( < SlidePane visible = { false } > Hello World</ SlidePane > ) ;
13
+ test ( 'should be not open ' , ( ) => {
14
+ const { container } = render ( < SlidePane open = { false } > Hello World</ SlidePane > ) ;
14
15
expect ( container ) . not . toHaveClass ( ) ;
15
16
} ) ;
16
17
test ( 'should render loading correct ' , ( ) => {
17
- const { unmount } = render ( < SlidePane visible > Hello World</ SlidePane > ) ;
18
+ const { unmount } = render ( < SlidePane open > Hello World</ SlidePane > ) ;
18
19
const dom = document . querySelector ( '.ant-spin-spinning' ) ;
19
20
expect ( dom ) . toBe ( null ) ;
20
21
unmount ( ) ;
21
22
render (
22
- < SlidePane visible loading >
23
+ < SlidePane open loading >
23
24
Hello World
24
25
</ SlidePane >
25
26
) ;
26
27
const domLoading = document . querySelector ( '.ant-spin-spinning' ) ;
27
28
expect ( domLoading ) . not . toBe ( null ) ;
28
29
} ) ;
29
30
test ( 'should render mask correct ' , ( ) => {
30
- const { unmount } = render ( < SlidePane visible > Hello World</ SlidePane > ) ;
31
+ const { unmount } = render ( < SlidePane open > Hello World</ SlidePane > ) ;
31
32
const dom = document . querySelector ( '.dtc-slide-pane-mask' ) ;
32
33
expect ( dom ) . toBe ( null ) ;
33
34
unmount ( ) ;
34
35
render (
35
- < SlidePane visible mask >
36
+ < SlidePane open mask >
36
37
Hello World
37
38
</ SlidePane >
38
39
) ;
@@ -41,18 +42,28 @@ describe('test SlidePane ', () => {
41
42
} ) ;
42
43
test ( 'should render width correct' , ( ) => {
43
44
render (
44
- < SlidePane visible width = { 640 } >
45
+ < SlidePane open width = { 640 } >
45
46
Hello World
46
47
</ SlidePane >
47
48
) ;
48
49
expect ( document . querySelector ( '.dtc-slide-pane-content-wrapper' ) ) . toHaveStyle ( {
49
50
width : '640px' ,
50
51
} ) ;
51
52
} ) ;
53
+ test ( 'should render size width correct' , ( ) => {
54
+ render (
55
+ < SlidePane open size = "large" >
56
+ Hello World
57
+ </ SlidePane >
58
+ ) ;
59
+ expect ( document . querySelector ( '.dtc-slide-pane-content-wrapper' ) ) . toHaveStyle ( {
60
+ width : '1256px' ,
61
+ } ) ;
62
+ } ) ;
52
63
test ( 'should render className/style correct' , ( ) => {
53
64
const { unmount } = render (
54
65
< SlidePane
55
- visible
66
+ open
56
67
rootClassName = "root-className"
57
68
bodyClassName = "body-className"
58
69
rootStyle = { { color : 'red' } }
@@ -72,7 +83,7 @@ describe('test SlidePane ', () => {
72
83
test ( 'should render tab correct' , ( ) => {
73
84
const { getByText, unmount } = render (
74
85
< SlidePane
75
- visible
86
+ open
76
87
width = { 640 }
77
88
tabs = { [
78
89
{ key : '1' , title : 'tab1' } ,
@@ -98,7 +109,7 @@ describe('test SlidePane ', () => {
98
109
99
110
const { getByText : getByText1 } = render (
100
111
< SlidePane
101
- visible
112
+ open
102
113
width = { 640 }
103
114
tabs = { [
104
115
{ key : '1' , title : 'tab1' } ,
@@ -121,10 +132,38 @@ describe('test SlidePane ', () => {
121
132
expect ( getByText1 ( '变更记录' ) ) . toBeTruthy ( ) ;
122
133
expect ( getByText1 ( 'tab2' ) . parentNode ) . toHaveClass ( 'ant-tabs-tab-active' ) ;
123
134
} ) ;
135
+ test ( 'Should support string banner' , async ( ) => {
136
+ const { getByText } = render (
137
+ < SlidePane open banner = "banner" >
138
+ Hello World
139
+ </ SlidePane >
140
+ ) ;
141
+
142
+ expect ( getByText ( 'banner' ) ) . toBeInTheDocument ( ) ;
143
+ } ) ;
144
+ test ( 'Should support ReactNode' , async ( ) => {
145
+ const { getByTestId } = render (
146
+ < SlidePane open banner = { < div data-testid = "banner" > xxxx</ div > } >
147
+ test
148
+ </ SlidePane >
149
+ ) ;
150
+
151
+ expect ( getByTestId ( 'banner' ) ) . toBeInTheDocument ( ) ;
152
+ } ) ;
153
+ it ( 'Should support AlertProps' , async ( ) => {
154
+ const { getByText } = render (
155
+ < SlidePane open banner = { { message : 'banner' , type : 'error' } } >
156
+ test
157
+ </ SlidePane >
158
+ ) ;
159
+
160
+ expect ( getByText ( 'banner' ) ) . toBeInTheDocument ( ) ;
161
+ expect ( alert . query ( document ) ?. classList . contains ( 'ant-alert-error' ) ) . toBeTruthy ( ) ;
162
+ } ) ;
124
163
test ( 'should callback to be called' , ( ) => {
125
164
const fn = jest . fn ( ) ;
126
165
const { getByRole } = render (
127
- < SlidePane visible onClose = { fn } >
166
+ < SlidePane open onClose = { fn } >
128
167
Hello World
129
168
</ SlidePane >
130
169
) ;
0 commit comments