diff --git a/README.md b/README.md index b333147..5ff6a22 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,50 @@ ![CI](https://github.com/nearform/hub-template/actions/workflows/ci.yml/badge.svg?event=push) -# Playwright-Firebase plugin +# @nearform/playwright-firebase Tidy way to authenticate Playwright E2E tests on Firebase. -## Installation +Install using npm: -In order to install this package into your playwright project use `npm install @nearform/playwright-firebase` or `yarn add @nearform-firebase` +```bash +npm install @nearform/playwright-firebase +``` + +or yarn: + +```bash +yarn add @nearform/playwright-firebase +``` + +Want to see it in action? Go to [Example](#example) to try it out! + +## Contents -## Commands +0. [Setup](#setup) +1. [Motivation](#motivation) +2. [Example](#example) -- `auth.login(page)` : logs in -- `auth.logout(page)`: logs out + ## Setup -### TypeScript +### Firebase environment variables -If you're using Typescript, one small addition you'll need to make is to add the type `Credentials` to your `playwright.config.ts` such that +To set up this plugin you will need three environment variables in order to authenticate with Firebase. These are: -``` -import {Credentials} from '@nearform/playwright-firebase' -export default defineConfig({ - ... - }) -``` +1. [Firebase Service Account](https://firebase.google.com/docs/app-distribution/authenticate-service-account) +2. [Firebase User ID](https://firebase.google.com/docs/auth/web/manage-users) +3. [Firebase Configurations](https://support.google.com/firebase/answer/7015592?hl=en#zippy=%2Cin-this-article) -Create a setup file that is ran before all tests, where we'll redefine test, so you can import it from your setup file with the `auth` fixture added. +For more information about Firebase you can read the documentation [here](https://firebase.google.com/docs/auth/web/start) -``` +It's recommended to place these values in a `.env` file. Make sure to **NOT COMMIT THIS FILE**. For clarity, the Firebase User ID is often abbreviated to UID, as you will find below. + +### Attaching playright-firebase as a fixture to Playwright + +Playwright is based on fixtures. You have likely already used them within playwright, they are the `{ page }` object that is passed in to `test`. More information on them [here](https://playwright.dev/docs/test-fixtures). In the very same way, we are able to add our own fixture, which we call `auth` to the tests. To do so, we need to create a setup file that will automatically run before all other tests. We will call this `auth.setup.ts` + +```ts // auth.setup.ts import playwrightFirebasePlugin from '@nearform/playwright-firebase' import { test as base } from '@playwright/test' @@ -39,26 +55,71 @@ const options = JSON.parse(process.env.REACT_APP_FIREBASE_CONFIG!) export const test = playwrightFirebasePlugin(serviceAccount, options, uid, base) ``` -The default Firebase version used is `10.5.0`. In order to change this you can pass the version into the `playwrightFirebasePlugin` function as an optional fifth argument: +Above we import the test directly from `@playwright/test` as `base` and then export a new `test` object which is identical to `base` with the addition of a fixture called `auth`. An important note is that we should now import `test` from this file instead of `@playwright/test`. -``` -playwrightFirebasePlugin(serviceAccount, options, uid, base, version) -``` +```ts +//example.spec.ts +import { expect } from '@playwright/test' +import { test } from '../auth.setup' // <----- here we import test from our auth.setup.ts. +import { Page } from '@playwright/test' -Where your secrets are stored in a `.env` file. Make sure to **NOT COMMIT THIS FILE**. -Now, by using the new `test` we can incorporate the `auth` generated from the package. +// We now access auth in exactly the same method as we do page. +test('has title', async ({ page, auth }: { page: Page; auth: any }) => { + await page.goto('/', { waitUntil: 'networkidle' }) + await auth.login(page) // <-- we need to pass in the page object here. -``` -import { expect } from '@playwright/test'; -import { test } from '../auth.setup' -import { Page } from '@playwright/test'; -test('has title', async ({ page, auth }: { page: Page, auth: any }) => { - await page.goto('/', { waitUntil: 'networkidle' }); - await auth.login(page) - - const txt = page.getByText('Welcome! You are now logged in') + const txt = await page.getByText('Welcome! You are now logged in') await expect(txt).toBeVisible() + await auth.logout(page) + await expect(txt).not.toBeVisible() -}); +}) ``` + +It's recommended to use `await` for your `expect` assertions after logging in/out, as the Firebase authentication is likely tied to states that require re-rendering of your application. + +### TypeScript + +If you're using Typescript, one small addition you'll need to make is to add the type `Credentials` to your `playwright.config.ts` such that + +```ts +import { Credentials } from '@nearform/playwright-firebase' + +export default defineConfig({ + ... +}) +``` + + + +## Motivation + +This package is built as a plugin for Playwright testing for the use-case of Firebase authentication. There are two methods of automating a login procedure in Playwright tests: + +1. As a normal user would: inserting a real username and password into the intended fields. +2. Authenticating via the Firebase SDK directly + +This plugin was developed with the 2nd method in mind as it is + +- Provider agnostic: Does not need to know the specifics of the authentication provider +- A faster way of logging in, so you can focus on testing +- Better security than using a username and password. + + + +## Example + +Within this repo we have an `example/` folder that contains a sample React application for authenticating with the Google Provider. You'll need to setup the Firebase environment variables as described above in the setup section, but the rest is taken care of. + +1. Clone this repository +2. Run the following: + a. `cd ./example` + b. `npm i` + c. `npm init playwright@latest` + d. `npm run start` + +At this point, you should see a web server running on `localhost:3000`. If not, or any of the above steps did not execute, please raise an issue! + +3. Make a `.env` file within `./example`, copy and paste over the variable names from `.env.sample` and populate them with your real Firebase environment variables +4. Run `npx playwright test`