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

Test beginnings #10

Merged
merged 4 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
1,586 changes: 1,580 additions & 6 deletions frontend/package-lock.json

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,29 @@
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react-dom": "^18.3.1",
"react-router-dom": "^6.14.2"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-vitest": "^0.3.26",
"globals": "^15.9.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"vite": "^5.4.8",
"vitest": "^2.1.3"
"vitest": "^2.1.3",
"vitest-fetch-mock": "^0.2.2"
}
}
36 changes: 32 additions & 4 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,41 @@
//imports needed
import "./App.css";
import { createBrowserRouter, RouterProvider } from "react-router-dom";// docs: https://reactrouter.com/en/main/start/overview

//imports of pages
import { HomePage } from "./pages/HomePage";
import { InGame } from "./pages/InGame";
import { Lobby } from "./pages/Lobby";
import { RoundEnd } from "./pages/RoundEnd";

// router
const router = createBrowserRouter([
{
path: "/",
element: <HomePage />,
},
{
path: "/in-game",
element: <InGame />,
},
{
path: "/lobby",
element: <Lobby />,
},
{
path: "/round-end",
element: <RoundEnd />,
}
]);


// the app with the above-defined routes
function App() {
return (
<>
<div>
<h1 className="text-6xl font-bold underline">Makers UI game group!</h1>
</div>
<RouterProvider router={router} />
</>
);
}

export default App;
export default App;
12 changes: 8 additions & 4 deletions frontend/src/pages/HomePage.jsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
// the landing page with the create a game option

//imports needed
import { Link } from "react-router-dom";
import { Button } from "../components/Button";
{/*import { Button } from "../components/Button"; */}

// page function
export function HomePage() {
return (
<>
<div className="home">
<h1>Guess the number!</h1>
<h1 data-testid="game-name">Guess the number!</h1>
<p>
Rules of the game:
<ul>
<li>Guess the number between 1 and 100</li>
<li>2 to 6 players</li>
</ul>
</p>

<Button onClick={handleClick}>Create game</Button>
<Link to="/lobby" className="lobby-link"></Link>
{/* <Button onClick={handleClick}>Create game</Button> */}

</div>
</>
);
}
9 changes: 5 additions & 4 deletions frontend/src/pages/InGame.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// The page where the game happens
import { Link } from "react-router-dom";

// import { Link } from "react-router-dom";
// import { Button } from "../components/Button";

// in game page function
export function InGame() {
return (
<div className="InGame">
Expand All @@ -20,12 +21,12 @@ export function InGame() {
<div className="guess">
<h1>Guess a number component placeholder</h1>
<form>
<label for="number_guess">Guess a number between 1 and 100!</label>
<label htmlFor="number_guess" data-testId="guess-label">Guess a number between 1 and 100!</label>
<input type="number" id="number_guess" name="number_guess"></input>
</form>
</div>

<Button onClick={handleClick}>Submit</Button>
{/* <Button onClick={handleClick}>Submit</Button> */}

</div>
);
Expand Down
7 changes: 4 additions & 3 deletions frontend/src/pages/Lobby.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// For the host, this is the page with the 'start the game' button

import { Link } from "react-router-dom";
import { Button } from "../components/Button";
{/* import { Button } from "../components/Button"; */}

export function Lobby() {
return (
Expand All @@ -19,11 +19,12 @@ export function Lobby() {
</p>
</div>

<Button onClick={handleClick}>Start game</Button>
<Link to="/in-game" className="in-game-link"></Link>
{/* <Button onClick={handleClick}>Start game</Button> */}

<div className="share_link">
<h1>Share link component placeholder</h1>
<p>
<p data-testid="add-players-prompt">
Add up to 6 players using this link
</p>
<a> Link</a>
Expand Down
18 changes: 10 additions & 8 deletions frontend/src/pages/RoundEnd.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// this page has the score and the option to do another round or quit

import { Link } from "react-router-dom";
import { Button } from "../components/Button";
// import { Button } from "../components/Button";

export function RoundEnd() {
return (
Expand All @@ -11,16 +11,17 @@ export function RoundEnd() {
<p>
Placeholder for the display number to guess component
</p>
<p>
The number was: 42
</p>
<p data-testId="number-reveal">
The number was:
</p><br></br>
<p>42</p>
</div>

<div className="winner">
<p>
Placeholder for the winner component
</p>
<p>
<p >
The winner is... Player3!
</p>
</div>
Expand All @@ -38,10 +39,11 @@ export function RoundEnd() {
</div>


<Link to="/" className="homepage-link"></Link>
<Link to="/in-game" className="in-game-link"></Link>
{/* <Button onClick={handleClick}>Next round :D</Button>

<Button onClick={handleClick}>Next round :D</Button>

<Button onClick={handleClick}>Quit :'(</Button>
<Button onClick={handleClick}>Quit :'(</Button> */}

</div>
);
Expand Down
15 changes: 13 additions & 2 deletions frontend/tests/pages/HomePage.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
import { render, screen } from "@testing-library/react";
import { BrowserRouter } from "react-router-dom";
import { HomePage } from "../../src/pages/HomePage";
import { describe, expect, test } from "vitest";



describe("Homepage tests", () => {
test("name of the game", () => {
render(
<BrowserRouter>
<HomePage />
</BrowserRouter>
);

const heading = screen.getByTestId("game-name");
expect(heading.textContent).toEqual("Guess the number!");
});
});
16 changes: 15 additions & 1 deletion frontend/tests/pages/InGame.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,18 @@
//required imports
import { render, screen } from "@testing-library/react";
import { BrowserRouter } from "react-router-dom";
import { InGame } from "../../src/pages/InGame";
import { InGame } from "../../src/pages/InGame";
import { describe, expect, test } from "vitest";

describe("InGame tests", () => {
test("name of the game", () => {
render(
<BrowserRouter>
<InGame />
</BrowserRouter>
);

const heading = screen.getByTestId("guess-label");
expect(heading.textContent).toEqual("Guess a number between 1 and 100!");
});
});
17 changes: 16 additions & 1 deletion frontend/tests/pages/Lobby.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,19 @@
//required imports
import { render, screen } from "@testing-library/react";
import { BrowserRouter } from "react-router-dom";
import { Lobby } from "../../src/pages/Lobby";
import { Lobby } from "../../src/pages/Lobby";
import { describe, expect, test } from "vitest";


describe("Lobby tests", () => {
test("name of the game", () => {
render(
<BrowserRouter>
<Lobby />
</BrowserRouter>
);

const heading = screen.getByTestId("add-players-prompt");
expect(heading.textContent).toEqual("Add up to 6 players using this link");
});
});
16 changes: 15 additions & 1 deletion frontend/tests/pages/RoundEnd.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,18 @@
//required imports
import { render, screen } from "@testing-library/react";
import { BrowserRouter } from "react-router-dom";
import { RoundEnd } from "../../src/pages/RoundEnd";
import { RoundEnd } from "../../src/pages/RoundEnd";
import { describe, expect, test } from "vitest";

describe("Round end tests", () => {
test("name of the game", () => {
render(
<BrowserRouter>
<RoundEnd />
</BrowserRouter>
);

const heading = screen.getByTestId("number-reveal");
expect(heading.textContent).toEqual("The number was:");
});
});
3 changes: 3 additions & 0 deletions frontend/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
test: {globals: true,
environment: "jsdom"
}
})