forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor: Migrate conformance tests to StorageTransport and enhance retry logic #7
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
Open
thiyaguk09
wants to merge
24
commits into
storage-node-18
Choose a base branch
from
node18/conformance-test
base: storage-node-18
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
85238d2
conformance test fix
thiyaguk09 6f29e2e
fix
thiyaguk09 f9f32c7
fix
thiyaguk09 dc46005
phase 3 fixes
thiyaguk09 3c69139
fix
thiyaguk09 ed7ca93
download fix
thiyaguk09 bdffed5
iamSetPolicy fix
thiyaguk09 a6a3752
fix 720 test cases
thiyaguk09 66c4c07
fix: all 720 conformance-test cases
thiyaguk09 5ac1997
revert storage changes
thiyaguk09 5505344
Improve storage transport code coverage
thiyaguk09 c850cc1
refactor: transition to low-level transport for conformance tests
thiyaguk09 d8c0183
fix: resolve auth issue and temp remove chunk-based resumable upload
thiyaguk09 97ed4f5
fix authentication issue and remove docs check
thiyaguk09 45d5a12
chore(deps): update dependency testbench to v0.60.0
thiyaguk09 e003cc4
addressing comments
thiyaguk09 131de5d
fix: failed unit test
thiyaguk09 0f29638
Merge remote-tracking branch 'origin/storage-node-18' into node18/con…
thiyaguk09 044735d
Merge remote-tracking branch 'origin/storage-node-18' into node18/con…
thiyaguk09 baf084f
use default retryOptions
thiyaguk09 cd43c9f
fix(storage): unit test
thiyaguk09 c5117d4
Update node 18
thiyaguk09 3528095
comment interceptors
thiyaguk09 fbb093c
fix scenario 4
thiyaguk09 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
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.
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.
Creating a new
Gaxiosinstance for everyauthClient.requestcall within this mock can be inefficient, especially if this mock is called frequently. While this is a test utility, reusing a singleGaxiosinstance might offer a slight performance improvement and better reflect howGaxiosis typically used in production code.Consider initializing
gaxiosonce outside therequestfunction and reusing it.