mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:06:31 +00:00
a57c93d35b
* chore: upgrade vitest to v0.34.3 * feat: setup NocoBase * chore: preparing test env * test: add a test of rigster * refactor: rename test dir to testUtils * chore: add tests * chore: add ci for e2e * chore: fix ci * chore: avoid error in CI * chore: add some utils for test * chore: make more stable * chore: should not close server in CI * chore: add comments * chore: change output dir * fix: should use current branch to run tests * chore: should request systemSettings by api in e2e * chore: should build first in e2e CI * chore: remove key * chore: use execa to replace execSync * refactor: extract test suite * chore: add gotoPage * chore: update uid of pageSchema * chore: update collection name * chore: use faker.js to generate data * refactor: extract page config * chore: ignore for association fields in faker * chore: add testid * chore: optimize action designer * chore: associationFilter.Item designer * chore: AssiciationFilter & BlockItem * Revert "chore: AssiciationFilter & BlockItem" This reverts commitb418df650e
. * Revert "chore: associationFilter.Item designer" This reverts commit7aa4d35c1a
. * Revert "chore: optimize action designer" This reverts commitff717b972f
. * chore: optimize Designer * chore: compat with older browsers * chore: use describe to avoid hooks is not run * chore: add no-floating-promises to eslint rules * chore: support argv * chore: demo * chore: better testId * chore: change .e2e.ts to .test.ts * fix(SchemaInitializer): avoid error * refactor: move e2eUtils.ts to @nocobase/test * fix: move e2eUtils to client * chore: remove uselesscode * refactor: add .env.e2e.example * chore: optimize log * refactor: use mockPage to replace gotoPage * chore: update env.e2e * chore: add APP_BASE_URL * chore: gitigore * test: add test related of menu * chore: add SOCKET_PATH in env * fix(vscode): load env when using vscode plugin
82 lines
2.1 KiB
TypeScript
82 lines
2.1 KiB
TypeScript
import dotenv from 'dotenv';
|
|
import type { CommonOptions } from 'execa';
|
|
import execa from 'execa';
|
|
import net from 'net';
|
|
import fs from 'node:fs';
|
|
import path from 'path';
|
|
|
|
export const commonConfig: any = {
|
|
stdio: 'inherit',
|
|
};
|
|
|
|
export const runCommand = (command, argv, options = {}) => {
|
|
return execa(command, argv, {
|
|
shell: true,
|
|
stdio: 'inherit',
|
|
...options,
|
|
env: {
|
|
...process.env,
|
|
},
|
|
});
|
|
};
|
|
|
|
/**
|
|
* 检查端口是否被占用
|
|
* @param port
|
|
* @returns
|
|
*/
|
|
function checkPort(port) {
|
|
return new Promise((resolve, reject) => {
|
|
const socket = net.createConnection(port, '127.0.0.1');
|
|
|
|
socket.on('connect', () => {
|
|
socket.destroy();
|
|
resolve(true); // 端口可用
|
|
});
|
|
|
|
socket.on('error', (error) => {
|
|
resolve(false); // 端口被占用或不可访问
|
|
});
|
|
});
|
|
}
|
|
|
|
export const runNocoBase = async (options?: CommonOptions<any>) => {
|
|
// 用于存放 playwright 自动生成的相关的文件
|
|
if (!fs.existsSync('playwright')) {
|
|
fs.mkdirSync('playwright');
|
|
}
|
|
|
|
if (!fs.existsSync('.env.e2e') && fs.existsSync('.env.e2e.example')) {
|
|
const env = fs.readFileSync('.env.e2e.example');
|
|
fs.writeFileSync('.env.e2e', env);
|
|
}
|
|
|
|
if (!fs.existsSync('.env.e2e')) {
|
|
throw new Error('Please create .env.e2e file first!');
|
|
}
|
|
|
|
dotenv.config({ path: path.resolve(process.cwd(), '.env.e2e') });
|
|
|
|
if (process.env.CI) {
|
|
console.log('yarn nocobase install');
|
|
await runCommand('yarn', ['nocobase', 'install'], options);
|
|
console.log(`yarn start -d -p ${process.env.APP_PORT}`);
|
|
await runCommand('yarn', ['start', '-d', `-p ${process.env.APP_PORT}`], options);
|
|
return {};
|
|
}
|
|
|
|
if (await checkPort(process.env.APP_PORT)) {
|
|
console.log('Server is running, skip starting server.');
|
|
return {};
|
|
}
|
|
|
|
// 加上 -f 会清空数据库
|
|
console.log('yarn nocobase install -f');
|
|
await runCommand('yarn', ['nocobase', 'install', '-f'], options);
|
|
|
|
console.log('starting server...');
|
|
const { cancel, kill } = runCommand('yarn', ['dev', `-p ${process.env.APP_PORT}`, ...process.argv.slice(2)], options);
|
|
|
|
return { cancel, kill };
|
|
};
|