2023-02-16 22:39:57 +00:00
import type { Page } from "@playwright/test" ;
2023-03-01 20:18:51 +00:00
import { expect } from "@playwright/test" ;
2023-02-16 22:39:57 +00:00
import type { IncomingMessage , ServerResponse } from "http" ;
import { createServer } from "http" ;
2023-03-23 18:49:28 +00:00
import { noop } from "lodash" ;
2021-10-18 21:07:06 +00:00
2023-03-01 20:18:51 +00:00
import { test } from "./fixtures" ;
2021-12-15 16:25:49 +00:00
export function todo ( title : string ) {
2022-05-18 16:25:30 +00:00
// eslint-disable-next-line playwright/no-skipped-test
test . skip ( title , noop ) ;
2021-12-15 16:25:49 +00:00
}
2021-10-18 21:07:06 +00:00
type Request = IncomingMessage & { body? : unknown } ;
type RequestHandlerOptions = { req : Request ; res : ServerResponse } ;
type RequestHandler = ( opts : RequestHandlerOptions ) = > void ;
2023-05-22 23:15:06 +00:00
export const testEmail = "test@example.com" ;
export const testName = "Test Testson" ;
2021-10-18 21:07:06 +00:00
export function createHttpServer ( opts : { requestHandler? : RequestHandler } = { } ) {
const {
requestHandler = ( { res } ) = > {
res . writeHead ( 200 , { "Content-Type" : "application/json" } ) ;
res . write ( JSON . stringify ( { } ) ) ;
res . end ( ) ;
} ,
} = opts ;
const requestList : Request [ ] = [ ] ;
const server = createServer ( ( req , res ) = > {
const buffer : unknown [ ] = [ ] ;
req . on ( "data" , ( data ) = > {
buffer . push ( data ) ;
} ) ;
req . on ( "end" , ( ) = > {
const _req : Request = req ;
// assume all incoming request bodies are json
const json = buffer . length ? JSON . parse ( buffer . join ( "" ) ) : undefined ;
_req . body = json ;
requestList . push ( _req ) ;
requestHandler ( { req : _req , res } ) ;
} ) ;
} ) ;
// listen on random port
server . listen ( 0 ) ;
2023-06-06 11:59:57 +00:00
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2021-10-18 21:07:06 +00:00
const port : number = ( server . address ( ) as any ) . port ;
const url = ` http://localhost: ${ port } ` ;
return {
port ,
close : ( ) = > server . close ( ) ,
requestList ,
url ,
} ;
}
/ * *
* When in need to wait for any period of time you can use waitFor , to wait for your expectations to pass .
* /
export async function waitFor ( fn : ( ) = > Promise < unknown > | unknown , opts : { timeout? : number } = { } ) {
let finished = false ;
const timeout = opts . timeout ? ? 5000 ; // 5s
const timeStart = Date . now ( ) ;
while ( ! finished ) {
try {
await fn ( ) ;
finished = true ;
} catch {
if ( Date . now ( ) - timeStart >= timeout ) {
throw new Error ( "waitFor timed out" ) ;
}
await new Promise ( ( resolve ) = > setTimeout ( resolve , 0 ) ) ;
}
}
}
2022-03-08 22:40:31 +00:00
export async function selectFirstAvailableTimeSlotNextMonth ( page : Page ) {
2022-05-31 09:32:41 +00:00
// Let current month dates fully render.
// There is a bug where if we don't let current month fully render and quickly click go to next month, current month get's rendered
// This doesn't seem to be replicable with the speed of a person, only during automation.
// It would also allow correct snapshot to be taken for current month.
// eslint-disable-next-line playwright/no-wait-for-timeout
await page . waitForTimeout ( 1000 ) ;
2022-03-08 22:40:31 +00:00
await page . click ( '[data-testid="incrementMonth"]' ) ;
// @TODO: Find a better way to make test wait for full month change render to end
// so it can click up on the right day, also when resolve remove other todos
// Waiting for full month increment
2022-05-17 19:31:49 +00:00
// eslint-disable-next-line playwright/no-wait-for-timeout
2022-04-07 07:34:19 +00:00
await page . waitForTimeout ( 1000 ) ;
2022-04-06 17:20:30 +00:00
// TODO: Find out why the first day is always booked on tests
await page . locator ( '[data-testid="day"][data-disabled="false"]' ) . nth ( 1 ) . click ( ) ;
2023-06-10 03:47:50 +00:00
await page . locator ( '[data-testid="time"][data-disabled="false"]' ) . nth ( 0 ) . click ( ) ;
2022-03-08 22:40:31 +00:00
}
2022-03-24 17:32:28 +00:00
export async function selectSecondAvailableTimeSlotNextMonth ( page : Page ) {
2022-05-31 09:32:41 +00:00
// Let current month dates fully render.
// There is a bug where if we don't let current month fully render and quickly click go to next month, current month get's rendered
// This doesn't seem to be replicable with the speed of a person, only during automation.
// It would also allow correct snapshot to be taken for current month.
// eslint-disable-next-line playwright/no-wait-for-timeout
await page . waitForTimeout ( 1000 ) ;
2022-03-24 17:32:28 +00:00
await page . click ( '[data-testid="incrementMonth"]' ) ;
// @TODO: Find a better way to make test wait for full month change render to end
// so it can click up on the right day, also when resolve remove other todos
// Waiting for full month increment
2022-05-17 19:31:49 +00:00
// eslint-disable-next-line playwright/no-wait-for-timeout
2022-04-07 07:34:19 +00:00
await page . waitForTimeout ( 1000 ) ;
2022-04-06 17:20:30 +00:00
// TODO: Find out why the first day is always booked on tests
await page . locator ( '[data-testid="day"][data-disabled="false"]' ) . nth ( 1 ) . click ( ) ;
2023-06-10 03:47:50 +00:00
await page . locator ( '[data-testid="time"][data-disabled="false"]' ) . nth ( 1 ) . click ( ) ;
2022-03-24 17:32:28 +00:00
}
2022-04-06 15:13:09 +00:00
2022-10-27 09:34:34 +00:00
async function bookEventOnThisPage ( page : Page ) {
2022-04-06 17:20:30 +00:00
await selectFirstAvailableTimeSlotNextMonth ( page ) ;
2022-05-11 22:39:45 +00:00
await bookTimeSlot ( page ) ;
2022-04-06 17:20:30 +00:00
// Make sure we're navigated to the success page
2023-05-02 16:58:39 +00:00
await page . waitForURL ( ( url ) = > {
return url . pathname . startsWith ( "/booking" ) ;
2022-05-11 22:55:30 +00:00
} ) ;
2022-05-11 16:46:52 +00:00
await expect ( page . locator ( "[data-testid=success-page]" ) ) . toBeVisible ( ) ;
2022-04-06 17:20:30 +00:00
}
2022-10-27 09:34:34 +00:00
export async function bookOptinEvent ( page : Page ) {
await page . locator ( '[data-testid="event-type-link"]:has-text("Opt in")' ) . click ( ) ;
await bookEventOnThisPage ( page ) ;
}
export async function bookFirstEvent ( page : Page ) {
// Click first event type
await page . click ( '[data-testid="event-type-link"]' ) ;
await bookEventOnThisPage ( page ) ;
}
2023-03-14 04:19:05 +00:00
export const bookTimeSlot = async ( page : Page , opts ? : { name? : string ; email? : string } ) = > {
2022-04-06 17:20:30 +00:00
// --- fill form
2023-05-22 23:15:06 +00:00
await page . fill ( '[name="name"]' , opts ? . name ? ? testName ) ;
await page . fill ( '[name="email"]' , opts ? . email ? ? testEmail ) ;
2022-04-06 17:20:30 +00:00
await page . press ( '[name="email"]' , "Enter" ) ;
} ;
2022-04-06 15:13:09 +00:00
// Provide an standalone localize utility not managed by next-i18n
export async function localize ( locale : string ) {
const localeModule = ` ../../public/static/locales/ ${ locale } /common.json ` ;
const localeMap = await import ( localeModule ) ;
return ( message : string ) = > {
if ( message in localeMap ) return localeMap [ message ] ;
throw "No locale found for the given entry message" ;
} ;
}
2023-03-14 04:19:05 +00:00
export const createNewEventType = async ( page : Page , args : { eventTitle : string } ) = > {
await page . click ( "[data-testid=new-event-type]" ) ;
const eventTitle = args . eventTitle ;
await page . fill ( "[name=title]" , eventTitle ) ;
await page . fill ( "[name=length]" , "10" ) ;
await page . click ( "[type=submit]" ) ;
2023-05-02 16:58:39 +00:00
await page . waitForURL ( ( url ) = > {
return url . pathname !== "/event-types" ;
2023-03-14 04:19:05 +00:00
} ) ;
} ;
export const createNewSeatedEventType = async ( page : Page , args : { eventTitle : string } ) = > {
const eventTitle = args . eventTitle ;
await createNewEventType ( page , { eventTitle } ) ;
await page . locator ( '[data-testid="vertical-tab-event_advanced_tab_title"]' ) . click ( ) ;
await page . locator ( '[data-testid="offer-seats-toggle"]' ) . click ( ) ;
await page . locator ( '[data-testid="update-eventtype"]' ) . click ( ) ;
} ;
2023-06-13 15:22:19 +00:00
export async function gotoRoutingLink ( {
page ,
formId ,
queryString = "" ,
} : {
page : Page ;
formId? : string ;
queryString? : string ;
} ) {
let previewLink = null ;
if ( ! formId ) {
// Instead of clicking on the preview link, we are going to the preview link directly because the earlier opens a new tab which is a bit difficult to manage with Playwright
const href = await page . locator ( '[data-testid="form-action-preview"]' ) . getAttribute ( "href" ) ;
if ( ! href ) {
throw new Error ( "Preview link not found" ) ;
}
previewLink = href ;
} else {
previewLink = ` /forms/ ${ formId } ` ;
}
await page . goto ( ` ${ previewLink } ${ queryString ? ` ? ${ queryString } ` : "" } ` ) ;
// HACK: There seems to be some issue with the inputs to the form getting reset if we don't wait.
2023-06-15 08:58:07 +00:00
await new Promise ( ( resolve ) = > setTimeout ( resolve , 1000 ) ) ;
2023-06-13 15:22:19 +00:00
}