From aa448921ac03bac35212675321d9b0318792a4ed Mon Sep 17 00:00:00 2001 From: catanese Date: Sat, 11 May 2024 22:53:06 +0200 Subject: [PATCH] commented a tests file for security reasons. Updated README --- README.md | 13 ++++++++++ __tests__/api/image-request.test.jsx | 38 +++++++++++++++------------- 2 files changed, 33 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 5439592..1eabde0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,17 @@ # Projet BUT 3 +made by : +Simon CATANESE +Julien CHARBONNEL +Victor DESCAMPS + +## Tests warning : + +the tests sheet 'api/image-request.test.jsx' was commented out to avoid over-sending requests to the google API during development. Remember to uncomment the file if you want to run all the tests once, but remember to recomment the file if you want to run a series of tests. +An over-sending of requests could get us blocked for the day by google. + + ## Run Locally Clone the project @@ -30,3 +41,5 @@ Start the front-end ## API Reference API Documentation : [Postman]([Postman documentation url]) + + diff --git a/__tests__/api/image-request.test.jsx b/__tests__/api/image-request.test.jsx index 9af62c9..85ff814 100644 --- a/__tests__/api/image-request.test.jsx +++ b/__tests__/api/image-request.test.jsx @@ -1,25 +1,27 @@ import { describe, it, expect } from "vitest"; import { searchAndResizeImage } from "../../src/api/image-request" -describe("Image request API", () => { +// Ces tests sont commentés pour ne pas provoquer de requêtes à répétitions qui résulteraient en un blocage de google + +//describe("Image request API", () => { - it("return a string", async () => { - let query = 'cat'; - let imageUrl = await searchAndResizeImage(query); - let isString = typeof imageUrl == 'string' - expect(isString).toBe(true); - }); +// it("return a string", async () => { +// let query = 'cat'; +// let imageUrl = await searchAndResizeImage(query); +// let isString = typeof imageUrl == 'string' +// expect(isString).toBe(true); +// }); - it("returns a valid image URL when results are found", async () => { - let query = 'cat'; - let imageUrl = await searchAndResizeImage(query); - expect(imageUrl).toMatch(/^https?:\/\/.*\.(?:png|jpg|jpeg|gif|webp)$/i); - }); +// it("returns a valid image URL when results are found", async () => { +// let query = 'cat'; +// let imageUrl = await searchAndResizeImage(query); +// expect(imageUrl).toMatch(/^https?:\/\/.*\.(?:png|jpg|jpeg|gif|webp)$/i); +// }); - it("returns an empty string when no image is found", async () => { - const query = '[][][][][][][][][][][][][][]'; //cette requête ne renvoie aucune image - const imageUrl = await searchAndResizeImage(query); - expect(imageUrl).toEqual(''); - }); -}); +// it("returns an empty string when no image is found", async () => { +// const query = '[][][][][][][][][][][][][][]'; //cette requête ne renvoie aucune image +// const imageUrl = await searchAndResizeImage(query); +// expect(imageUrl).toEqual(''); +// }); +//});