English | 简体中文
We provide two test methods
- E2E test
- Focus on function point testing
- Can provide code coverage data
- User
Cypress
frame - Test results are saved in a static page for easy preview
- Unit test
- Focus on basic function testing
- User
Jest
frame
E2E test environment has been successfully built in Centos and wsl2 of Windows
-
node environment
-
requirement in package.json:
"node": ">=10.22.0"
-
verify nodejs version
node -v
-
-
yarn
-
install yarn
npm install -g yarn
-
-
Install dependencies
-
Execute in the project root directory, which is the same level as
package.json
, and wait patiently for the installation to completeyarn install
-
-
Install system dependencies
-
Ubuntu/Debian
sudo apt-get install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
-
CentOS
yum install -y xorg-x11-server-Xvfb gtk2-devel gtk3-devel libnotify-devel GConf2 nss libXScrnSaver alsa-lib
-
-
Adjust the access path, account and other information
- E2E configuration files are stored in
test/e2e/config/config.yaml
, Configured in it:baseUrl
, test access pathenv
, environment variableswitchToAdminProject
, Switch to theadmin
project after logging inusername
, User name to access the console, a user with console operation permissions is requiredpassword
, Password to access the consoleusernameAdmin
, The user name to access the management platform, a user with the operation authority of the management platform is requiredpasswordAdmin
, Password to access the management platform
testFiles
, Test files list
- The configuration change can be completed by directly modifying the corresponding value in
config.yaml
- You can also complete configuration changes through
local_config.yaml
- Copy
test/e2e/config/config.yaml
totest/e2e/config/local_config.yaml
- Modify the corresponding variables in
local_config.yaml
- For the value of the variable, the priority is:
local_config.yaml
>config.yaml
- Copy
- E2E configuration files are stored in
yarn run test:e2e
yarn run test:e2e:open
Cypress provide GUI
After the test run is over, visit test/e2e/report/merge-report.html
to view
After the test run is over, visit coverage/lcov-report/index.html
to view
Note: Code coverage, the front-end package corresponding to
baseUrl
that needs E2E access, isdist
package with a detectable code coverage version
yarn run build:test
The file packaged in the above way is a front-end package with testable code coverage
Below, the nginx configuration for front-end access to the front-end package with code coverage function is given
server {
listen 0.0.0.0:8088 default_server;
root /path/to/skyline-console/dist;
index index.html;
server_name _;
location / {
try_files $uri $uri/ /index.html;
}
location /api {
proxy_pass http://<backend_address>;
}
}
yarn run test:unit
You can view the running results directly in the command line console