mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
29acc92559
* add import routes and modal * fix paths * fix paths * save * remove import.ts * ui * save * fix tests * fix tests * fix tests * remove outdated test * update import tests * lint and ts fixes * add section title and fix some style issues * close modals on import success * error handling for empty content * fix api spec imports * Simplify importResources function Co-authored-by: Filipe Freire <filipe.r.freire@gmail.com> * cleanup * settings import button styles * remove comment * update tests * comment for app-command imports * fix test lint error * update comments * comment out app/import for now --------- Co-authored-by: Filipe Freire <filipe.r.freire@gmail.com>
79 lines
3.6 KiB
TypeScript
79 lines
3.6 KiB
TypeScript
import { expect } from '@playwright/test';
|
|
|
|
import { loadFixture } from '../../playwright/paths';
|
|
import { test } from '../../playwright/test';
|
|
|
|
test('can render schema and send GraphQL requests', async ({ app, page }) => {
|
|
test.slow(process.platform === 'darwin' || process.platform === 'win32', 'Slow app start on these platforms');
|
|
|
|
// Create a new the project
|
|
await page.getByTestId('project').click();
|
|
await page.getByRole('button', { name: 'Create' }).click();
|
|
|
|
// Copy the collection with the graphql query to clipboard
|
|
const text = await loadFixture('graphql.yaml');
|
|
await app.evaluate(async ({ clipboard }, text) => clipboard.writeText(text), text);
|
|
|
|
// Import from clipboard
|
|
await page.getByRole('menuitem', { name: 'Import' }).click();
|
|
await page.getByText('Clipboard').click();
|
|
await page.getByRole('button', { name: 'Scan' }).click();
|
|
await page.getByRole('button', { name: 'Import' }).click();
|
|
|
|
await page.getByRole('link', { name: 'Debug' }).click();
|
|
// Open the graphql request
|
|
await page.getByRole('button', { name: 'GraphQL request' }).click();
|
|
// Assert the schema is fetched after switching to GraphQL request
|
|
await expect(page.locator('.app')).toContainText('schema fetched just now');
|
|
|
|
// Assert schema documentation stuff
|
|
await page.getByRole('button', { name: 'schema' }).click();
|
|
await page.getByRole('menuitem', { name: 'Show Documentation' }).click();
|
|
await page.click('a:has-text("Query")');
|
|
await page.locator('a:has-text("RingBearer")').click();
|
|
const graphqlExplorer = page.locator('.graphql-explorer');
|
|
await expect(graphqlExplorer).toContainText('Characters who at any time bore a Ring of Power.');
|
|
await page.click('text=QueryRingBearer >> button');
|
|
|
|
// Send and assert GraphQL request
|
|
await page.click('[data-testid="request-pane"] >> text=Send');
|
|
const statusTag = page.locator('[data-testid="response-status-tag"]:visible');
|
|
await expect(statusTag).toContainText('200 OK');
|
|
|
|
const responseBody = page.locator('[data-testid="response-pane"] >> [data-testid="CodeEditor"]:visible', {
|
|
has: page.locator('.CodeMirror-activeline'),
|
|
});
|
|
await expect(responseBody).toContainText('"bearer": "Gandalf"');
|
|
});
|
|
|
|
test('can send GraphQL requests after editing and prettifying query', async ({ app, page }) => {
|
|
test.slow(process.platform === 'darwin' || process.platform === 'win32', 'Slow app start on these platforms');
|
|
|
|
// Create a new the project
|
|
await page.getByTestId('project').click();
|
|
await page.getByRole('button', { name: 'Create' }).click();
|
|
|
|
const text = await loadFixture('graphql.yaml');
|
|
await app.evaluate(async ({ clipboard }, text) => clipboard.writeText(text), text);
|
|
await page.getByRole('menuitem', { name: 'Import' }).click();
|
|
await page.getByText('Clipboard').click();
|
|
await page.getByRole('button', { name: 'Scan' }).click();
|
|
await page.getByRole('button', { name: 'Import' }).click();
|
|
|
|
await page.getByRole('link', { name: 'Debug' }).click();
|
|
await page.getByRole('button', { name: 'GraphQL request' }).click();
|
|
|
|
// Edit and prettify query
|
|
await page.locator('pre[role="presentation"]:has-text("hello,")').click();
|
|
await page.locator('.app').press('Enter');
|
|
await page.locator('text=Prettify GraphQL').click();
|
|
await page.click('[data-testid="request-pane"] >> text=Send');
|
|
const statusTag = page.locator('[data-testid="response-status-tag"]:visible');
|
|
await expect(statusTag).toContainText('200 OK');
|
|
|
|
const responseBody = page.locator('[data-testid="response-pane"] >> [data-testid="CodeEditor"]:visible', {
|
|
has: page.locator('.CodeMirror-activeline'),
|
|
});
|
|
await expect(responseBody).toContainText('"bearer": "Gandalf"');
|
|
});
|