Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add e2e for forbidden and unauthorized #669

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 8 additions & 0 deletions examples/app-router/app/auth-interrupts/forbidden/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { forbidden } from "next/navigation";

export default function Page() {
forbidden();

// this should never be rendered
return <></>;
}
8 changes: 8 additions & 0 deletions examples/app-router/app/auth-interrupts/unauthorized/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { unauthorized } from "next/navigation";

export default function Page() {
unauthorized();

// this should never be rendered
return <></>;
}
11 changes: 11 additions & 0 deletions examples/app-router/app/forbidden.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import Link from "next/link";

export default function Forbidden() {
return (
<div>
<h2>Forbidden</h2>
<p>You are not authorized to access this resource.</p>
<Link href="/">Return Home</Link>
</div>
);
}
7 changes: 7 additions & 0 deletions examples/app-router/app/unauthorized.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Unauthorized() {
return (
<div>
<h2>Unauthorized</h2>
</div>
);
}
3 changes: 3 additions & 0 deletions examples/app-router/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ const nextConfig: NextConfig = {
},
],
},
experimental: {
authInterrupts: true,
},
redirects: async () => {
return [
{
Expand Down
7 changes: 4 additions & 3 deletions packages/open-next/src/http/openNextResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { parseCookies, parseHeaders } from "./util";

const SET_COOKIE_HEADER = "set-cookie";
const CANNOT_BE_USED = "This cannot be used in OpenNext";
const ERROR_CODES = [401, 403, 404, 500];

// We only need to implement the methods that are used by next.js
export class OpenNextNodeResponse extends Transform implements ServerResponse {
Expand Down Expand Up @@ -375,15 +376,15 @@ export class OpenNextNodeResponse extends Transform implements ServerResponse {
return this;
}

// For some reason, next returns the 500 error page with some cache-control headers
// For some reason, next returns the error pages with some cache-control headers
// We need to fix that
private fixHeadersForError() {
if (process.env.OPEN_NEXT_DANGEROUSLY_SET_ERROR_HEADERS === "true") {
return;
}
// We only check for 404 and 500 errors
// We only check for 401, 403, 404 and 500 errors
// The rest should be errors that are handled by the user and they should set the cache headers themselves
if (this.statusCode === 404 || this.statusCode === 500) {
if (ERROR_CODES.includes(this.statusCode)) {
// For some reason calling this.setHeader("Cache-Control", "no-cache, no-store, must-revalidate") does not work here
// The function is not even called, i'm probably missing something obvious
this.headers["cache-control"] =
Expand Down
28 changes: 28 additions & 0 deletions packages/tests-e2e/tests/appRouter/auth-interrupts.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { expect, test } from "@playwright/test";

const NO_CACHE_HEADER =
"private, no-cache, no-store, max-age=0, must-revalidate";

test("test forbidden", async ({ page }) => {
const result = await page.goto("/auth-interrupts/forbidden");
expect(result).toBeDefined();
expect(result?.status()).toBe(403);

const headers = result?.headers();
expect(headers?.["cache-control"]).toBe(NO_CACHE_HEADER);

const heading = page.getByText("Forbidden");
await expect(heading).toBeVisible();
});

test("test unauthorized", async ({ page }) => {
const result = await page.goto("/auth-interrupts/unauthorized");
expect(result).toBeDefined();
expect(result?.status()).toBe(401);

const headers = result?.headers();
expect(headers?.["cache-control"]).toBe(NO_CACHE_HEADER);

const heading = page.getByText("Unauthorized");
await expect(heading).toBeVisible();
});
Loading