Skip to content

fix: dashboard stacked chart sorting issue #4923

fix: dashboard stacked chart sorting issue

fix: dashboard stacked chart sorting issue #4923

Workflow file for this run

name: UI integration tests
on:
push:
branches:
- "main"
# paths:
# - "web/**"
pull_request:
branches:
- "*"
# paths:
# - "web/**"
env:
COLUMNS: 150
ZO_ROOT_USER_EMAIL: root@example.com
ZO_ROOT_USER_PASSWORD: Complexpass#123
ZO_BASE_URL: http://localhost:5080
# these are cypress related env vars
CYPRESS_ORGNAME: default
CYPRESS_CLOUD_TOKEN: ${{ secrets.CYPRESS_CLOUD_TOKEN }}
ZO_QUICK_MODE_NUM_FIELDS: 5
ZO_QUICK_MODE_STRATEGY : first
jobs:
ui_integration_tests:
name: ui_integration_tests
runs-on:
labels: ubuntu-latest
strategy:
matrix:
browser: [chrome]
testfilename: ["functions_tests.cy.js","logs_tests.cy.js","logs_queries.cy.js","logs_quickmode.cy.js","menu_tests.cy.js","alerts_tests.cy.js", "dashboard"]
steps:
- name: Remove unused tools
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Clone the current repo
uses: actions/checkout@v4
- name: Setup Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-03-02
targets: x86_64-unknown-linux-gnu
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "21.12"
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Build frontend code
run: cd web && npm install && npm run build
- name: Build and run binary
run: cargo build --features mimalloc
- name: Start OpenObserve
run: target/debug/openobserve &
- name: Wait for start
run: sleep 10
- name: Ensure we are getting a reply from the server
run: curl http://localhost:5080/web/login
# You can test your matrix by printing the current Python version
# - name: Cypress run
# uses: cypress-io/github-action@v6.6.0
# with:
# browser: ${{ matrix.browser }}
# spec: cypress/e2e/tests
- name: Cypress run
run: |
cd tests/ui-testing && npm install && npx cypress run --env EMAIL=${ZO_ROOT_USER_EMAIL},PASSWORD=${ZO_ROOT_USER_PASSWORD},BASEURL=${ZO_BASE_URL},ORGNAME=${CYPRESS_ORGNAME} --headless --browser ${{ matrix.browser }} --spec ./cypress/e2e/tests/${{ matrix.testfilename }}