mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 04:27:04 +00:00
29bf187fbf
* test(e2e): better locators for designer buttons
* fix: make test passing
* refactor: remove DesignerControl
* chore: better locators
* fix: should not disable add-menu-item
* chore: better test id for block
* chore: optimize Action
* chore: remove role in BlockItem
* feat: improve locators
* chore: menu & add block
* chore: initializer
* chore: testid -> aria label
* chore: tabs
* chore: designers
* refactor: optimize schemaInitializer
* refactor: rename
* chore: add collectionName
* chore: block item
* chore: action
* fix: avoid crashting
* chore(e2e): add __E2E__
* chore: all dialog
* chore: add aria-label for block menu
* Revert "chore: add aria-label for block menu"
This reverts commit 6a840ef816
.
* chore: optimize aria-label of Action
* chore: schema-initializer
* chore(e2e): increase timeout
* chore: schema settings
* chore: optimize table
* chore: workflow
* chore: plugin manager
* chore: collection manager and workflow
* chore: details of workflow
* chore: remove testid of Select
* test: fix unit-tests
* test: fix unit-tests
* test(e2e): passing tests
* test: fix unit test
* chore: should use hover
* test: passing tests
* chore: passing tests
* chore: fix CI
* chore: fix CI
* chore: increase timeout in CI
---------
Co-authored-by: chenos <chenlinxh@gmail.com>
155 lines
4.0 KiB
TypeScript
155 lines
4.0 KiB
TypeScript
import axios from 'axios';
|
|
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); // 端口被占用或不可访问
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 检查服务是否启动成功
|
|
*/
|
|
const checkServer = async (duration = 1000, max = 60 * 10) => {
|
|
return new Promise((resolve, reject) => {
|
|
let count = 0;
|
|
const timer = setInterval(async () => {
|
|
if (count++ > max) {
|
|
clearInterval(timer);
|
|
return reject(new Error('Server start timeout.'));
|
|
}
|
|
|
|
if (!(await checkPort(process.env.APP_PORT))) {
|
|
return;
|
|
}
|
|
|
|
axios
|
|
.get(`http://localhost:${process.env.APP_PORT}/api/__health_check`)
|
|
.then((response) => {
|
|
if (response.status === 200) {
|
|
clearInterval(timer);
|
|
resolve(true);
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
console.error('Request error:', error.message);
|
|
});
|
|
}, duration);
|
|
});
|
|
};
|
|
|
|
/**
|
|
* 检查 UI 是否启动成功
|
|
* @param duration
|
|
*/
|
|
const checkUI = async (duration = 1000, max = 60 * 10) => {
|
|
return new Promise((resolve, reject) => {
|
|
let count = 0;
|
|
const timer = setInterval(async () => {
|
|
if (count++ > max) {
|
|
clearInterval(timer);
|
|
return reject(new Error('UI start timeout.'));
|
|
}
|
|
|
|
axios
|
|
.get(`http://localhost:${process.env.APP_PORT}/__umi/api/bundle-status`)
|
|
.then((response) => {
|
|
if (response.data.bundleStatus.done) {
|
|
clearInterval(timer);
|
|
resolve(true);
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
console.error('Request error:', error.message);
|
|
});
|
|
}, duration);
|
|
});
|
|
};
|
|
|
|
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') });
|
|
|
|
const awaitForNocoBase = async () => {
|
|
if (process.env.CI) {
|
|
console.log('check server...');
|
|
await checkServer();
|
|
} else {
|
|
console.log('check server...');
|
|
await checkServer();
|
|
console.log('server is ready, check UI...');
|
|
await checkUI();
|
|
console.log('UI is ready.');
|
|
}
|
|
};
|
|
|
|
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 { awaitForNocoBase };
|
|
}
|
|
|
|
// 加上 -f 会清空数据库
|
|
console.log('yarn nocobase install -f');
|
|
await runCommand('yarn', ['nocobase', 'install', '-f'], options);
|
|
|
|
if (await checkPort(process.env.APP_PORT)) {
|
|
console.log('Server is running, skip starting server.');
|
|
return { awaitForNocoBase };
|
|
}
|
|
|
|
console.log('starting server...');
|
|
const { cancel, kill } = runCommand('yarn', ['dev', `-p ${process.env.APP_PORT}`, ...process.argv.slice(2)], options);
|
|
|
|
return { cancel, kill, awaitForNocoBase };
|
|
};
|