-
Notifications
You must be signed in to change notification settings - Fork 249
CLDSRV-717: Unify tests backbeat route #5907
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
bert-e
merged 9 commits into
development/9.0
from
improvement/CLDSRV-717-unify-test-backbeat-route
Aug 28, 2025
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7f6716d
CLDSRV-717: Fix backbeat route parsedContentLength
BourgoisMickael 9661e86
CLDSRV-717: Fix tests with location
BourgoisMickael 4ce7ecb
CLDSRV-717: Fix script ft_route_backbeat
BourgoisMickael 3164f76
CLDSRV-717: Replace hardcoded credentials
BourgoisMickael 5370181
CLDSRV-717: Unify backbeat api proxy test
BourgoisMickael d0f3bcc
CLDSRV-717: Update backbeat GET metadata error tst
BourgoisMickael 288606a
CLDSRV-717: Skip based on configured location
BourgoisMickael fdacd95
CLDSRV-717: Reinclude S3C specifics from 7.70
BourgoisMickael 4e4f7ff
CLDSRV-717: Skip S3C broken null version + delete
BourgoisMickael File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ | |
"ft_backbeat": "cd tests/functional/backbeat && mocha --reporter mocha-multi-reporters --reporter-options configFile=$INIT_CWD/tests/reporter-config.json -t 40000 *.js --exit", | ||
"ft_node": "cd tests/functional/raw-node && yarn test", | ||
"ft_node_routes": "cd tests/functional/raw-node && yarn run test-routes", | ||
"ft_node_route_backbeat": "cd tests/functional/raw-node && mocha --reporter mocha-multi-reporters --reporter-options configFile=$INIT_CWD/tests/reporter-config.json -t 40000 test/routes/routeBackbeat.js --exit", | ||
"ft_route_backbeat": "cd tests/multipleBackend/routes && mocha --reporter mocha-multi-reporters --reporter-options configFile=$INIT_CWD/tests/reporter-config.json -t 40000 routeBackbeat.js routeBackbeatForReplication.js --exit", | ||
"ft_gcp": "cd tests/functional/raw-node && yarn run test-gcp", | ||
"ft_healthchecks": "cd tests/functional/healthchecks && yarn test", | ||
"ft_s3cmd": "cd tests/functional/s3cmd && mocha --reporter mocha-multi-reporters --reporter-options configFile=$INIT_CWD/tests/reporter-config.json -t 40000 *.js --exit", | ||
|
@@ -107,7 +107,6 @@ | |
"ft_sse_before_migration": "cd tests/functional/sse-kms-migration && mocha --reporter mocha-multi-reporters --reporter-options configFile=$INIT_CWD/tests/reporter-config.json -t 10000 cleanup.js beforeMigration.js --exit", | ||
"ft_sse_migration": "cd tests/functional/sse-kms-migration && mocha --reporter mocha-multi-reporters --reporter-options configFile=$INIT_CWD/tests/reporter-config.json -t 10000 migration.js --exit", | ||
"ft_sse_arn": "cd tests/functional/sse-kms-migration && mocha --reporter mocha-multi-reporters --reporter-options configFile=$INIT_CWD/tests/reporter-config.json -t 10000 cleanup.js arnPrefix.js --exit", | ||
"install_ft_deps": "yarn install [email protected] [email protected] [email protected] [email protected] [email protected]", | ||
"lint": "eslint $(git ls-files '*.js')", | ||
"lint_md": "mdlint $(git ls-files '*.md')", | ||
"mem_backend": "S3BACKEND=mem node index.js", | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kind of duplicates
multiple_backend_test
script?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this only picks backbeat route tests without veeam route and other multiple backend tests, as it was executing in
ft_node_routes
before in 7.70