@dfinity/internet-identity-playwright
v0.0.4
Published
A Playwright library to simplify the integration of Internet Identity authentication in E2E tests.
Downloads
6,021
Readme
🔐 Internet Identity Playwright
A Playwright library to simplify the integration of Internet Identity authentication in E2E tests.
🚀 Introduction
This repository offers Playwright fixtures designed to assist developers in creating end-to-end (E2E) tests for dApps utilizing Internet Identity. These pre-built scenarios allow developers to seamlessly integrate authentication flows, including the creation and reuse of identities, without needing to implement the flows themselves.
🖥️ Installation
# with npm
npm install --save-dev @dfinity/internet-identity-playwright
# with pnpm
pnpm add --save-dev @dfinity/internet-identity-playwright
# with yarn
yarn add -D @dfinity/internet-identity-playwright
✍️ Usage
To use the Internet Identity Playwright fixtures, follow these steps:
1. Import the Fixtures
In your Playwright test file, import the fixtures provided by this library.
import {testWithII} from '@dfinity/internet-identity-playwright';
2. Write Your Tests
Use the extended fixtures in your tests to perform authentication flows.
testWithII('should sign-in with a new user', async ({page, iiPage}) => {
await page.goto('/');
await iiPage.signInWithNewIdentity();
});
testWithII('should sign-in with an existing new user', async ({page, iiPage}) => {
await page.goto('/');
await iiPage.signInWithIdentity({identity: 10003});
});
The iiPage
object represents the page of your application that contains the call to action to start the authentication flow with Internet Identity. By default, the fixture will search for a button identified by the attribute [data-tid=login-button]
. You can customize this behavior by providing your own selector.
const loginSelector = '#login';
testWithII('should sign-in with a new user', async ({page, iiPage}) => {
await page.goto('/');
await iiPage.signInWithNewIdentity({selector: loginSelector});
});
testWithII('should sign-in with an existing new user', async ({page, iiPage}) => {
await page.goto('/');
await iiPage.signInWithIdentity({identity: 10003, selector: loginSelector});
});
3. Wait for Internet Identity (optional)
You might encounter scenarios where you perform tests against a local replica started in parallel with your tests, commonly when automating the tests in a CI environment. The library also exposes a fixture that lets you wait for Internet Identity to be ready.
For example, you can provide the local replica URL and the canister ID on which Internet Identity has been deployed:
testWithII.beforeEach(async ({iiPage, browser}) => {
const url = 'http://127.0.0.1:4943';
const canisterId = 'rdmx6-jaaaa-aaaaa-aaadq-cai';
await iiPage.waitReady({url, canisterId});
});
The function also accepts an optional timeout parameter to specify how long the function should wait for Internet Identity to be mounted, with a default value of 60000 milliseconds.
testWithII.beforeEach(async ({iiPage, browser}) => {
const url = 'http://127.0.0.1:4943';
const canisterId = 'rdmx6-jaaaa-aaaaa-aaadq-cai';
const timeout = 30000;
await iiPage.waitReady({url, canisterId, timeout});
});
4. Run Your Tests
Run your Playwright tests as usual.
npx playwright test
💁♂️️ Tips & tricks
Example Test
You can find an example test in the following file: login.spec.ts.
Running Tests Locally
To run these tests locally, you'll need to install the Juno CLI. Follow the steps below:
- Install Docker:
Make sure you have Docker installed on your machine (Windows, MacOS, or Linux).
[!NOTE] For MacBooks with M processors, it is important to use Docker Desktop version 4.25.0 or later, ideally the latest available version.
- Start the Demo Application:
Navigate to the demo directory and start the application using Docker:
cd demo
docker compose up
- Run the Tests:
Return to the root directory and execute the tests:
npm run e2e
Running Captcha Tests Locally
The default test suite validates the use of Internet Identity without captcha requirements. To test a flow with captcha, run the following command in the demo
directory:
docker compose -f docker-compose.captcha.yml up
Then, navigate to the root directory and run the dedicated test:
npm run e2e:captcha
🚧 Limitations
Currently, the library's fixtures cannot be implemented with Playwright's ability to load existing authenticated state. Playwright currently does not support IndexedDB for such features. This limitation is tracked in their GitHub issue #11164.
While it is technically possible to use local storage instead of IndexedDB, this approach is generally discouraged as it does not reflect how identities are stored in the browser. We prefer to adhere to best practices for testing to ensure the most accurate simulation of real-world scenarios.