Skip to content

Commit 7ab4e7d

Browse files
Fixing flagging test
1 parent 443bcf8 commit 7ab4e7d

File tree

7 files changed

+53
-10
lines changed

7 files changed

+53
-10
lines changed

app/javascript/components/flagging/components/dialog-tabs/component.spec.js

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ describe("<DialogTabs /> - Component", () => {
1515
});
1616

1717
it("should render the DialogTabs", () => {
18+
screen.debug();
19+
expect(screen.getByText("flags.flags_tab")).toBeInTheDocument();
1820
expect(screen.getByText("flags.add_flag_tab")).toBeInTheDocument();
1921
});
2022
});

app/javascript/components/flagging/components/flag-dialog/component.spec.js.js app/javascript/components/flagging/components/flag-dialog/component.spec.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ describe("<FlagDialog />", () => {
1818
expect(screen.getByText("flags.add_flag_tab")).toBeInTheDocument();
1919
});
2020

21+
it("should render the ActionDialog", () => {
22+
mountedComponent(<FlagDialog {...props} />);
23+
expect(screen.getByText("flags.title")).toBeInTheDocument();
24+
});
25+
2126
it("should render the DialogTabs", () => {
2227
mountedComponent(<DialogTabs {...props} />);
23-
expect(screen.getAllByRole("tab")).toBeTruthy();
28+
expect(screen.getAllByRole("tab")).toHaveLength(2);
2429
});
2530
});

app/javascript/components/flagging/components/flag-form/component.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe("<FlagForm />", () => {
1313

1414
it("renders Form", () => {
1515
mountedComponent(<FlagForm {...props} />);
16-
expect(screen.getAllByText("flags.flag_date")).toBeTruthy();
16+
expect(screen.getAllByText("flags.flag_date")).toHaveLength(2);
1717
});
1818

1919
it("should render the FlagForm", () => {

app/javascript/components/flagging/components/list-flags-item-actions/component.spec.js

+25-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { mountedComponent, screen } from "test-utils";
1+
import { mountedComponent, screen, cleanup } from "test-utils";
22
import { fromJS } from "immutable";
33

44
import ListFlagsItemActions from "./component";
@@ -30,7 +30,30 @@ describe("<ListFlagsItemActions />", () => {
3030
expect(screen.getByText("flags.date")).toBeInTheDocument();
3131
});
3232

33+
it("should render the FormAction", () => {
34+
expect(screen.getByText("flags.resolve_button")).toBeInTheDocument();
35+
});
36+
3337
it("should render the DateFlag", () => {
34-
expect(screen.getByTestId("dateflag")).toBeInTheDocument();
38+
expect(screen.getByTestId("date")).toBeInTheDocument();
39+
});
40+
41+
describe("when user has NOT resolve_any_flag permission", () => {
42+
const stateDiffentUser = fromJS({
43+
user: {
44+
username: "primero_cp"
45+
}
46+
});
47+
48+
beforeEach(() => {
49+
cleanup();
50+
mountedComponent(<ListFlagsItemActions {...props} />, stateDiffentUser);
51+
});
52+
53+
it("should NOT render the ActionButton", () => {
54+
const buttonElement = screen.queryByRole("button", { name: /resolve_button/i });
55+
56+
expect(buttonElement).not.toBeInTheDocument();
57+
});
3558
});
3659
});

app/javascript/components/flagging/components/list-flags-item/component.spec.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { mountedComponent, screen } from "test-utils";
22
import { fromJS } from "immutable";
33

4-
import ListFlagsItemActions from "./component";
4+
import ListFlagsItem from "./component";
55

6-
describe("<ListFlagsItemActions />", () => {
6+
describe("<ListFlagsItem />", () => {
77
const props = {
88
flag: {
99
id: 7,
@@ -23,14 +23,22 @@ describe("<ListFlagsItemActions />", () => {
2323
});
2424

2525
beforeEach(() => {
26-
mountedComponent(<ListFlagsItemActions {...props} />, initialState);
26+
mountedComponent(<ListFlagsItem {...props} />, initialState);
2727
});
2828

2929
it("should render the ListFlagsItem", () => {
3030
expect(screen.getByText("flags.date")).toBeInTheDocument();
3131
});
3232

3333
it("should render the DateFlag", () => {
34-
expect(screen.getByTestId("dateflag")).toBeInTheDocument();
34+
expect(screen.getByTestId("date")).toBeInTheDocument();
35+
});
36+
37+
it("should render the ListItemText", () => {
38+
expect(screen.getByText("This is a flag 1")).toBeInTheDocument();
39+
});
40+
41+
it("should render the ListFlagsItemActions", () => {
42+
expect(screen.getByText("flags.resolve_button")).toBeInTheDocument();
3543
});
3644
});

app/javascript/components/flagging/components/list-flags/component.spec.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe("<ListFlags />", () => {
2222
date: "2019-08-01",
2323
message: "This is a flag 1",
2424
flagged_by: "primero",
25-
removed: false
25+
removed: true
2626
})
2727
]
2828
}
@@ -38,4 +38,9 @@ describe("<ListFlags />", () => {
3838
mountedComponent(<ListFlags {...props} />, initialState);
3939
expect(screen.getByRole("listitem")).toBeInTheDocument();
4040
});
41+
42+
it("should render the FlagForm", () => {
43+
mountedComponent(<ListFlags {...props} />, initialState);
44+
expect(screen.getByText("flags.resolved", { selector: "h3" })).toBeInTheDocument();
45+
});
4146
});

app/javascript/components/flagging/components/unflag/component.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe("<Unflag />", () => {
2626
});
2727

2828
it("should render the Unflag", () => {
29-
expect(screen.getAllByText("flags.resolve_reason")).toBeTruthy();
29+
expect(screen.getAllByText("flags.resolve_reason")).toHaveLength(2);
3030
});
3131

3232
it("renders ActionButton", () => {

0 commit comments

Comments
 (0)