Skip to content

Commit

Permalink
Merge pull request #14 from PoCInnovation/feat/api-development
Browse files Browse the repository at this point in the history
New api routes / New Dashboard page / Tests e-2-e
  • Loading branch information
quentinbol committed Aug 28, 2024
2 parents 596ac56 + 42ab69d commit bcbf2dd
Show file tree
Hide file tree
Showing 12 changed files with 1,271 additions and 52 deletions.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"dependencies": {
"@amcharts/amcharts5": "^5.10.1",
Expand Down Expand Up @@ -46,6 +48,7 @@
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.46.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
Expand Down
78 changes: 78 additions & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
import { defineConfig, devices } from '@playwright/test';

/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// import dotenv from 'dotenv';
// dotenv.config({ path: path.resolve(__dirname, '.env') });

/**
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: './tests',
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
// baseURL: 'http://127.0.0.1:3000',

/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
},

/* Configure projects for major browsers */
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},

{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},

{
name: 'webkit',
use: { ...devices['Desktop Safari'] },
},

/* Test against mobile viewports. */
// {
// name: 'Mobile Chrome',
// use: { ...devices['Pixel 5'] },
// },
// {
// name: 'Mobile Safari',
// use: { ...devices['iPhone 12'] },
// },

/* Test against branded browsers. */
// {
// name: 'Microsoft Edge',
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
// },
// {
// name: 'Google Chrome',
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
// },
],

/* Run your local dev server before starting the tests */
// webServer: {
// command: 'npm run start',
// url: 'http://127.0.0.1:3000',
// reuseExistingServer: !process.env.CI,
// },
});
69 changes: 69 additions & 0 deletions src/app/api/repos/[owner]/[repo]/commit/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
import { NextRequest, NextResponse } from "next/server";
import { getServerSession } from 'next-auth';
import { authOptions } from "../../../../../api/auth/[...nextauth]/route";
import { z } from "zod";
import fetchURL from "../../../../utils/utils";

const querySchema = z.object({
owner: z.string(),
repo: z.string(),
per_page: z.string().optional(),
page: z.string().optional(),
});

export async function GET(
req: NextRequest,
{ params }: { params: { owner: string; repo: string; } }
) {
try {
const session = await getServerSession({ req, ...authOptions });
if (!session) {
return NextResponse.json(
{ message: 'Unauthorized' },
{ status: 401 }
);
}

const queryParams = {
...params,
per_page: req.nextUrl.searchParams.get('per_page') || undefined,
page: req.nextUrl.searchParams.get('page') || undefined,
};

const result = querySchema.safeParse(queryParams);
if (!result.success) {
return NextResponse.json(
{ message: "Invalid query parameters" },
{ status: 400 }
);
}

const { owner, repo, per_page = "100", page = "1" } = result.data;

const encodedOwner = encodeURIComponent(owner);
const encodedRepo = encodeURIComponent(repo);

const apiUrl = `https://api.github.com/repos/${encodedOwner}/${encodedRepo}/commits?per_page=${per_page}&page=${page}`;

const response = await fetchURL(req, apiUrl, "GET");

if (!response.ok) {
return NextResponse.json(
{ message: `Failed to fetch commits: ${response.statusText}` },
{ status: response.status }
);
}

const commits = await response.json();

return NextResponse.json(
commits,
{ status: 200 }
);
} catch (error) {
return NextResponse.json(
{ message: 'Failed to fetch commits' },
{ status: 500 }
);
}
};
21 changes: 0 additions & 21 deletions src/app/dashboard/layout.tsx

This file was deleted.

Loading

0 comments on commit bcbf2dd

Please sign in to comment.