Skip to content

Commit 391281c

Browse files
authored
CLOUDP-305055 Add snapshot testing (#3760)
1 parent c20ae3e commit 391281c

File tree

530 files changed

+22055
-259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

530 files changed

+22055
-259
lines changed

.github/workflows/code-health.yml

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030
env:
3131
COVERAGE: coverage.out
3232
TEST_CMD: gotestsum --junitfile unit-tests.xml --format standard-verbose --
33-
UNIT_TAGS: unit
34-
INTEGRATION_TAGS: integration
3533
strategy:
3634
fail-fast: false
3735
matrix:

.github/workflows/e2e-tests.yml

+76-33
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,58 @@ on:
66
- master
77
pull_request:
88
jobs:
9-
config:
10-
env:
11-
TEST_CMD: gotestsum --junitfile e2e-tests.xml --format standard-verbose --
12-
UNIT_TAGS: unit
9+
tests:
1310
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
tags:
15+
- atlas,autogeneration
16+
- atlas,backup,compliancepolicy
17+
- atlas,backup,flex
18+
- atlas,backup,exports,buckets
19+
- atlas,backup,exports,jobs
20+
- atlas,backup,restores
21+
- atlas,backup,schedule
22+
- atlas,backup,snapshot
23+
- atlas,clusters,file
24+
# - atlas,clusters,flags # does not work well with snapshots
25+
- atlas,clusters,flex
26+
- atlas,clusters,m0
27+
- atlas,clusters,sharded
28+
- atlas,clusters,upgrade
29+
- atlas,datafederation,db
30+
- atlas,datafederation,privatenetwork
31+
- atlas,datafederation,querylimits
32+
- atlas,decrypt
33+
# - atlas,deployments,atlasclusters # one assertion connects to DB (needs live mode)
34+
# - atlas,deployments,local,auth,deprecated # needs docker to run
35+
# - atlas,deployments,local,auth,new # needs docker to run
36+
# - atlas,deployments,local,nocli # needs docker to run
37+
# - atlas,deployments,local,noauth # needs docker to run
38+
# - atlas,generic # tests are failing in master
39+
# - atlas,interactive # does not work well with snapshots
40+
- atlas,ldap
41+
- atlas,livemigrations
42+
- atlas,logs
43+
- atlas,metrics
44+
- atlas,networking
45+
- atlas,onlinearchive
46+
- atlas,performanceAdvisor
47+
- atlas,plugin,install
48+
- atlas,plugin,run
49+
- atlas,plugin,uninstall
50+
- atlas,plugin,update
51+
- atlas,processes
52+
- atlas,search
53+
# - atlas,search_nodes # tests are failing in master
54+
- atlas,serverless,instance
55+
- atlas,streams
56+
- atlas,streams_with_cluster
57+
- brew
58+
- config
59+
- iam
60+
- kubernetes
1461
steps:
1562
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
1663
with:
@@ -24,7 +71,8 @@ jobs:
2471
with:
2572
go-version-file: 'go.mod'
2673
- run: go install gotest.tools/gotestsum@latest
27-
- run: |
74+
- name: write config file
75+
run: |
2876
set -Eeou pipefail
2977
mkdir "$XDG_CONFIG_HOME/atlascli"
3078
cat <<EOF > "$XDG_CONFIG_HOME/atlascli/config.toml"
@@ -35,35 +83,30 @@ jobs:
3583
EOF
3684
- run: make e2e-test
3785
env:
38-
E2E_TAGS: config
86+
TEST_CMD: gotestsum --junitfile e2e-tests.xml --format standard-verbose --
87+
E2E_TAGS: ${{ matrix.tags }}
88+
MONGODB_ATLAS_ORG_ID: ${{ secrets.MONGODB_ATLAS_ORG_ID }}
89+
MONGODB_ATLAS_PROJECT_ID: ${{ secrets.MONGODB_ATLAS_PROJECT_ID }}
90+
MONGODB_ATLAS_PUBLIC_API_KEY: ${{ secrets.MONGODB_ATLAS_PUBLIC_API_KEY }}
91+
MONGODB_ATLAS_PRIVATE_API_KEY: ${{ secrets.MONGODB_ATLAS_PRIVATE_API_KEY }}
92+
MONGODB_ATLAS_OPS_MANAGER_URL: ${{ secrets.MONGODB_ATLAS_OPS_MANAGER_URL }}
93+
MONGODB_ATLAS_SERVICE: cloud
94+
DO_NOT_TRACK: 1
95+
UPDATE_SNAPSHOTS: false
96+
E2E_SKIP_CLEANUP: true
97+
E2E_CLOUD_ROLE_ID: ${{ secrets.E2E_CLOUD_ROLE_ID }}
98+
E2E_TEST_BUCKET: ${{ secrets.E2E_TEST_BUCKET }}
99+
E2E_FLEX_INSTANCE_NAME: ${{ secrets.E2E_FLEX_INSTANCE_NAME }}
100+
IDENTITY_PROVIDER_ID: ${{ secrets.IDENTITY_PROVIDER_ID }}
101+
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
102+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
103+
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
104+
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
105+
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
106+
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}
107+
E2E_TIMEOUT: 3h
39108
- name: Test Summary
40-
id: test_summary
41-
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86
42-
with:
43-
paths: e2e-tests.xml
44-
brew:
45-
env:
46-
TEST_CMD: gotestsum --junitfile e2e-tests.xml --format standard-verbose --
47-
UNIT_TAGS: unit
48-
runs-on: ubuntu-latest
49-
steps:
50-
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
51-
with:
52-
config: ${{ vars.PERMISSIONS_CONFIG }}
53-
- name: Checkout repository
54-
uses: actions/checkout@v4
55-
with:
56-
fetch-depth: 0
57-
- name: Install Go
58-
uses: actions/setup-go@v5
59-
with:
60-
go-version-file: 'go.mod'
61-
- run: go install gotest.tools/gotestsum@latest
62-
- run: make e2e-test
63-
env:
64-
E2E_TAGS: brew
65-
- name: Test Summary
66-
id: test_summary
109+
if: always()
67110
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86
68111
with:
69112
paths: e2e-tests.xml

0 commit comments

Comments
 (0)