68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
import test, { expect } from '@playwright/test'
|
|
import { createId } from '@paralleldrive/cuid2'
|
|
import { HttpMethod } from '@typebot.io/schemas/features/blocks/integrations/webhook/enums'
|
|
import {
|
|
createWebhook,
|
|
importTypebotInDatabase,
|
|
} from '@typebot.io/lib/playwright/databaseActions'
|
|
import { getTestAsset } from '@/test/utils/playwright'
|
|
|
|
const typebotId = createId()
|
|
|
|
test.beforeEach(async () => {
|
|
await importTypebotInDatabase(getTestAsset('typebots/webhook.json'), {
|
|
id: typebotId,
|
|
publicId: `${typebotId}-public`,
|
|
})
|
|
|
|
try {
|
|
await createWebhook(typebotId, {
|
|
id: 'failing-webhook',
|
|
url: 'http://localhost:3001/api/mock/fail',
|
|
method: HttpMethod.POST,
|
|
})
|
|
|
|
await createWebhook(typebotId, {
|
|
id: 'partial-body-webhook',
|
|
url: 'http://localhost:3000/api/mock/webhook-easy-config',
|
|
method: HttpMethod.POST,
|
|
body: `{
|
|
"name": "{{Name}}",
|
|
"age": {{Age}},
|
|
"gender": "{{Gender}}"
|
|
}`,
|
|
})
|
|
|
|
await createWebhook(typebotId, {
|
|
id: 'full-body-webhook',
|
|
url: 'http://localhost:3000/api/mock/webhook-easy-config',
|
|
method: HttpMethod.POST,
|
|
body: `{{Full body}}`,
|
|
})
|
|
} catch (err) {
|
|
console.log(err)
|
|
}
|
|
})
|
|
|
|
test('should execute webhooks properly', async ({ page }) => {
|
|
await page.goto(`/${typebotId}-public`)
|
|
await page.locator('text=Send failing webhook').click()
|
|
await page.locator('[placeholder="Type a name..."]').fill('John')
|
|
await page.locator('text="Send"').click()
|
|
await page.locator('[placeholder="Type an age..."]').fill('30')
|
|
await page.locator('text="Send"').click()
|
|
await page.locator('text="Male"').click()
|
|
await expect(
|
|
page.getByText('{"name":"John","age":25,"gender":"male"}')
|
|
).toBeVisible()
|
|
await expect(
|
|
page.getByText('{"name":"John","age":30,"gender":"Male"}')
|
|
).toBeVisible()
|
|
await page.goto(`http://localhost:3000/typebots/${typebotId}/results`)
|
|
await page.click('text="See logs"')
|
|
await expect(
|
|
page.locator('text="Webhook successfuly executed." >> nth=1')
|
|
).toBeVisible()
|
|
await expect(page.locator('text="Webhook returned an error."')).toBeVisible()
|
|
})
|