2022-03-07 18:21:01 +01:00
|
|
|
import test, { expect } from '@playwright/test'
|
2022-03-18 12:30:42 +01:00
|
|
|
import cuid from 'cuid'
|
2022-06-11 07:27:38 +02:00
|
|
|
import {
|
|
|
|
defaultSettings,
|
|
|
|
defaultTextInputOptions,
|
|
|
|
InputBlockType,
|
2022-11-15 10:28:03 +01:00
|
|
|
Metadata,
|
2022-06-11 07:27:38 +02:00
|
|
|
} from 'models'
|
2022-10-06 08:33:46 +02:00
|
|
|
import { createTypebots, updateTypebot } from 'utils/playwright/databaseActions'
|
|
|
|
import { parseDefaultGroupWithBlock } from 'utils/playwright/databaseHelpers'
|
2022-11-15 10:28:03 +01:00
|
|
|
import { typebotViewer } from 'utils/playwright/testHelpers'
|
2022-03-07 18:21:01 +01:00
|
|
|
|
|
|
|
test('Result should be in storage by default', async ({ page }) => {
|
2022-03-18 12:30:42 +01:00
|
|
|
const typebotId = cuid()
|
2022-03-07 18:21:01 +01:00
|
|
|
await createTypebots([
|
|
|
|
{
|
|
|
|
id: typebotId,
|
2022-06-11 07:27:38 +02:00
|
|
|
...parseDefaultGroupWithBlock({
|
|
|
|
type: InputBlockType.TEXT,
|
2022-03-07 18:21:01 +01:00
|
|
|
options: defaultTextInputOptions,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
])
|
2022-03-21 17:05:51 +01:00
|
|
|
await Promise.all([
|
|
|
|
page.goto(`/${typebotId}-public`),
|
|
|
|
page.waitForResponse(
|
|
|
|
(resp) =>
|
|
|
|
resp.request().url().includes(`/api/typebots/${typebotId}/results`) &&
|
|
|
|
resp.status() === 200 &&
|
|
|
|
resp.request().method() === 'POST'
|
|
|
|
),
|
|
|
|
])
|
2022-03-07 18:21:01 +01:00
|
|
|
await page.reload()
|
|
|
|
const resultId = await page.evaluate(() => sessionStorage.getItem('resultId'))
|
|
|
|
expect(resultId).toBeDefined()
|
|
|
|
})
|
|
|
|
|
|
|
|
test.describe('Create result on page refresh enabled', () => {
|
|
|
|
test('should work', async ({ page }) => {
|
2022-03-18 12:30:42 +01:00
|
|
|
const typebotId = cuid()
|
2022-03-07 18:21:01 +01:00
|
|
|
await createTypebots([
|
|
|
|
{
|
|
|
|
id: typebotId,
|
|
|
|
settings: {
|
|
|
|
...defaultSettings,
|
|
|
|
general: {
|
|
|
|
...defaultSettings.general,
|
|
|
|
isNewResultOnRefreshEnabled: true,
|
|
|
|
},
|
|
|
|
},
|
2022-06-11 07:27:38 +02:00
|
|
|
...parseDefaultGroupWithBlock({
|
|
|
|
type: InputBlockType.TEXT,
|
2022-03-07 18:21:01 +01:00
|
|
|
options: defaultTextInputOptions,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
])
|
2022-03-21 17:05:51 +01:00
|
|
|
await Promise.all([
|
|
|
|
page.goto(`/${typebotId}-public`),
|
|
|
|
page.waitForResponse(
|
|
|
|
(resp) =>
|
|
|
|
resp.request().url().includes(`/api/typebots/${typebotId}/results`) &&
|
|
|
|
resp.status() === 200 &&
|
|
|
|
resp.request().method() === 'POST'
|
|
|
|
),
|
|
|
|
])
|
|
|
|
await Promise.all([
|
|
|
|
page.reload(),
|
|
|
|
page.waitForResponse(
|
|
|
|
(resp) =>
|
|
|
|
resp.request().url().includes(`/api/typebots/${typebotId}/results`) &&
|
|
|
|
resp.status() === 200 &&
|
|
|
|
resp.request().method() === 'POST'
|
|
|
|
),
|
|
|
|
])
|
2022-03-07 18:21:01 +01:00
|
|
|
const resultId = await page.evaluate(() =>
|
|
|
|
sessionStorage.getItem('resultId')
|
|
|
|
)
|
|
|
|
expect(resultId).toBe(null)
|
|
|
|
})
|
|
|
|
})
|
2022-05-14 11:53:59 -07:00
|
|
|
|
|
|
|
test('Hide query params', async ({ page }) => {
|
|
|
|
const typebotId = cuid()
|
|
|
|
await createTypebots([
|
|
|
|
{
|
|
|
|
id: typebotId,
|
2022-06-11 07:27:38 +02:00
|
|
|
...parseDefaultGroupWithBlock({
|
|
|
|
type: InputBlockType.TEXT,
|
2022-05-14 11:53:59 -07:00
|
|
|
options: defaultTextInputOptions,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
])
|
|
|
|
await page.goto(`/${typebotId}-public?Name=John`)
|
|
|
|
await page.waitForTimeout(1000)
|
|
|
|
expect(page.url()).toEqual(`http://localhost:3001/${typebotId}-public`)
|
|
|
|
await updateTypebot({
|
|
|
|
id: typebotId,
|
|
|
|
settings: {
|
|
|
|
...defaultSettings,
|
|
|
|
general: { ...defaultSettings.general, isHideQueryParamsEnabled: false },
|
|
|
|
},
|
|
|
|
})
|
|
|
|
await page.goto(`/${typebotId}-public?Name=John`)
|
|
|
|
await page.waitForTimeout(1000)
|
|
|
|
expect(page.url()).toEqual(
|
|
|
|
`http://localhost:3001/${typebotId}-public?Name=John`
|
|
|
|
)
|
|
|
|
})
|
2022-10-06 08:33:46 +02:00
|
|
|
|
|
|
|
test('Show close message', async ({ page }) => {
|
|
|
|
const typebotId = cuid()
|
|
|
|
await createTypebots([
|
|
|
|
{
|
|
|
|
id: typebotId,
|
|
|
|
...parseDefaultGroupWithBlock({
|
|
|
|
type: InputBlockType.TEXT,
|
|
|
|
options: defaultTextInputOptions,
|
|
|
|
}),
|
|
|
|
isClosed: true,
|
|
|
|
},
|
|
|
|
])
|
|
|
|
await page.goto(`/${typebotId}-public`)
|
|
|
|
await expect(page.locator('text=This bot is now closed')).toBeVisible()
|
|
|
|
})
|
2022-11-15 10:28:03 +01:00
|
|
|
|
|
|
|
test('Should correctly parse metadata', async ({ page }) => {
|
|
|
|
const typebotId = cuid()
|
|
|
|
const customMetadata: Metadata = {
|
|
|
|
description: 'My custom description',
|
|
|
|
title: 'Custom title',
|
|
|
|
favIconUrl: 'https://www.baptistearno.com/favicon.png',
|
|
|
|
imageUrl: 'https://www.baptistearno.com/images/site-preview.png',
|
|
|
|
customHeadCode: '<meta name="author" content="John Doe">',
|
|
|
|
}
|
|
|
|
await createTypebots([
|
|
|
|
{
|
|
|
|
id: typebotId,
|
|
|
|
settings: {
|
|
|
|
...defaultSettings,
|
|
|
|
metadata: customMetadata,
|
|
|
|
},
|
|
|
|
...parseDefaultGroupWithBlock({
|
|
|
|
type: InputBlockType.TEXT,
|
|
|
|
options: defaultTextInputOptions,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
])
|
|
|
|
await page.goto(`/${typebotId}-public`)
|
|
|
|
expect(
|
|
|
|
await page.evaluate(`document.querySelector('title').textContent`)
|
|
|
|
).toBe(customMetadata.title)
|
|
|
|
expect(
|
|
|
|
await page.evaluate(
|
|
|
|
() => (document.querySelector('meta[name="description"]') as any).content
|
|
|
|
)
|
|
|
|
).toBe(customMetadata.description)
|
|
|
|
expect(
|
|
|
|
await page.evaluate(
|
|
|
|
() => (document.querySelector('meta[property="og:image"]') as any).content
|
|
|
|
)
|
|
|
|
).toBe(customMetadata.imageUrl)
|
|
|
|
expect(
|
|
|
|
await page.evaluate(() =>
|
|
|
|
(document.querySelector('link[rel="icon"]') as any).getAttribute('href')
|
|
|
|
)
|
|
|
|
).toBe(customMetadata.favIconUrl)
|
|
|
|
expect(
|
|
|
|
await page.evaluate(
|
|
|
|
() => (document.querySelector('meta[name="author"]') as any).content
|
|
|
|
)
|
|
|
|
).toBe('John Doe')
|
|
|
|
await expect(
|
|
|
|
typebotViewer(page).locator(
|
|
|
|
`input[placeholder="${defaultTextInputOptions.labels.placeholder}"]`
|
|
|
|
)
|
|
|
|
).toBeVisible()
|
|
|
|
})
|