Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/react/src/auth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// useCreateUserWithEmailAndPasswordMutation
// useFetchSignInMethodsForEmailQuery
// useGetRedirectResultQuery
// useRevokeAccessTokenMutation
export { useRevokeAccessTokenMutation } from "./useRevokeAccessTokenMutation";
// useSendPasswordResetEmailMutation
// useSendSignInLinkToEmailMutation
export { useSignInAnonymouslyMutation } from "./useSignInAnonymouslyMutation";
Expand Down Expand Up @@ -46,4 +46,3 @@ export { useSignInAnonymouslyMutation } from "./useSignInAnonymouslyMutation";
// useUpdatePasswordMutation
// useUpdateProfileMutation
// useVerifyBeforeUpdateEmailMutation

51 changes: 51 additions & 0 deletions packages/react/src/auth/useRevokeAccessTokenMutation.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import React from "react";
import { describe, expect, test, beforeEach, afterEach } from "vitest";
import { renderHook, act, waitFor } from "@testing-library/react";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { useRevokeAccessTokenMutation } from "./useRevokeAccessTokenMutation";
import {
OAuthProvider,
signInWithPopup,
type UserCredential,
} from "firebase/auth";
import { auth, wipeAuth } from "~/testing-utils";

const queryClient = new QueryClient({
defaultOptions: {
queries: { retry: false },
mutations: { retry: false },
},
});

const wrapper = ({ children }: { children: React.ReactNode }) => (
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
);

describe("useRevokeAccessTokenMutation", () => {
let userCredential: UserCredential;

beforeEach(async () => {
const provider = new OAuthProvider("apple.com");
userCredential = await signInWithPopup(auth, provider);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happens in the test runner with this?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was a work in progress, will be pushing more in line with this

});

afterEach(async () => {
queryClient.clear();
await auth.signOut();
await wipeAuth();
});

test("successfully revokes access token", async () => {
const { result } = renderHook(() => useRevokeAccessTokenMutation(auth), {
wrapper,
});

const oauthAccessToken = await userCredential.user.getIdToken();

act(() => {
result.current.mutate({ token: oauthAccessToken });
});

await waitFor(() => expect(result.current.isSuccess).toBe(true));
});
});
22 changes: 22 additions & 0 deletions packages/react/src/auth/useRevokeAccessTokenMutation.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { useMutation, type UseMutationOptions } from "@tanstack/react-query";
import { type Auth, AuthError, revokeAccessToken } from "firebase/auth";

type RevokeAccessTokenParams = {
token: string;
};

type AuthUseMutationOptions<
TData = unknown,
TError = Error,
TVariables = void
> = Omit<UseMutationOptions<TData, TError, TVariables>, "mutationFn">;

export function useRevokeAccessTokenMutation(
auth: Auth,
options?: AuthUseMutationOptions<void, AuthError, RevokeAccessTokenParams>
) {
return useMutation<void, AuthError, RevokeAccessTokenParams>({
...options,
mutationFn: ({ token }) => revokeAccessToken(auth, token),
});
}