docs(tests): Add comprehensive test suite documentation

- Add detailed header documentation to playwright tests
- Document test categories and flows
- Add key selector documentation
- Document state verification and alert handling
- Include code examples and usage patterns
- Add important checks and requirements

The documentation helps developers understand the foundational tests that verify
basic application functionality before running more complex test suites.
This commit is contained in:
Matthew Raymer
2025-02-16 03:29:22 +00:00
parent 5550d6a411
commit a66093028e
10 changed files with 683 additions and 516 deletions

View File

@@ -1,8 +1,67 @@
/**
* End-to-End Contact Management Tests
*
* Comprehensive test suite for Time Safari's contact management and gift recording features.
* Tests run sequentially to avoid state conflicts and API rate limits.
*
* Test Flow:
* 1. Contact Creation & Verification
* - Add contact using DID
* - Verify contact appears in list
* - Rename contact and verify change
* - Check contact appears in "Record Something" section
*
* 2. Gift Recording Flow
* - Generate unique gift details
* - Record gift to contact
* - Verify gift confirmation
* - Check gift appears in activity feed
*
* 3. Contact Import/Export Tests
* - Copy contact details to clipboard
* - Delete existing contact
* - Import contact from clipboard
* - Verify imported contact details
*
* Test Data Generation:
* - Gift titles: "Gift " + 16-char random string
* - Gift amounts: Random 1-99 value
* - Contact names: Predefined test values
* - DIDs: Uses test accounts (e.g., did:ethr:0x000...)
*
* Key Selectors:
* - Contact list: 'li[data-testid="contactListItem"]'
* - Gift recording: '#sectionRecordSomethingGiven'
* - Contact name: '[data-testid="contactName"] input'
* - Alert dialogs: 'div[role="alert"]'
*
* Timeouts & Retries:
* - Uses OS-specific timeouts (longer for Linux)
* - Implements retry logic for network operations
* - Waits for UI animations and state changes
*
* Alert Handling:
* - Closes onboarding dialogs
* - Handles registration prompts
* - Verifies alert dismissal
*
* State Requirements:
* - Clean database state
* - No existing contacts for test DIDs
* - Available API rate limits
*
* @example Basic contact addition
* ```typescript
* await page.goto('./contacts');
* await page.getByPlaceholder('URL or DID, Name, Public Key')
* .fill('did:ethr:0x000...., User Name');
* await page.locator('button > svg.fa-plus').click();
* ```
*/
import { test, expect } from '@playwright/test';
import { importUser } from './testUtils';
test('Create new project, then search for it', async ({ page }) => {
test.slow();
// Generate a random string of 16 characters
let randomString = Math.random().toString(36).substring(2, 18);