71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
/*
|
|
* @version: V1.0.0
|
|
* @Date: 2023-12-26 13:54:59
|
|
* @LastEditors: lzq
|
|
* @LastEditTime: 2023-12-26 14:10:35
|
|
* @company: 睿展数据
|
|
* @FilePath: \salpa-web\src\e2e\baseLayout.e2e.js
|
|
* @Descripttion:
|
|
*/
|
|
const { uniq } = require('lodash');
|
|
const RouterConfig = require('../../config/config').default.routes;
|
|
|
|
const BASE_URL = `http://localhost:${process.env.PORT || 8000}`;
|
|
|
|
function formatter(routes, parentPath = '') {
|
|
const fixedParentPath = parentPath.replace(/\/{1,}/g, '/');
|
|
let result = [];
|
|
routes.forEach((item) => {
|
|
if (item.path && !item.path.startsWith('/')) {
|
|
result.push(`${fixedParentPath}/${item.path}`.replace(/\/{1,}/g, '/'));
|
|
}
|
|
if (item.path && item.path.startsWith('/')) {
|
|
result.push(`${item.path}`.replace(/\/{1,}/g, '/'));
|
|
}
|
|
if (item.routes) {
|
|
result = result.concat(
|
|
formatter(item.routes, item.path ? `${fixedParentPath}/${item.path}` : parentPath),
|
|
);
|
|
}
|
|
});
|
|
return uniq(result.filter((item) => !!item));
|
|
}
|
|
|
|
beforeEach(async () => {
|
|
await page.goto(`${BASE_URL}`);
|
|
await page.evaluate(() => {
|
|
localStorage.setItem('antd-pro-authority', '["admin"]');
|
|
});
|
|
});
|
|
|
|
describe('Ant Design Pro E2E test', () => {
|
|
const testPage = (path) => async () => {
|
|
await page.goto(`${BASE_URL}${path}`);
|
|
await page.waitForSelector('footer', {
|
|
timeout: 2000,
|
|
});
|
|
const haveFooter = await page.evaluate(
|
|
() => document.getElementsByTagName('footer').length > 0,
|
|
);
|
|
expect(haveFooter).toBeTruthy();
|
|
};
|
|
|
|
const routers = formatter(RouterConfig);
|
|
routers.forEach((route) => {
|
|
it(`test pages ${route}`, testPage(route));
|
|
});
|
|
|
|
it('topmenu should have footer', async () => {
|
|
const params = '?navTheme=light&layout=topmenu';
|
|
await page.goto(`${BASE_URL}${params}`);
|
|
await page.waitForSelector('footer', {
|
|
timeout: 2000,
|
|
});
|
|
|
|
const haveFooter = await page.evaluate(
|
|
() => document.getElementsByTagName('footer').length > 0,
|
|
);
|
|
expect(haveFooter).toBeTruthy();
|
|
});
|
|
});
|