generated from posva/vite-tailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: setup E2E tests with Cypress (#572)
- Loading branch information
Showing
19 changed files
with
2,487 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: End-to-end tests | ||
|
||
on: push | ||
|
||
jobs: | ||
cypress-run: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
# Install npm dependencies, cache them correctly | ||
# and run all Cypress tests | ||
- name: Cypress run | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
start: yarn dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
const { defineConfig } = require("cypress"); | ||
|
||
module.exports = defineConfig({ | ||
e2e: { | ||
specPattern: '**/*.cy.js', | ||
fixturesFolder: 'tests/fixtures', | ||
screenshotsFolder: 'tests/screenshots', | ||
videosFolder: 'tests/videos', | ||
downloadsFolder: 'tests/downloads', | ||
supportFile: 'tests/support/e2e.js', | ||
setupNodeEvents(on, config) { | ||
// implement node event listeners here | ||
}, | ||
baseUrl: 'http://localhost:5173', | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<template> | ||
<v-chip label size="small" density="comfortable" prepend-icon="mdi-alert" color="error"> | ||
<v-chip label size="small" density="comfortable" prepend-icon="mdi-alert" color="error" data-name="product-missing-chip"> | ||
{{ $t('PriceCard.UnknownProduct') }} | ||
</v-chip> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
describe('Basic tests', () => { | ||
beforeEach(() => { | ||
cy.intercept('GET', 'http://127.0.0.1:8000/api/v1/products?page=1&size=10&order_by=-price_count', { fixture: 'products.json' }) | ||
cy.intercept('GET', 'http://127.0.0.1:8000/api/v1/products/code/3011360030498', { fixture: 'product_3011360030498.json' }) | ||
cy.intercept('GET', 'http://127.0.0.1:8000/api/v1/prices?page=1&size=1&order_by=-created*', { fixture: 'prices.json' }) | ||
cy.intercept('GET', 'http://127.0.0.1:8000/api/v1/prices?page=1&size=10&order_by=-created', { fixture: 'prices.json' }) | ||
cy.intercept('GET', 'http://127.0.0.1:8000/api/v1/prices?page=1&size=10&order_by=-date&product_code=3011360030498', { fixture: 'product_3011360030498_prices.json' }) | ||
cy.intercept('GET', 'http://127.0.0.1:8000/api/v1/prices?page=1&size=10&order_by=-date&category_tag=en%3Apitted-apricot', { fixture: 'pitted_apricot_prices.json' }) | ||
}) | ||
|
||
it('loads the home page', () => { | ||
cy.visit('/') | ||
cy.contains('Welcome to Open Prices!') // en by default | ||
cy.get('#price-count').contains('42') | ||
}) | ||
|
||
it('displays the latest prices', () => { | ||
cy.visit('/prices') | ||
cy.contains('Welcome to Open Prices!').should('not.exist') | ||
cy.get('[data-name="price-card"]').should('have.length', 10) | ||
cy.contains('3564700428023') // unknown product | ||
cy.get('[data-name="product-missing-chip"]').should('have.length', 1) | ||
}) | ||
|
||
it('displays the top products', () => { | ||
cy.visit('/products') | ||
cy.contains('Welcome to Open Prices!').should('not.exist') | ||
cy.get('[data-name="product-card"]').should('have.length', 10) | ||
cy.contains('3973467869701') // unknown product | ||
cy.contains('3250391696949') // unknown product | ||
cy.get('[data-name="product-missing-chip"]').should('have.length', 2) | ||
}) | ||
|
||
it('displays a product page', () => { | ||
cy.visit('/products/3011360030498') | ||
cy.contains('Welcome to Open Prices!').should('not.exist') | ||
cy.get('#product-title').contains('Mayonnaise Classique') | ||
cy.get('#price-count').contains('1') | ||
cy.get('[data-name="product-missing-chip"]').should('have.length', 0) | ||
cy.get('[data-name="price-card"]').should('have.length', 1) | ||
}) | ||
|
||
it('displays a raw product page', () => { | ||
cy.visit('/products/en:pitted-apricot') | ||
cy.contains('Welcome to Open Prices!').should('not.exist') | ||
cy.get('.v-card-title').contains('Pitted apricot') | ||
// cy.get('#price-count').contains('1') | ||
cy.get('[data-name="product-missing-chip"]').should('have.length', 2) // TODO: fix | ||
cy.get('[data-name="price-card"]').should('have.length', 2) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
{ | ||
"items": [ | ||
{ | ||
"product_code": null, | ||
"product_name": null, | ||
"category_tag": "en:pitted-apricot", | ||
"labels_tags": null, | ||
"origins_tags": [ | ||
"en:unknown" | ||
], | ||
"price": 4.0, | ||
"price_is_discounted": false, | ||
"price_without_discount": null, | ||
"price_per": "UNIT", | ||
"currency": "AED", | ||
"location_osm_id": 32520537, | ||
"location_osm_type": "WAY", | ||
"date": "2024-03-31", | ||
"proof_id": 224, | ||
"id": 760, | ||
"product_id": null, | ||
"location_id": 32, | ||
"owner": "user1", | ||
"created": "2024-03-31T22:10:53.037731+02:00", | ||
"product": null, | ||
"proof": { | ||
"id": 224, | ||
"file_path": "0001/TWZOnskQhz.webp", | ||
"mimetype": "image/webp", | ||
"type": "RECEIPT", | ||
"owner": "user1", | ||
"price_count": 9, | ||
"created": "2024-03-20T01:40:46.098715+01:00" | ||
}, | ||
"location": { | ||
"osm_id": 32520537, | ||
"osm_type": "WAY", | ||
"price_count": 16, | ||
"id": 32, | ||
"osm_name": "Monoprix", | ||
"osm_display_name": "Monoprix, Rue Lafayette, Hyper Centre, Secteur 2, Grenoble, Isère, Auvergne-Rhône-Alpes, France métropolitaine, 38000, France", | ||
"osm_address_postcode": "38000", | ||
"osm_address_city": "Grenoble", | ||
"osm_address_country": "France", | ||
"osm_lat": 45.1904063, | ||
"osm_lon": 5.7286464, | ||
"created": "2024-02-09T17:43:00.113125+01:00", | ||
"updated": "2024-03-31T22:13:49.569736+02:00" | ||
} | ||
}, | ||
{ | ||
"product_code": null, | ||
"product_name": null, | ||
"category_tag": "en:pitted-apricot", | ||
"labels_tags": null, | ||
"origins_tags": [ | ||
"en:germany" | ||
], | ||
"price": 3.0, | ||
"price_is_discounted": false, | ||
"price_without_discount": null, | ||
"price_per": "KILOGRAM", | ||
"currency": "AED", | ||
"location_osm_id": 32520537, | ||
"location_osm_type": "WAY", | ||
"date": "2024-03-20", | ||
"proof_id": 224, | ||
"id": 759, | ||
"product_id": null, | ||
"location_id": 32, | ||
"owner": "user1", | ||
"created": "2024-03-20T14:27:21.575599+01:00", | ||
"product": null, | ||
"proof": { | ||
"id": 224, | ||
"file_path": "0001/TWZOnskQhz.webp", | ||
"mimetype": "image/webp", | ||
"type": "RECEIPT", | ||
"owner": "user1", | ||
"price_count": 9, | ||
"created": "2024-03-20T01:40:46.098715+01:00" | ||
}, | ||
"location": { | ||
"osm_id": 32520537, | ||
"osm_type": "WAY", | ||
"price_count": 16, | ||
"id": 32, | ||
"osm_name": "Monoprix", | ||
"osm_display_name": "Monoprix, Rue Lafayette, Hyper Centre, Secteur 2, Grenoble, Isère, Auvergne-Rhône-Alpes, France métropolitaine, 38000, France", | ||
"osm_address_postcode": "38000", | ||
"osm_address_city": "Grenoble", | ||
"osm_address_country": "France", | ||
"osm_lat": 45.1904063, | ||
"osm_lon": 5.7286464, | ||
"created": "2024-02-09T17:43:00.113125+01:00", | ||
"updated": "2024-03-31T22:13:49.569736+02:00" | ||
} | ||
} | ||
], | ||
"total": 2, | ||
"page": 1, | ||
"size": 10, | ||
"pages": 1 | ||
} |
Oops, something went wrong.