feat(storage): Add unit test for AppendableUploadConnectionImpl#15200
Conversation
dd94f88 to
e8663ec
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #15200 +/- ##
========================================
Coverage 92.95% 92.95%
========================================
Files 2393 2394 +1
Lines 215318 215516 +198
========================================
+ Hits 200140 200339 +199
+ Misses 15178 15177 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
scotthart
left a comment
There was a problem hiding this comment.
Reviewed 3 of 3 files at r1, all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @bajajneha27)
google/cloud/storage/internal/async/connection_impl_appendable_upload_test.cc line 1 at r1 (raw file):
// Copyright 2024 Google LLC
Please update the copyright year to match the year when the file was first added.
Done. |
a71a3fa to
ce2d211
Compare
ce2d211 to
369f2b5
Compare
…leapis#15200) * feat(storage) : Add unit test for AppendableUploadConnectionImpl * Remove the unwanted comment. * Remove unnecesary declerations * Update the copyright year * remove the unwanted declaration
This change introduces a new test file, connection_impl_appendable_upload_test.cc, to thoroughly verify the asynchronous appendable upload functionality. Following tests are included in this commit:
StartAppendableObjectUploadSuccess
ResumeAppendableObjectUploadSuccess
AppendableUploadTooManyTransients
AppendableUploadPermanentError
This change is