-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1380 from authts/backport-add-with-authentication…
…-required backport add with authentication required
- Loading branch information
Showing
5 changed files
with
269 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import React from "react"; | ||
import type { SigninRedirectArgs } from "oidc-client-ts"; | ||
|
||
import { useAuth } from "./useAuth"; | ||
import { hasAuthParams } from "./utils"; | ||
|
||
/** | ||
* @public | ||
*/ | ||
export interface WithAuthenticationRequiredProps { | ||
/** | ||
* Show a message when redirected to the signin page. | ||
*/ | ||
OnRedirecting?: () => JSX.Element; | ||
|
||
/** | ||
* Allows executing logic before the user is redirected to the signin page. | ||
*/ | ||
onBeforeSignin?: () => Promise<void> | void; | ||
|
||
/** | ||
* Pass additional signin redirect arguments. | ||
*/ | ||
signinRedirectArgs?: SigninRedirectArgs; | ||
} | ||
|
||
/** | ||
* A public higher-order component to protect accessing not public content. When you wrap your components in this higher-order | ||
* component and an anonymous user visits your component, they will be redirected to the login page; after logging in, they | ||
* will return to the page from which they were redirected. | ||
* | ||
* @public | ||
*/ | ||
export const withAuthenticationRequired = <P extends object>( | ||
Component: React.ComponentType<P>, | ||
options: WithAuthenticationRequiredProps = {}, | ||
): React.FC<P> => { | ||
const { OnRedirecting = (): JSX.Element => <></>, onBeforeSignin, signinRedirectArgs } = options; | ||
const displayName = `withAuthenticationRequired(${Component.displayName || Component.name})`; | ||
const C: React.FC<P> = (props) => { | ||
const auth = useAuth(); | ||
|
||
React.useEffect(() => { | ||
if (hasAuthParams() || | ||
auth.isLoading || auth.activeNavigator || auth.isAuthenticated) { | ||
return; | ||
} | ||
void (async (): Promise<void> => { | ||
onBeforeSignin && await onBeforeSignin(); | ||
await auth.signinRedirect(signinRedirectArgs); | ||
})(); | ||
}, [auth.isLoading, auth.isAuthenticated, auth]); | ||
|
||
return auth.isAuthenticated ? <Component {...props} /> : OnRedirecting(); | ||
}; | ||
|
||
C.displayName = displayName; | ||
|
||
return C; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
import React from "react"; | ||
import { render, screen, waitFor, act } from "@testing-library/react"; | ||
|
||
import { AuthProvider, withAuthenticationRequired, type AuthContextProps } from "../src"; | ||
import * as useAuthModule from "../src/useAuth"; | ||
|
||
const settingsStub = { authority: "authority", client_id: "client", redirect_uri: "redirect" }; | ||
|
||
describe("withAuthenticationRequired", () => { | ||
it("should block access to a private component when not authenticated", async () => { | ||
// arrange | ||
const useAuthMock = jest.spyOn(useAuthModule, "useAuth"); | ||
const authContext = { isLoading: false, isAuthenticated: false } as AuthContextProps; | ||
const signinRedirectMock = jest.fn().mockResolvedValue(undefined); | ||
authContext.signinRedirect = signinRedirectMock; | ||
useAuthMock.mockReturnValue(authContext); | ||
|
||
const MyComponent = (): JSX.Element => <>Private</>; | ||
const WrappedComponent = withAuthenticationRequired(MyComponent); | ||
|
||
// act | ||
render( | ||
<AuthProvider {...settingsStub}> | ||
<WrappedComponent /> | ||
</AuthProvider>, | ||
); | ||
|
||
// assert | ||
await waitFor(() => | ||
expect(signinRedirectMock).toHaveBeenCalled(), | ||
); | ||
expect(screen.queryByText("Private")).toBeNull(); | ||
}); | ||
|
||
it("should allow access to a private component when authenticated", async () => { | ||
// arrange | ||
const useAuthMock = jest.spyOn(useAuthModule, "useAuth"); | ||
const authContext = { isLoading: false, isAuthenticated: true } as AuthContextProps; | ||
const signinRedirectMock = jest.fn().mockResolvedValue(undefined); | ||
authContext.signinRedirect = signinRedirectMock; | ||
useAuthMock.mockReturnValue(authContext); | ||
|
||
const MyComponent = (): JSX.Element => <>Private</>; | ||
const WrappedComponent = withAuthenticationRequired(MyComponent); | ||
|
||
// act | ||
act(() => { | ||
render( | ||
<AuthProvider {...settingsStub}> | ||
<WrappedComponent /> | ||
</AuthProvider>, | ||
); | ||
}); | ||
|
||
// assert | ||
await waitFor(() => | ||
expect(signinRedirectMock).not.toHaveBeenCalled(), | ||
); | ||
await screen.findByText("Private"); | ||
}); | ||
|
||
it("should show a custom redirecting message when not authenticated", async () => { | ||
// arrange | ||
const useAuthMock = jest.spyOn(useAuthModule, "useAuth"); | ||
const authContext = { isLoading: false, isAuthenticated: false } as AuthContextProps; | ||
const signinRedirectMock = jest.fn().mockResolvedValue(undefined); | ||
authContext.signinRedirect = signinRedirectMock; | ||
useAuthMock.mockReturnValue(authContext); | ||
|
||
const MyComponent = (): JSX.Element => <>Private</>; | ||
const OnRedirecting = (): JSX.Element => <>Redirecting</>; | ||
const WrappedComponent = withAuthenticationRequired(MyComponent, { | ||
OnRedirecting, | ||
}); | ||
|
||
// act | ||
act(() => { | ||
render( | ||
<AuthProvider {...settingsStub}> | ||
<WrappedComponent /> | ||
</AuthProvider>, | ||
); | ||
}); | ||
|
||
// assert | ||
await screen.findByText("Redirecting"); | ||
}); | ||
|
||
it("should call onBeforeSignin before signinRedirect", async () => { | ||
// arrange | ||
const useAuthMock = jest.spyOn(useAuthModule, "useAuth"); | ||
const authContext = { isLoading: false, isAuthenticated: false } as AuthContextProps; | ||
const signinRedirectMock = jest.fn().mockResolvedValue(undefined); | ||
authContext.signinRedirect = signinRedirectMock; | ||
useAuthMock.mockReturnValue(authContext); | ||
|
||
const MyComponent = (): JSX.Element => <>Private</>; | ||
const onBeforeSigninMock = jest.fn(); | ||
const WrappedComponent = withAuthenticationRequired(MyComponent, { | ||
onBeforeSignin: onBeforeSigninMock, | ||
}); | ||
|
||
// act | ||
render( | ||
<AuthProvider {...settingsStub}> | ||
<WrappedComponent /> | ||
</AuthProvider>, | ||
); | ||
|
||
await waitFor(() => | ||
expect(onBeforeSigninMock).toHaveBeenCalled(), | ||
); | ||
|
||
await waitFor(() => | ||
expect(signinRedirectMock).toHaveBeenCalled(), | ||
); | ||
}); | ||
|
||
it("should pass additional options on to signinRedirect", async () => { | ||
// arrange | ||
const useAuthMock = jest.spyOn(useAuthModule, "useAuth"); | ||
const authContext = { isLoading: false, isAuthenticated: false } as AuthContextProps; | ||
const signinRedirectMock = jest.fn().mockResolvedValue(undefined); | ||
authContext.signinRedirect = signinRedirectMock; | ||
useAuthMock.mockReturnValue(authContext); | ||
|
||
const MyComponent = (): JSX.Element => <>Private</>; | ||
const WrappedComponent = withAuthenticationRequired(MyComponent, { | ||
signinRedirectArgs: { | ||
redirect_uri: "foo", | ||
}, | ||
}); | ||
|
||
// act | ||
render( | ||
<AuthProvider {...settingsStub}> | ||
<WrappedComponent /> | ||
</AuthProvider>, | ||
); | ||
|
||
// assert | ||
await waitFor(() => | ||
expect(signinRedirectMock).toHaveBeenCalledWith( | ||
expect.objectContaining({ | ||
redirect_uri: "foo", | ||
}), | ||
), | ||
); | ||
}); | ||
|
||
it("should call signinRedirect only once even if parent state changes", async () => { | ||
// arrange | ||
const useAuthMock = jest.spyOn(useAuthModule, "useAuth"); | ||
const authContext = { isLoading: false, isAuthenticated: false } as AuthContextProps; | ||
const signinRedirectMock = jest.fn().mockResolvedValue(undefined); | ||
authContext.signinRedirect = signinRedirectMock; | ||
useAuthMock.mockReturnValue(authContext); | ||
|
||
const MyComponent = (): JSX.Element => <>Private</>; | ||
const WrappedComponent = withAuthenticationRequired(MyComponent); | ||
const App = ({ foo }: { foo: number }): JSX.Element => ( | ||
<div> | ||
{foo} | ||
<AuthProvider {...settingsStub}> | ||
<WrappedComponent /> | ||
</AuthProvider> | ||
</div> | ||
); | ||
|
||
// act | ||
const { rerender } = render(<App foo={1} />); | ||
await waitFor(() => | ||
expect(signinRedirectMock).toHaveBeenCalled(), | ||
); | ||
signinRedirectMock.mockClear(); | ||
rerender(<App foo={2} />); | ||
|
||
// assert | ||
await waitFor(() => | ||
expect(signinRedirectMock).not.toHaveBeenCalled(), | ||
); | ||
}); | ||
}); |