Spaces:
Sleeping
Sleeping
File size: 2,370 Bytes
f75d7fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
import { faker } from '@faker-js/faker';
import { expect, test } from '@playwright/test';
test.describe('Counter', () => {
test.describe('Basic database operations', () => {
test('shouldn\'t increment the counter with an invalid input', async ({ page }) => {
const counter = await page.request.put('/api/counter', {
data: {
increment: 'incorrect',
},
});
expect(counter.status()).toBe(422);
});
test('shouldn\'t increment the counter with a negative number', async ({ page }) => {
const counter = await page.request.put('/api/counter', {
data: {
increment: -1,
},
});
expect(counter.status()).toBe(422);
});
test('shouldn\'t increment the counter with a number greater than 3', async ({ page }) => {
const counter = await page.request.put('/api/counter', {
data: {
increment: 5,
},
});
expect(counter.status()).toBe(422);
});
test('should increment the counter and update the counter correctly', async ({ page }) => {
// `x-e2e-random-id` is used for end-to-end testing to make isolated requests
// The default value is 0 when there is no `x-e2e-random-id` header
const e2eRandomId = faker.number.int({ max: 1000000 });
let counter = await page.request.put('/api/counter', {
data: {
increment: 1,
},
headers: {
'x-e2e-random-id': e2eRandomId.toString(),
},
});
let counterJson = await counter.json();
expect(counter.status()).toBe(200);
// Save the current count
const count = counterJson.count;
counter = await page.request.put('/api/counter', {
data: {
increment: 2,
},
headers: {
'x-e2e-random-id': e2eRandomId.toString(),
},
});
counterJson = await counter.json();
expect(counter.status()).toBe(200);
expect(counterJson.count).toEqual(count + 2);
counter = await page.request.put('/api/counter', {
data: {
increment: 1,
},
headers: {
'x-e2e-random-id': e2eRandomId.toString(),
},
});
counterJson = await counter.json();
expect(counter.status()).toBe(200);
expect(counterJson.count).toEqual(count + 3);
});
});
});
|