mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 02:32:00 +10:00
feat: add more tests
This commit is contained in:
13
apps/web/src/tests/auth.setup.ts
Normal file
13
apps/web/src/tests/auth.setup.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { type Page, expect, test as setup } from '@playwright/test';
|
||||
|
||||
import { STORAGE_STATE } from '../../../../playwright.config';
|
||||
|
||||
setup('authenticate', async ({ page }: { page: Page }) => {
|
||||
await page.goto('/');
|
||||
await page.getByLabel('Email').fill(process.env.E2E_TEST_USER_EMAIL);
|
||||
await page.getByLabel('Password').fill(process.env.E2E_TEST_USER_PASSWORD);
|
||||
await page.getByRole('button', { name: 'Sign In' }).click();
|
||||
await page.waitForURL('/documents');
|
||||
await expect(page).toHaveURL('/documents');
|
||||
await page.context().storageState({ path: STORAGE_STATE });
|
||||
});
|
||||
57
apps/web/src/tests/documenso.pdf
Normal file
57
apps/web/src/tests/documenso.pdf
Normal file
@ -0,0 +1,57 @@
|
||||
%PDF-1.4
|
||||
%<25><><EFBFBD><EFBFBD>
|
||||
1 0 obj
|
||||
<</Title (documenso)
|
||||
/Producer (Skia/PDF m118 Google Docs Renderer)>>
|
||||
endobj
|
||||
3 0 obj
|
||||
<</ca 1
|
||||
/BM /Normal>>
|
||||
endobj
|
||||
4 0 obj
|
||||
<</Length 84>> stream
|
||||
1 0 0 -1 0 842 cm
|
||||
q
|
||||
.75 0 0 .75 0 0 cm
|
||||
1 1 1 RG 1 1 1 rg
|
||||
/G3 gs
|
||||
0 0 794 1123 re
|
||||
f
|
||||
Q
|
||||
|
||||
endstream
|
||||
endobj
|
||||
2 0 obj
|
||||
<</Type /Page
|
||||
/Resources <</ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
||||
/ExtGState <</G3 3 0 R>>>>
|
||||
/MediaBox [0 0 596 842]
|
||||
/Contents 4 0 R
|
||||
/StructParents 0
|
||||
/Parent 5 0 R>>
|
||||
endobj
|
||||
5 0 obj
|
||||
<</Type /Pages
|
||||
/Count 1
|
||||
/Kids [2 0 R]>>
|
||||
endobj
|
||||
6 0 obj
|
||||
<</Type /Catalog
|
||||
/Pages 5 0 R>>
|
||||
endobj
|
||||
xref
|
||||
0 7
|
||||
0000000000 65535 f
|
||||
0000000015 00000 n
|
||||
0000000269 00000 n
|
||||
0000000100 00000 n
|
||||
0000000137 00000 n
|
||||
0000000457 00000 n
|
||||
0000000512 00000 n
|
||||
trailer
|
||||
<</Size 7
|
||||
/Root 6 0 R
|
||||
/Info 1 0 R>>
|
||||
startxref
|
||||
559
|
||||
%%EOF
|
||||
@ -1,12 +1,12 @@
|
||||
import { expect, test } from '@playwright/test';
|
||||
import { type Page, expect, test } from '@playwright/test';
|
||||
|
||||
test.use({ storageState: { cookies: [], origins: [] } });
|
||||
|
||||
test('sign up with email and password', async ({ page }) => {
|
||||
await page.goto('http://localhost:3000/signup');
|
||||
await page.getByLabel('Name').fill('John Doe');
|
||||
await page.getByLabel('Email').fill('johndoe2023@documenso.com');
|
||||
await page.getByLabel('Password').fill('my_secure_password');
|
||||
test('user can sign up with email and password', async ({ page }: { page: Page }) => {
|
||||
await page.goto('/signup');
|
||||
await page.getByLabel('Name').fill(process.env.E2E_TEST_USERNAME);
|
||||
await page.getByLabel('Email').fill(process.env.E2E_TEST_USER_EMAIL);
|
||||
await page.getByLabel('Password').fill(process.env.E2E_TEST_USER_PASSWORD);
|
||||
|
||||
const canvas = page.locator('canvas');
|
||||
const box = await canvas.boundingBox();
|
||||
@ -21,11 +21,11 @@ test('sign up with email and password', async ({ page }) => {
|
||||
await page.getByRole('button', { name: 'Sign Up' }).click();
|
||||
});
|
||||
|
||||
test('user can login with user and password', async ({ page }) => {
|
||||
await page.goto('http://localhost:3000/signin');
|
||||
await page.getByLabel('Email').fill('johndoe2023@documenso.com');
|
||||
await page.getByLabel('Password').fill('my_secure_password');
|
||||
test('user can login with user and password', async ({ page }: { page: Page }) => {
|
||||
await page.goto('/signin');
|
||||
await page.getByLabel('Email').fill(process.env.E2E_TEST_USER_EMAIL);
|
||||
await page.getByLabel('Password').fill(process.env.E2E_TEST_USER_PASSWORD);
|
||||
await page.getByRole('button', { name: 'Sign In' }).click();
|
||||
|
||||
await expect(page).toHaveURL('http://localhost:3000/documents');
|
||||
await expect(page).toHaveURL('/documents');
|
||||
});
|
||||
|
||||
66
apps/web/src/tests/test-document-upload.spec.ts
Normal file
66
apps/web/src/tests/test-document-upload.spec.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { type Page, expect, test } from '@playwright/test';
|
||||
|
||||
/*
|
||||
There was a bit of code duplication because each test starts from the first step - which is uploading a document.
|
||||
Then each subsequent test adds a new step. So, for each test we repeat the steps from the previous tests.
|
||||
|
||||
I extracted the most common steps into functions and then I call them in each test.
|
||||
Also, the document upload is used in all tests, so I added it to the beforeEach hook.
|
||||
*/
|
||||
const addSigner = async (page: Page) => {
|
||||
await page.getByLabel('Email*').fill('example@email.com');
|
||||
await page.getByLabel('Name').fill('User');
|
||||
await page.getByRole('button', { name: 'Continue' }).click();
|
||||
};
|
||||
|
||||
const addSignatureField = async (page: Page) => {
|
||||
await page.getByRole('button', { name: 'User Signature' }).dragTo(page.locator('canvas'));
|
||||
await page.getByRole('button', { name: 'Continue' }).click();
|
||||
};
|
||||
|
||||
test.describe('Document upload test', () => {
|
||||
test.beforeEach(async ({ page }: { page: Page }) => {
|
||||
await page.goto('/');
|
||||
|
||||
await expect(page).toHaveTitle('Documenso - The Open Source DocuSign Alternative');
|
||||
|
||||
await page
|
||||
.getByText('Add a documentDrag & drop your document here.')
|
||||
.locator('input[type=file]')
|
||||
.setInputFiles('./apps/web/src/tests/documenso.pdf');
|
||||
});
|
||||
|
||||
test('user can see /documents page', async ({ page }: { page: Page }) => {
|
||||
await page.goto('/');
|
||||
|
||||
await expect(page).toHaveTitle('Documenso - The Open Source DocuSign Alternative');
|
||||
});
|
||||
|
||||
test('user can add 1 signer', async ({ page }: { page: Page }) => {
|
||||
await addSigner(page);
|
||||
});
|
||||
|
||||
test('user can add signature field', async ({ page }: { page: Page }) => {
|
||||
await addSigner(page);
|
||||
|
||||
await addSignatureField(page);
|
||||
});
|
||||
|
||||
test('user can add subject and message', async ({ page }: { page: Page }) => {
|
||||
await addSigner(page);
|
||||
|
||||
await addSignatureField(page);
|
||||
|
||||
await page
|
||||
.locator('div')
|
||||
.filter({ hasText: /^Subject \(Optional\)$/ })
|
||||
.locator('input')
|
||||
.fill('New document');
|
||||
await page
|
||||
.locator('div')
|
||||
.filter({ hasText: /^Message \(Optional\)$/ })
|
||||
.locator('textarea')
|
||||
.fill('Please sign it in and send it back to me.');
|
||||
await page.getByRole('button', { name: 'Send' }).click();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user