insomnia/packages/insomnia-smoke-test/tests/critical/certificates.test.ts

39 lines
1.7 KiB
TypeScript

import path from 'node:path';
import { getFixturePath, loadFixture } from '../../playwright/paths';
import { test } from '../../playwright/test';
test('can send request with custom ca root certificate', async ({ app, page }) => {
const text = await loadFixture('smoke-test-collection.yaml');
await app.evaluate(async ({ clipboard }, text) => clipboard.writeText(text), text);
await page.getByRole('button', { name: 'Create in project' }).click();
await page.getByRole('menuitemradio', { name: 'Import' }).click();
await page.locator('[data-test-id="import-from-clipboard"]').click();
await page.getByRole('button', { name: 'Scan' }).click();
await page.getByRole('dialog').getByRole('button', { name: 'Import' }).click();
await page.getByLabel('Smoke tests').click();
await page.getByLabel('Request Collection').getByTestId('sends request with certs').press('Enter');
await page.getByRole('button', { name: 'Send', exact: true }).click();
await page.getByText('Error: SSL peer certificate or SSH remote key was not OK').click();
const fixturePath = getFixturePath('certificates');
await page.getByRole('button', { name: 'Add Certificates' }).click();
const fileChooserPromise = page.waitForEvent('filechooser');
await page.getByRole('button', { name: 'Add CA Certificate' }).click();
const fileChooser = await fileChooserPromise;
await fileChooser.setFiles(path.join(fixturePath, 'rootCA.pem'));
await page.getByRole('button', { name: 'Done' }).click();
// test request with certs
await page.getByRole('button', { name: 'Send', exact: true }).click();
await page.getByText('200 OK').click();
await page.locator('pre').filter({ hasText: '"id": "1"' }).click();
});