mirror of
https://github.com/inventree/InvenTree.git
synced 2026-07-06 07:00:39 +00:00
9908870a81
* realign user API endpoints to make it clearer which one are only applicable to the current user * fix name * bump api * fix test * fix reference * fix test exception * update ref * reduce breakage * re-add legacy urls till next `breaking`
96 lines
3.1 KiB
TypeScript
96 lines
3.1 KiB
TypeScript
import * as crypto from 'node:crypto';
|
|
import * as fs from 'node:fs';
|
|
import os from 'node:os';
|
|
import * as path from 'node:path';
|
|
import { test as baseTest } from '@playwright/test';
|
|
|
|
const istanbulCLIOutput = path.join(process.cwd(), '.nyc_output');
|
|
const platform = os.platform();
|
|
let systemKeyVar: string;
|
|
if (platform === 'darwin') {
|
|
systemKeyVar = 'Meta';
|
|
} else {
|
|
systemKeyVar = 'Control';
|
|
}
|
|
/* metaKey is the local action key (used for spotlight for example) */
|
|
export const systemKey = systemKeyVar;
|
|
|
|
export function generateUUID(): string {
|
|
return crypto.randomBytes(16).toString('hex');
|
|
}
|
|
|
|
export const test = baseTest.extend({
|
|
context: async ({ context }, use) => {
|
|
await context.addInitScript(() =>
|
|
window.addEventListener('beforeunload', () =>
|
|
(window as any).collectIstanbulCoverage(
|
|
JSON.stringify((window as any).__coverage__)
|
|
)
|
|
)
|
|
);
|
|
await fs.promises.mkdir(istanbulCLIOutput, { recursive: true });
|
|
await context.exposeFunction(
|
|
'collectIstanbulCoverage',
|
|
(coverageJSON: string) => {
|
|
if (coverageJSON)
|
|
fs.writeFileSync(
|
|
path.join(
|
|
istanbulCLIOutput,
|
|
`playwright_coverage_${generateUUID()}.json`
|
|
),
|
|
coverageJSON
|
|
);
|
|
}
|
|
);
|
|
await use(context);
|
|
for (const page of context.pages()) {
|
|
await page.evaluate(() =>
|
|
(window as any).collectIstanbulCoverage(
|
|
JSON.stringify((window as any).__coverage__)
|
|
)
|
|
);
|
|
}
|
|
},
|
|
// Ensure no errors are thrown in the console
|
|
page: async ({ page }, use) => {
|
|
const messages = [];
|
|
page.on('console', (msg) => {
|
|
const url = msg.location().url;
|
|
if (
|
|
msg.type() === 'error' &&
|
|
!msg.text().startsWith('ERR: ') &&
|
|
msg.text().indexOf('downloadable font: download failed') < 0 &&
|
|
msg
|
|
.text()
|
|
.indexOf(
|
|
'Support for defaultProps will be removed from function components in a future major release'
|
|
) < 0 &&
|
|
msg.text() !=
|
|
'Failed to load resource: the server responded with a status of 400 (Bad Request)' &&
|
|
!msg.text().includes('/this/does/not/exist.js') &&
|
|
!url.includes('/this/does/not/exist.js') &&
|
|
!url.includes('/api/user/me/') &&
|
|
!url.includes('/api/user/me/token/') &&
|
|
!url.includes('/api/auth/v1/auth/login') &&
|
|
!url.includes('/api/auth/v1/auth/session') &&
|
|
!url.includes('/api/auth/v1/account/authenticators/totp') &&
|
|
!url.includes('/api/auth/v1/account/password/change') &&
|
|
!url.includes('/api/barcode/') &&
|
|
!url.includes('/favicon.ico') &&
|
|
!url.startsWith('https://api.github.com/repos/inventree') &&
|
|
!url.startsWith('https://github.com/inventree/demo-data') &&
|
|
!url.includes('/api/news/') &&
|
|
!url.includes('/api/notifications/') &&
|
|
!url.startsWith('chrome://') &&
|
|
url != 'https://docs.inventree.org/en/versions.json' &&
|
|
url.indexOf('99999') < 0
|
|
)
|
|
messages.push(msg);
|
|
});
|
|
await use(page);
|
|
expect(messages).toEqual([]);
|
|
}
|
|
});
|
|
|
|
export const expect = test.expect;
|