2020-09-24 19:23:23 +00:00
|
|
|
import * as debug from '../modules/debug';
|
|
|
|
import * as client from '../modules/client';
|
2020-09-24 19:55:27 +00:00
|
|
|
import { launchCore, stop } from '../modules/application';
|
2020-12-04 21:47:04 +00:00
|
|
|
import * as dropdown from '../modules/dropdown';
|
|
|
|
import * as settings from '../modules/settings';
|
|
|
|
import fs from 'fs';
|
2020-12-07 20:12:50 +00:00
|
|
|
import { basicAuthCreds } from '../fixtures/constants';
|
2020-08-20 20:08:47 +00:00
|
|
|
|
|
|
|
describe('Application launch', function() {
|
|
|
|
jest.setTimeout(50000);
|
|
|
|
let app = null;
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
2020-09-24 19:55:27 +00:00
|
|
|
app = await launchCore();
|
2020-08-20 20:08:47 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(async () => {
|
2020-09-24 19:55:27 +00:00
|
|
|
await stop(app);
|
2020-08-20 20:08:47 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('shows an initial window', async () => {
|
2020-08-24 22:49:29 +00:00
|
|
|
await client.correctlyLaunched(app);
|
|
|
|
await debug.workspaceDropdownExists(app);
|
2020-08-20 20:08:47 +00:00
|
|
|
});
|
|
|
|
|
2020-09-23 22:49:25 +00:00
|
|
|
it('sends JSON request', async () => {
|
|
|
|
const url = 'http://127.0.0.1:4010/pets/1';
|
2020-08-24 22:13:29 +00:00
|
|
|
|
2020-09-23 22:49:25 +00:00
|
|
|
await debug.workspaceDropdownExists(app);
|
|
|
|
await debug.createNewRequest(app, 'json');
|
|
|
|
await debug.typeInUrlBar(app, url);
|
2020-09-17 18:05:53 +00:00
|
|
|
await debug.clickSendRequest(app);
|
2020-08-24 22:13:29 +00:00
|
|
|
|
2020-09-17 18:05:53 +00:00
|
|
|
await debug.expect200(app);
|
|
|
|
});
|
2020-08-24 22:13:29 +00:00
|
|
|
|
2020-12-04 21:47:04 +00:00
|
|
|
it.each([true, false])(
|
|
|
|
'imports swagger 2 and sends request: new workspace=%s ',
|
|
|
|
async newWorkspace => {
|
|
|
|
await debug.workspaceDropdownExists(app);
|
|
|
|
|
|
|
|
// Copy text to clipboard
|
|
|
|
const buffer = await fs.promises.readFile(`${__dirname}/../fixtures/swagger2.yaml`);
|
|
|
|
const swagger2Text = buffer.toString();
|
|
|
|
await app.electron.clipboard.writeText(swagger2Text);
|
|
|
|
|
|
|
|
// Click dropdown and open import modal
|
|
|
|
const workspaceDropdown = await debug.clickWorkspaceDropdown(app);
|
|
|
|
await dropdown.clickDropdownItemByText(workspaceDropdown, 'Import/Export');
|
|
|
|
|
|
|
|
// Import from clipboard into new/current workspace
|
|
|
|
await settings.importFromClipboard(app, newWorkspace);
|
|
|
|
|
|
|
|
// Click imported folder and request
|
|
|
|
await debug.clickFolderByName(app, 'custom-tag');
|
|
|
|
await debug.clickRequestByName(app, 'get pet by id');
|
|
|
|
|
|
|
|
// Click send
|
|
|
|
await debug.clickSendRequest(app);
|
|
|
|
|
|
|
|
// Ensure 200
|
|
|
|
await debug.expect200(app);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2020-09-17 18:05:53 +00:00
|
|
|
it('sends CSV request and shows rich response', async () => {
|
2020-12-17 00:10:01 +00:00
|
|
|
const url = 'http://127.0.0.1:4010/file/dummy.csv';
|
2020-09-23 22:49:25 +00:00
|
|
|
|
2020-09-17 18:05:53 +00:00
|
|
|
await debug.workspaceDropdownExists(app);
|
2020-09-23 22:49:25 +00:00
|
|
|
await debug.createNewRequest(app, 'csv');
|
|
|
|
await debug.typeInUrlBar(app, url);
|
2020-09-17 18:05:53 +00:00
|
|
|
await debug.clickSendRequest(app);
|
2020-08-24 22:13:29 +00:00
|
|
|
|
2020-09-17 18:05:53 +00:00
|
|
|
await debug.expect200(app);
|
|
|
|
const csvViewer = await debug.getCsvViewer(app);
|
|
|
|
await expect(csvViewer.getText()).resolves.toBe('a b c\n1 2 3');
|
2020-08-24 22:13:29 +00:00
|
|
|
});
|
2020-09-21 08:45:36 +00:00
|
|
|
|
|
|
|
it('sends PDF request and shows rich response', async () => {
|
2020-12-17 00:10:01 +00:00
|
|
|
const url = 'http://127.0.0.1:4010/file/dummy.pdf';
|
2020-09-23 22:49:25 +00:00
|
|
|
|
2020-09-21 08:45:36 +00:00
|
|
|
await debug.workspaceDropdownExists(app);
|
2020-09-23 22:49:25 +00:00
|
|
|
await debug.createNewRequest(app, 'pdf');
|
|
|
|
await debug.typeInUrlBar(app, url);
|
2020-09-21 08:45:36 +00:00
|
|
|
await debug.clickSendRequest(app);
|
|
|
|
|
|
|
|
await debug.expect200(app);
|
|
|
|
const pdfCanvas = await debug.getPdfCanvas(app);
|
|
|
|
// Investigate how we can extract text from the canvas, or compare images
|
|
|
|
await expect(pdfCanvas.isExisting()).resolves.toBe(true);
|
|
|
|
});
|
2020-12-07 20:12:50 +00:00
|
|
|
|
|
|
|
// This test will ensure that for an endpoint which expects basic auth:
|
|
|
|
// 1. sending no basic auth will fail
|
|
|
|
// 2. sending basic auth will succeed
|
|
|
|
// 3. sending basic auth with special characters encoded with IS0-8859-1 will succeed
|
|
|
|
// 4. sending while basic auth is disabled within insomnnia will fail
|
|
|
|
|
|
|
|
it('sends request with basic authentication', async () => {
|
|
|
|
const url = 'http://127.0.0.1:4010/auth/basic';
|
|
|
|
const { latin1, utf8 } = basicAuthCreds;
|
|
|
|
|
|
|
|
await debug.workspaceDropdownExists(app);
|
|
|
|
await debug.createNewRequest(app, 'basic-auth');
|
|
|
|
await debug.typeInUrlBar(app, url);
|
|
|
|
|
|
|
|
// Send request with no auth present
|
|
|
|
await debug.clickSendRequest(app);
|
|
|
|
await debug.expect401(app);
|
|
|
|
|
|
|
|
// Click auth tab
|
|
|
|
await debug.clickRequestAuthTab(app);
|
|
|
|
await debug.expectNoAuthSelected(app);
|
|
|
|
|
|
|
|
// Select basic auth
|
|
|
|
await debug.clickRequestAuthDropdown(app);
|
|
|
|
await debug.clickBasicAuth(app);
|
|
|
|
|
|
|
|
// Enter username and password with regular characters
|
|
|
|
await debug.typeBasicAuthUsernameAndPassword(app, utf8.raw.user, utf8.raw.pass);
|
|
|
|
|
|
|
|
// Send request with auth present
|
|
|
|
await debug.clickSendRequest(app);
|
|
|
|
await debug.expect200(app);
|
|
|
|
|
|
|
|
const responseViewer = await debug.getResponseViewer(app);
|
|
|
|
await debug.expectText(responseViewer, '1\nbasic auth received');
|
|
|
|
|
|
|
|
// Check auth header in timeline
|
|
|
|
await debug.clickTimelineTab(app);
|
|
|
|
|
|
|
|
await debug.expectContainsText(
|
|
|
|
await debug.getTimelineViewer(app),
|
|
|
|
`> Authorization: Basic ${utf8.combined}`,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Clear inputs and type username/password with special characters
|
|
|
|
await debug.typeBasicAuthUsernameAndPassword(app, latin1.raw.user, latin1.raw.pass, true);
|
|
|
|
|
|
|
|
// Toggle basic auth and encoding enabled
|
|
|
|
await debug.toggleBasicAuthEncoding(app);
|
|
|
|
|
|
|
|
// Send request
|
|
|
|
await debug.clickSendRequest(app);
|
|
|
|
await debug.expect200(app);
|
|
|
|
|
|
|
|
await debug.expectContainsText(
|
|
|
|
await debug.getTimelineViewer(app),
|
|
|
|
`> Authorization: Basic ${latin1.combined}`,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Toggle basic auth to disabled
|
|
|
|
await debug.toggleBasicAuthEnabled(app);
|
|
|
|
|
|
|
|
// Send request
|
|
|
|
await debug.clickSendRequest(app);
|
|
|
|
await debug.expect401(app);
|
|
|
|
|
|
|
|
await debug.expectNotContainsText(await debug.getTimelineViewer(app), '> Authorization: Basic');
|
|
|
|
});
|
2020-08-20 20:08:47 +00:00
|
|
|
});
|