1
- import { mountedComponent , screen } from "../../../../../test-utils" ;
1
+ import { mountedComponent , screen , fireEvent } from "../../../../../test-utils" ;
2
2
3
3
import { ATTACHMENT_TYPES } from "./constants" ;
4
4
import AttachmentField from "./attachment-field" ;
@@ -21,8 +21,9 @@ describe("<AttachmentField />", () => {
21
21
initialValues : { }
22
22
} ;
23
23
24
- it ( "should render ActionDialog " , ( ) => {
24
+ it ( "should render component " , ( ) => {
25
25
mountedComponent ( < AttachmentField { ...props } /> , { } , [ ] , { } , formProps ) ;
26
+ expect ( document . querySelector ( ".uploadBox" ) ) . toBeInTheDocument ( ) ;
26
27
expect ( screen . getByText ( "fields.file_upload_box.select_file_button_text" ) ) . toBeInTheDocument ( ) ;
27
28
} ) ;
28
29
@@ -32,14 +33,27 @@ describe("<AttachmentField />", () => {
32
33
} ) ;
33
34
34
35
describe ( "when value contains attachmentUrl" , ( ) => {
36
+ const newProps = {
37
+ ...props ,
38
+ value : {
39
+ attachment_url : "random-string"
40
+ }
41
+ } ;
42
+
43
+ it ( "should render ActionDialog" , ( ) => {
44
+ mountedComponent ( < AttachmentField { ...newProps } /> , { } , [ ] , { } , formProps ) ;
45
+ fireEvent . click ( screen . getByRole ( "button" ) ) ;
46
+ expect ( screen . getByText ( "fields.remove attachment_field_test" ) ) . toBeInTheDocument ( ) ;
47
+ } ) ;
48
+
35
49
it ( "should not render the AttachmentInput" , ( ) => {
36
- mountedComponent ( < AttachmentField { ...props } /> , { } , [ ] , { } , formProps ) ;
50
+ mountedComponent ( < AttachmentField { ...newProps } /> , { } , [ ] , { } , formProps ) ;
37
51
expect ( screen . queryByRole ( "textbox" ) ) . toBeNull ( ) ;
38
52
} ) ;
39
53
40
54
it ( "should render the AttachmentPreview" , ( ) => {
41
- mountedComponent ( < AttachmentField { ...props } /> , { } , [ ] , { } , formProps ) ;
42
- expect ( screen . getByText ( "fields.file_upload_box.select_file_button_text ") ) . toBeInTheDocument ( ) ;
55
+ mountedComponent ( < AttachmentField { ...newProps } /> , { } , [ ] , { } , formProps ) ;
56
+ expect ( screen . getByRole ( "img ") ) . toBeInTheDocument ( ) ;
43
57
} ) ;
44
58
} ) ;
45
59
0 commit comments