Skip to content

Commit bc17e93

Browse files
Fixing attachments tests
1 parent b10491b commit bc17e93

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

app/javascript/components/record-form/form/field-types/attachments/attachment-field.spec.js

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { mountedComponent, screen } from "../../../../../test-utils";
1+
import { mountedComponent, screen, fireEvent } from "../../../../../test-utils";
22

33
import { ATTACHMENT_TYPES } from "./constants";
44
import AttachmentField from "./attachment-field";
@@ -21,8 +21,9 @@ describe("<AttachmentField />", () => {
2121
initialValues: {}
2222
};
2323

24-
it("should render ActionDialog", () => {
24+
it("should render component", () => {
2525
mountedComponent(<AttachmentField {...props} />, {}, [], {}, formProps);
26+
expect(document.querySelector(".uploadBox")).toBeInTheDocument();
2627
expect(screen.getByText("fields.file_upload_box.select_file_button_text")).toBeInTheDocument();
2728
});
2829

@@ -32,14 +33,27 @@ describe("<AttachmentField />", () => {
3233
});
3334

3435
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+
3549
it("should not render the AttachmentInput", () => {
36-
mountedComponent(<AttachmentField {...props} />, {}, [], {}, formProps);
50+
mountedComponent(<AttachmentField {...newProps} />, {}, [], {}, formProps);
3751
expect(screen.queryByRole("textbox")).toBeNull();
3852
});
3953

4054
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();
4357
});
4458
});
4559

app/javascript/components/record-form/form/field-types/attachments/attachment-preview.spec.js

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ describe("<AttachmentPreview />", () => {
2323

2424
it("should render an img", () => {
2525
mountedComponent(<AttachmentPreview {...props} />, {}, [], {}, formProps);
26+
expect(screen.getByRole("img")).toBeInTheDocument();
2627
expect(screen.getByTestId("attachment")).toBeInTheDocument();
2728
});
2829
});

app/javascript/components/record-form/form/field-types/attachments/render-preview.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ describe("renderPreview", () => {
1818
};
1919

2020
simpleMountedComponent(renderPreview(ATTACHMENT_TYPES.document, file, css, deleteButton));
21-
renderPreview(ATTACHMENT_TYPES.document, file, css, deleteButton);
2221
expect(screen.getByText(/test.txt/i)).toBeInTheDocument();
2322
});
2423

0 commit comments

Comments
 (0)