platform/tests
Andrey Sobolev b5f24fbd5d
UBERF-8592: Fix live query performance (#7189)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-11-21 14:38:14 +07:00
..
sanity Few more fixes (#7161) 2024-11-13 01:18:58 +07:00
sanity-ws Extract domain fields (#7075) 2024-11-01 21:03:43 +05:00
.env Move services to public (#6156) 2024-07-27 20:04:21 +05:00
branding-test.json Qfix: use http for local and test brandings (#5980) 2024-07-02 21:07:24 +07:00
build-reload.sh Change shebangs to /usr/bin/env calls for better portability (#5961) 2024-07-01 23:21:52 +07:00
create-local.sh feat(planner): new slots, fixes and improvements (#4961) 2024-03-19 11:40:07 +04:00
docker-compose.override.yaml UBERF-8552: Extract indexer into separate service (#7120) 2024-11-11 19:20:10 +07:00
docker-compose.yaml UBERF-8582: Fix triggers (#7155) 2024-11-12 22:13:11 +05:00
install-elastic-plugin-setup.sh Change shebangs to /usr/bin/env calls for better portability (#5961) 2024-07-01 23:21:52 +07:00
install-elastic-plugin.sh Change shebangs to /usr/bin/env calls for better portability (#5961) 2024-07-01 23:21:52 +07:00
prepare-pg.sh Cockroach (#6334) 2024-09-11 15:31:26 +07:00
prepare-tests.sh Cockroach (#6334) 2024-09-11 15:31:26 +07:00
prepare.sh Move model (#7185) 2024-11-18 17:44:09 +05:00
profile-download.sh UBERF-8052: Allow easy profiling of transactor (#6502) 2024-09-10 10:44:10 +05:00
profile-generate.sh UBERF-8052: Allow easy profiling of transactor (#6502) 2024-09-10 10:44:10 +05:00
profile-start.sh UBERF-8052: Allow easy profiling of transactor (#6502) 2024-09-10 10:44:10 +05:00
readme.md TESTS-71: feat(tests): updated allure parent suite (#4010) 2023-11-20 22:12:57 +07:00
restore-local.sh UBERF-7796: Rework index creation logic (#6246) 2024-08-05 12:37:13 +07:00
restore-pg.sh UBERF-8508: Get rid of Mongo in storage adapter (#6989) 2024-10-21 23:23:26 +07:00
restore-workspace.sh Extract domain fields (#7075) 2024-11-01 21:03:43 +05:00
tool-local.sh UBERF-8592: Fix live query performance (#7189) 2024-11-21 14:38:14 +07:00
tool-pg.sh UBERF-8592: Fix live query performance (#7189) 2024-11-21 14:38:14 +07:00
tool.sh UBERF-8592: Fix live query performance (#7189) 2024-11-21 14:38:14 +07:00
update-snapshot-ci.sh Update sanity DB restore (#2836) 2023-06-09 16:36:55 +06:00
update-snapshot.sh Extract domain fields (#7075) 2024-11-01 21:03:43 +05:00
wait-elastic.sh UBER-536: Fix test stability (#3466) 2023-06-29 11:46:28 +06:00

UI Sanity testing using play-wright

Prepare environment with docker to test final product.

rush update
rush build
rush bundle
rush docker:build
./prepare.sh

Restore to pure DB

To purge content of sanity workspace following command could be used.

./restore-workspace.sh

Prepare local dev environment

rush update
rush build
rush bundle
./create-local.sh

Restore to pure DB for Local setup

To purge content of sanity workspace following command could be used.

./restore-local.sh

Running UI tests

cd ./sanity
rushx uitest # for docker setup
rushx dev-uitest # for dev setup

Debugging UI tests

cd ./sanity
rushx debug -g test-name # for docker setup
rushx dev-debug -g test-name # for local setup

Capturing new testing scenarios

rushx codegen # for docker setup
rushx dev-codegen # for local setup

Test authoring.

Please update all navigation with using PlatformURI for CI and dev environment compatible testing.

Generate Allure

allure generate allure-results -o allure-report --clean
allure open allure-report