mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
356 lines
13 KiB
TypeScript
356 lines
13 KiB
TypeScript
import { PLAYWRIGHT_BASE_URL } from '../playwright/config';
|
|
import { test } from '../playwright/fixtures';
|
|
import { expect, Locator, Page } from '@playwright/test';
|
|
import {
|
|
assertThatTimerHasStarted,
|
|
assertThatTimerIsStopped,
|
|
newTimeEntryResponse,
|
|
startOrStopTimerWithButton,
|
|
stoppedTimeEntryResponse,
|
|
} from './utils/currentTimeEntry';
|
|
|
|
async function goToTimeOverview(page: Page) {
|
|
await page.goto(PLAYWRIGHT_BASE_URL + '/time');
|
|
}
|
|
|
|
async function createEmptyTimeEntry(page: Page) {
|
|
await Promise.all([
|
|
newTimeEntryResponse(page),
|
|
startOrStopTimerWithButton(page),
|
|
assertThatTimerHasStarted(page),
|
|
]);
|
|
await page.waitForTimeout(1500);
|
|
await Promise.all([
|
|
stoppedTimeEntryResponse(page),
|
|
startOrStopTimerWithButton(page),
|
|
assertThatTimerIsStopped(page),
|
|
page.waitForResponse(
|
|
(response) =>
|
|
response.url().includes('/time-entries') &&
|
|
response.status() === 200
|
|
),
|
|
]);
|
|
}
|
|
|
|
test('test that starting and stopping an empty time entry shows a new time entry in the overview', async ({
|
|
page,
|
|
}) => {
|
|
await Promise.all([
|
|
goToTimeOverview(page),
|
|
page.waitForResponse(
|
|
(response) =>
|
|
response.url().includes('/time-entries') &&
|
|
response.status() === 200
|
|
),
|
|
]);
|
|
await page.waitForTimeout(100);
|
|
|
|
// check that there are not testid time_entry_row elements on the page
|
|
const timeEntryRows = page.locator('[data-testid="time_entry_row"]');
|
|
const initialTimeEntryCount = await timeEntryRows.count();
|
|
await createEmptyTimeEntry(page);
|
|
|
|
await expect(timeEntryRows).toHaveCount(initialTimeEntryCount + 1);
|
|
});
|
|
|
|
// Test that description update works
|
|
|
|
async function assertThatTimeEntryRowIsStopped(newTimeEntry: Locator) {
|
|
await expect(newTimeEntry.getByTestId('timer_button')).toHaveClass(
|
|
/bg-accent-300\/70/
|
|
);
|
|
}
|
|
|
|
test('test that updating a description of a time entry in the overview works on blur', async ({
|
|
page,
|
|
}) => {
|
|
await goToTimeOverview(page);
|
|
const timeEntryRows = page.locator('[data-testid="time_entry_row"]');
|
|
await createEmptyTimeEntry(page);
|
|
const newTimeEntry = timeEntryRows.first();
|
|
await assertThatTimeEntryRowIsStopped(newTimeEntry);
|
|
|
|
const newDescription = Math.floor(Math.random() * 1000000).toString();
|
|
const descriptionElement = newTimeEntry.getByTestId(
|
|
'time_entry_description'
|
|
);
|
|
await descriptionElement.fill(newDescription);
|
|
await Promise.all([
|
|
descriptionElement.press('Tab'),
|
|
page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 200 &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
(await response.json()).data.id !== null &&
|
|
(await response.json()).data.start !== null &&
|
|
(await response.json()).data.end !== null &&
|
|
(await response.json()).data.project_id === null &&
|
|
(await response.json()).data.description == newDescription &&
|
|
(await response.json()).data.task_id === null &&
|
|
(await response.json()).data.duration !== null &&
|
|
(await response.json()).data.user_id !== null &&
|
|
JSON.stringify((await response.json()).data.tags) ===
|
|
JSON.stringify([])
|
|
);
|
|
}),
|
|
]);
|
|
});
|
|
|
|
test('test that updating a description of a time entry in the overview works on enter', async ({
|
|
page,
|
|
}) => {
|
|
await goToTimeOverview(page);
|
|
const timeEntryRows = page.locator('[data-testid="time_entry_row"]');
|
|
await createEmptyTimeEntry(page);
|
|
|
|
const newTimeEntry = timeEntryRows.first();
|
|
await assertThatTimeEntryRowIsStopped(newTimeEntry);
|
|
const newDescription = Math.floor(Math.random() * 1000000).toString();
|
|
const descriptionElement = newTimeEntry.getByTestId(
|
|
'time_entry_description'
|
|
);
|
|
await descriptionElement.fill(newDescription);
|
|
await Promise.all([
|
|
descriptionElement.press('Enter'),
|
|
page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 200 &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
(await response.json()).data.id !== null &&
|
|
(await response.json()).data.start !== null &&
|
|
(await response.json()).data.end !== null &&
|
|
(await response.json()).data.project_id === null &&
|
|
(await response.json()).data.description == newDescription &&
|
|
(await response.json()).data.task_id === null &&
|
|
(await response.json()).data.duration !== null &&
|
|
(await response.json()).data.user_id !== null &&
|
|
JSON.stringify((await response.json()).data.tags) ===
|
|
JSON.stringify([])
|
|
);
|
|
}),
|
|
]);
|
|
});
|
|
|
|
test('test that adding a new tag to an existing time entry works', async ({
|
|
page,
|
|
}) => {
|
|
await goToTimeOverview(page);
|
|
const timeEntryRows = page.locator('[data-testid="time_entry_row"]');
|
|
await createEmptyTimeEntry(page);
|
|
|
|
const newTimeEntry = timeEntryRows.first();
|
|
await assertThatTimeEntryRowIsStopped(newTimeEntry);
|
|
const newTagName = Math.floor(Math.random() * 1000000).toString();
|
|
|
|
await newTimeEntry.getByTestId('time_entry_tag_dropdown').click();
|
|
await page.getByText('Create new tag').click();
|
|
await page.getByPlaceholder('Tag Name').fill(newTagName);
|
|
|
|
const [tagReponse] = await Promise.all([
|
|
page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 201 &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
(await response.json()).data.name === newTagName
|
|
);
|
|
}),
|
|
page.getByRole('button', { name: 'Create Tag' }).click(),
|
|
]);
|
|
|
|
await page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 200 &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
(await response.json()).data.id !== null &&
|
|
(await response.json()).data.start !== null &&
|
|
(await response.json()).data.end !== null &&
|
|
JSON.stringify((await response.json()).data.tags) ===
|
|
JSON.stringify([(await tagReponse.json()).data.id])
|
|
);
|
|
});
|
|
|
|
await expect(newTimeEntry.getByText(newTagName)).toBeVisible();
|
|
});
|
|
|
|
// Test that Start / End Time Update Works
|
|
test('test that updating a the start of an existing time entry in the overview works on enter', async ({
|
|
page,
|
|
}) => {
|
|
await goToTimeOverview(page);
|
|
const timeEntryRows = page.locator('[data-testid="time_entry_row"]');
|
|
await createEmptyTimeEntry(page);
|
|
|
|
const newTimeEntry = timeEntryRows.first();
|
|
await assertThatTimeEntryRowIsStopped(newTimeEntry);
|
|
await page.waitForTimeout(1500);
|
|
const timeEntryRangeElement = newTimeEntry.getByTestId(
|
|
'time_entry_range_selector'
|
|
);
|
|
await timeEntryRangeElement.click();
|
|
await page.getByTestId('time_entry_range_start').first().fill('1');
|
|
await Promise.all([
|
|
page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 200 &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
(await response.json()).data.id !== null &&
|
|
// TODO! Actually check the value
|
|
(await response.json()).data.start !== null &&
|
|
(await response.json()).data.end !== null
|
|
);
|
|
}),
|
|
page.getByTestId('time_entry_range_end').press('Enter'),
|
|
]);
|
|
});
|
|
|
|
test('test that updating a the duration in the overview works on blur', async ({
|
|
page,
|
|
}) => {
|
|
await goToTimeOverview(page);
|
|
const timeEntryRows = page.locator('[data-testid="time_entry_row"]');
|
|
await createEmptyTimeEntry(page);
|
|
|
|
const newTimeEntry = timeEntryRows.first();
|
|
await assertThatTimeEntryRowIsStopped(newTimeEntry);
|
|
await page.waitForTimeout(1500);
|
|
const timeEntryDurationInput = newTimeEntry.locator('input[name="Duration"]');
|
|
await timeEntryDurationInput.fill('20min');
|
|
|
|
await Promise.all([
|
|
page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 200 &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
(await response.json()).data.id !== null &&
|
|
// TODO! Actually check the value
|
|
(await response.json()).data.start !== null &&
|
|
(await response.json()).data.end !== null
|
|
);
|
|
}),
|
|
timeEntryDurationInput.press('Tab'),
|
|
]);
|
|
|
|
await expect(timeEntryDurationInput).toHaveValue('0h 20min');
|
|
});
|
|
|
|
// Test that start stop button stops running timer
|
|
test('test that starting a time entry from the overview works', async ({
|
|
page,
|
|
}) => {
|
|
await goToTimeOverview(page);
|
|
const timeEntryRows = page.locator('[data-testid="time_entry_row"]');
|
|
await createEmptyTimeEntry(page);
|
|
|
|
const newTimeEntry = timeEntryRows.first();
|
|
const startButton = newTimeEntry.getByTestId('timer_button');
|
|
await expect(startButton).toHaveClass(/bg-accent-300\/70/);
|
|
|
|
await Promise.all([
|
|
page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 200 &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
(await response.json()).data.id !== null &&
|
|
(await response.json()).data.start !== null &&
|
|
(await response.json()).data.end !== null
|
|
);
|
|
}),
|
|
startButton.click(),
|
|
]);
|
|
|
|
await assertThatTimerHasStarted(page);
|
|
|
|
await page.waitForTimeout(1500);
|
|
await Promise.all([
|
|
page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 200 &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
(await response.json()).data.id !== null &&
|
|
(await response.json()).data.start !== null &&
|
|
(await response.json()).data.end !== null
|
|
);
|
|
}),
|
|
startOrStopTimerWithButton(page),
|
|
assertThatTimerIsStopped(page),
|
|
]);
|
|
});
|
|
|
|
test('test that deleting a time entry from the overview works', async ({
|
|
page,
|
|
}) => {
|
|
await goToTimeOverview(page);
|
|
const timeEntryRows = page.locator('[data-testid="time_entry_row"]');
|
|
await createEmptyTimeEntry(page);
|
|
await expect(timeEntryRows).toHaveCount(1);
|
|
|
|
const newTimeEntry = timeEntryRows.first();
|
|
const actionsDropdown = newTimeEntry
|
|
.getByRole('button', { name: 'Actions for the time entry' })
|
|
.first();
|
|
await actionsDropdown.click();
|
|
const deleteButton = page.getByText('Delete');
|
|
await deleteButton.click();
|
|
await expect(timeEntryRows).toHaveCount(0);
|
|
});
|
|
|
|
test.skip('test that load more works when the end of page is reached', async ({
|
|
page,
|
|
}) => {
|
|
// this test is flaky when you do not need to scroll
|
|
await Promise.all([
|
|
goToTimeOverview(page),
|
|
page.waitForResponse(
|
|
(response) =>
|
|
response.url().includes('/time-entries') &&
|
|
response.status() === 200
|
|
),
|
|
]);
|
|
|
|
await page.waitForTimeout(200);
|
|
await Promise.all([
|
|
page.evaluate(() => window.scrollTo(0, document.body.scrollHeight)),
|
|
page.waitForResponse(async (response) => {
|
|
return (
|
|
response.status() === 200 &&
|
|
response.url().includes('before') &&
|
|
(await response.headerValue('Content-Type')) ===
|
|
'application/json' &&
|
|
JSON.stringify((await response.json()).data) ===
|
|
JSON.stringify([])
|
|
);
|
|
}),
|
|
]);
|
|
|
|
// assert that "All time entries are loaded!" is visible on page
|
|
await expect(page.locator('body')).toHaveText(
|
|
/All time entries are loaded!/
|
|
);
|
|
});
|
|
|
|
// TODO: Test that updating the time entry start / end times works while it is running
|
|
|
|
// TODO: Test for project update
|
|
|
|
// TODO: Test for resume button click works with project / task
|
|
|
|
// TODO: Test that time entries are loaded at the end of the page
|
|
|
|
// TODO: Test manual time entries
|
|
|
|
// TODO: Test Grouped time entries by description/project
|
|
|
|
// TODO: Add Test for Date Update
|
|
|
|
// TODO: Test that project can be created in the time entry row
|
|
|
|
// TODO: Add Tests for Mass Update
|