mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
557e5c0c6e
* project ui changes * project ui changes * create mock server model * model mock server similarly to design doc * use spec modelling and nav * layout pass * rename requestbin to mock-route * sidebar ui pass * load mock server * add url bar * can navigate to headers * Refactor mock server and mock route creation and retrieval * route crud * sidebar layout * add delete guuard * patch route * Add mock response tab to request pane * wire up mock servers in requests * Update mock server and route selection in RequestPane * make it work without internet * can create bin * pass body and headers to bin * can fetch logs but cant see em * split out response pane for hmr * basic table * extract mock url bar * add header tab * made a dumb cache * url bar pass * send request and create response * wire up timeline * wire up preview * timeline useeffect * move to action * fix types * empty states * rebase updating aria * use har type * can edit bins * cookie support * wire up status * status text * magic status text * ui * always use put rather than create bin * add url to mock route * scroll bar * add content types * validation * fix flake * improve logs * fix outlet warning * fix send to mock endpoint * switch table to grid * handle errors * rotate log * create mockbin on open if needed * add full url ux * reverse log order * binId from store * remove http method * rename prefix * use server Id for bin id * fix copy * show log har * fix url bar * fix button padding * tailwind * method select * remove default status text * full tailwind * fix breadcrumb * default to json * move copy to end, remove save * error msg * only patch when needed * fix ws colors * fix command palette * add isMock helper * revert local storage mechanism * fix redirect * fix ignore upsert * extract to constant * ui test * hide actions from mock-server * fix code editor onBlur * lift update to route * refactor to return only errors * add url to mock server model * select mock ui pass * can modify url in settings * use server url from db if selected * hide url option * fix lint error * extract to file * remove binResponse * can sync * move things around * rename name path sync * fix type check * capture kvp onBlur * fix error message * basic mock test * wire up mock patcher and navigate * rename component * remove url prop of route * fix lint * fix test * temporary skip e2e test * fix constant url * fix migration * remove console logs * rename function * only create a single hidden request --------- Co-authored-by: gatzjames <jamesgatzos@gmail.com>
106 lines
5.9 KiB
TypeScript
106 lines
5.9 KiB
TypeScript
import { expect } from '@playwright/test';
|
|
|
|
import { loadFixture } from '../../playwright/paths';
|
|
import { test } from '../../playwright/test';
|
|
|
|
test('can send requests', async ({ app, page }) => {
|
|
test.slow(process.platform === 'darwin' || process.platform === 'win32', 'Slow app start on these platforms');
|
|
const statusTag = page.locator('[data-testid="response-status-tag"]:visible');
|
|
const responseBody = page.locator('[data-testid="CodeEditor"]:visible', {
|
|
has: page.locator('.CodeMirror-activeline'),
|
|
});
|
|
|
|
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.getByRole('button', { name: 'Workspace actions menu button' }).click();
|
|
await page.getByRole('menuitem', { name: 'Export' }).click();
|
|
await page.getByRole('button', { name: 'Export' }).click();
|
|
await page.getByText('Which format would you like to export as?').click();
|
|
await page.locator('.app').press('Escape');
|
|
|
|
await page.getByText('CollectionSmoke testsjust now').click();
|
|
|
|
await page.getByLabel('Create in collection').click();
|
|
await page.getByRole('menuitemradio', { name: 'From Curl' }).click();
|
|
const curl = 'curl --request POST --url https://httpbin.org/status/200';
|
|
await page.locator('.CodeMirror textarea').fill(curl);
|
|
await page.getByRole('dialog').getByRole('button', { name: 'Import' }).click();
|
|
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Send' }).click();
|
|
await expect(statusTag).toContainText('200 OK');
|
|
|
|
await page.getByLabel('Request Collection').getByTestId('send JSON request').press('Enter');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Send' }).click();
|
|
await expect(statusTag).toContainText('200 OK');
|
|
await expect(responseBody).toContainText('"id": "1"');
|
|
await page.getByRole('button', { name: 'Preview' }).click();
|
|
await page.getByRole('menuitem', { name: 'Raw Data' }).click();
|
|
await expect(responseBody).toContainText('{"id":"1"}');
|
|
|
|
await page.getByLabel('Request Collection').getByTestId('connects to event stream and shows ping response').press('Enter');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Connect' }).click();
|
|
await expect(statusTag).toContainText('200 OK');
|
|
await page.getByRole('tab', { name: 'Timeline' }).click();
|
|
await expect(responseBody).toContainText('Connected to 127.0.0.1');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Disconnect' }).click();
|
|
|
|
await page.getByLabel('Request Collection').getByTestId('sends dummy.csv request and shows rich response').press('Enter');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Send' }).click();
|
|
await expect(statusTag).toContainText('200 OK');
|
|
await page.getByRole('button', { name: 'Preview' }).click();
|
|
await page.getByRole('menuitem', { name: 'Raw Data' }).click();
|
|
await expect(responseBody).toContainText('a,b,c');
|
|
|
|
await page.getByLabel('Request Collection').getByTestId('sends dummy.xml request and shows raw response').press('Enter');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Send' }).click();
|
|
await expect(statusTag).toContainText('200 OK');
|
|
await expect(responseBody).toContainText('xml version="1.0"');
|
|
await expect(responseBody).toContainText('<LoginResult>');
|
|
|
|
await page.getByLabel('Request Collection').getByTestId('sends dummy.pdf request and shows rich response').press('Enter');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Send' }).click();
|
|
await expect(statusTag).toContainText('200 OK');
|
|
// TODO(filipe): re-add a check for the preview that is less flaky
|
|
await page.getByRole('tab', { name: 'Timeline' }).click();
|
|
await page.locator('pre').filter({ hasText: '< Content-Type: application/pdf' }).click();
|
|
|
|
await page.getByLabel('Request Collection').getByTestId('sends request with basic authentication').press('Enter');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Send' }).click();
|
|
await expect(statusTag).toContainText('200 OK');
|
|
await expect(responseBody).toContainText('basic auth received');
|
|
|
|
await page.getByLabel('Request Collection').getByTestId('sends request with cookie and get cookie in response').press('Enter');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Send' }).click();
|
|
await expect(statusTag).toContainText('200 OK');
|
|
await page.getByRole('tab', { name: 'Timeline' }).click();
|
|
await expect(responseBody).toContainText('Set-Cookie: insomnia-test-cookie=value123');
|
|
});
|
|
|
|
// This feature is unsafe to place beside other tests, cancelling a request can cause network code to block
|
|
// related to https://linear.app/insomnia/issue/INS-973
|
|
test('can cancel requests', async ({ app, page }) => {
|
|
await page.getByRole('button', { name: 'Create in project' }).click();
|
|
|
|
const text = await loadFixture('smoke-test-collection.yaml');
|
|
await app.evaluate(async ({ clipboard }, text) => clipboard.writeText(text), text);
|
|
|
|
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.getByText('CollectionSmoke testsjust now').click();
|
|
|
|
await page.getByLabel('Request Collection').getByTestId('delayed request').press('Enter');
|
|
await page.getByTestId('request-pane').getByRole('button', { name: 'Send' }).click();
|
|
|
|
await page.getByRole('button', { name: 'Cancel Request' }).click();
|
|
await page.click('text=Request was cancelled');
|
|
});
|