Skip to content

Commit be5c2cc

Browse files
Refactoring spec
1 parent 79eeb88 commit be5c2cc

File tree

6 files changed

+19
-96
lines changed

6 files changed

+19
-96
lines changed

app/javascript/components/login/component.jsx

+5-9
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import IdpSelection from "./components/idp-selection";
1414
import LoginForm from "./components/login-form";
1515
import { getLoading, getUseIdentityProvider } from "./selectors";
1616

17-
const Container = ({ modal }) => {
17+
function Component({ modal = false }) {
1818
const useIdentity = useMemoizedSelector(state => getUseIdentityProvider(state));
1919
const isLoading = useMemoizedSelector(state => getLoading(state));
2020
const location = useLocation();
@@ -39,16 +39,12 @@ const Container = ({ modal }) => {
3939
<LoginComponent modal={modal} />
4040
</LoadingIndicator>
4141
);
42-
};
43-
44-
Container.displayName = NAME;
42+
}
4543

46-
Container.defaultProps = {
47-
modal: false
48-
};
44+
Component.displayName = NAME;
4945

50-
Container.propTypes = {
46+
Component.propTypes = {
5147
modal: PropTypes.bool
5248
};
5349

54-
export default Container;
50+
export default Component;

app/javascript/components/login/component.spec.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Login from "./component";
55
describe("<Login />", () => {
66
describe("for login form", () => {
77
it("renders form", () => {
8-
mountedComponent(<Login isAuthenticated={false} />, {
8+
mountedComponent(<Login />, {
99
idp: {
1010
use_identity_provider: false
1111
},
@@ -16,12 +16,13 @@ describe("<Login />", () => {
1616
}
1717
});
1818
});
19-
expect(screen.queryByText((content, element) => element.tagName.toLowerCase() === "form")).toBeNull();
19+
screen.debug();
20+
expect(screen.queryByText((content, element) => element.tagName.toLowerCase() === "form")).toBeInTheDocument();
2021
});
2122

2223
describe("for provider selection", () => {
2324
it("renders login selection", () => {
24-
mountedComponent(<Login isAuthenticated={false} />, {
25+
mountedComponent(<Login />, {
2526
idp: {
2627
use_identity_provider: true,
2728
identity_providers: [
@@ -38,7 +39,7 @@ describe("<Login />", () => {
3839
}
3940
});
4041
});
41-
42-
expect(screen.queryByTestId("PrimeroIdpSelect")).toBeNull();
42+
screen.debug();
43+
expect(screen.queryByTestId("PrimeroIdpSelect")).toBeInTheDocument();
4344
});
4445
});

app/javascript/components/login/component.unit.test.js

-66
This file was deleted.

app/javascript/components/login/components/idp-selection/components/primero-idp-link.spec.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ describe("<PrimeroIdpLink />", () => {
4444

4545
it("renders forms components", () => {
4646
mountedComponent(<PrimeroIdpLink {...propsOnlyPrimeroIDP} />);
47+
4748
expect(screen.getByText((content, element) => element.tagName.toLowerCase() === "span")).toBeInTheDocument();
4849
expect(screen.getByText((content, element) => element.tagName.toLowerCase() === "a")).toBeInTheDocument();
4950
});
@@ -71,7 +72,7 @@ describe("<PrimeroIdpLink />", () => {
7172
it("renders forms components", () => {
7273
mountedComponent(<PrimeroIdpLink {...propsOnlyPrimeroIDP} />);
7374

74-
expect(screen.queryByText(/log_in_primero_idp/i)).toBeNull();
75+
expect(document.querySelectorAll("a")).toHaveLength(1);
7576
});
7677
});
7778
});

app/javascript/components/login/components/login-form/component.spec.js

+3-11
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ describe("<LoginForm />", () => {
3838
}
3939
})
4040
);
41-
expect(screen.getByText((content, element) => element.tagName.toLowerCase() === "h1")).toBeInTheDocument();
41+
42+
expect(screen.getByRole("heading", { name: "login.label" })).toBeInTheDocument();
4243
});
4344

4445
it("renders username and password input fields", () => {
@@ -56,18 +57,9 @@ describe("<LoginForm />", () => {
5657
})
5758
);
5859
expect(screen.getByRole("textbox", { name: /login.username/i })).toBeInTheDocument();
60+
expect(document.querySelector('input[name="password"]')).toBeInTheDocument();
5961
});
6062

61-
// TODO: Temp removal
62-
// it("renders forgot password link", () => {
63-
// expect(
64-
// component
65-
// .find("a")
66-
// .first()
67-
// .prop("href")
68-
// ).to.have.equal("/forgot_password");
69-
// });
70-
7163
it("renders login button", () => {
7264
mountedComponent(
7365
<LoginForm {...props} />,

app/javascript/components/login/components/password-reset-form/component.spec.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ import PasswordResetForm from "./component";
55
describe("<PasswordResetForm />", () => {
66
it("does not render action buttons when modal is true", () => {
77
mountedComponent(<PasswordResetForm modal />);
8-
expect(screen.getByText(/login.password_reset_modal_text/i)).toBeInTheDocument();
8+
expect(screen.queryAllByRole("button")).toHaveLength(0);
99
});
1010

1111
it("renders action buttons when modal is false", () => {
12-
mountedComponent(<PasswordResetForm modal />);
13-
expect(screen.queryByText(/buttons.ok/i)).toBeNull();
14-
expect(screen.queryByText(/buttons.cancel/i)).toBeNull();
12+
mountedComponent(<PasswordResetForm modal={false} />);
13+
expect(screen.getAllByRole("button")).toHaveLength(2);
1514
});
1615
});

0 commit comments

Comments
 (0)