-
Notifications
You must be signed in to change notification settings - Fork 43
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
Fix Network Interface Test #605
Merged
Changes from all commits
Commits
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
Submodule aws-c-common
updated
2 files
+1 −1 | cmake/AwsPrebuildDependency.cmake | |
+9 −4 | include/aws/common/condition_variable.h |
Submodule aws-c-io
updated
7 files
+5 −0 | include/aws/io/socket.h | |
+8 −0 | source/posix/socket.c | |
+6 −0 | source/windows/iocp/socket.c | |
+24 −0 | source/windows/windows_pki_utils.c | |
+2 −0 | tests/CMakeLists.txt | |
+14 −0 | tests/socket_test.c | |
+36 −0 | tests/tls_handler_test.c |
Submodule aws-c-s3
updated
18 files
+3 −0 | .gitignore | |
+8 −0 | include/aws/s3/private/s3_meta_request_impl.h | |
+1 −0 | include/aws/s3/s3.h | |
+1 −0 | include/aws/s3/s3_client.h | |
+1 −0 | source/s3.c | |
+55 −33 | source/s3_client.c | |
+25 −1 | source/s3_copy_object.c | |
+16 −4 | source/s3_meta_request.c | |
+5 −0 | source/s3_util.c | |
+5 −0 | tests/CMakeLists.txt | |
+15 −0 | tests/mock_s3_server/CreateMultipartUpload/request_timeout.json | |
+101 −236 | tests/s3_data_plane_tests.c | |
+57 −6 | tests/s3_mock_server_tests.c | |
+44 −0 | tests/s3_s3express_client_test.c | |
+258 −0 | tests/s3_tester.c | |
+27 −0 | tests/s3_tester.h | |
+4 −0 | tests/test_helper/README.md | |
+4 −5 | tests/test_helper/test_helper.py |
Submodule aws-lc
updated
from 8b2ebf to 8ffe27
This file contains 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.
should we also check the happy case?
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.
It's not easy to test since only a few platforms have a happy case, and even then, it's different for each platform. This test is only verifying that we pass the value to c-s3 correctly.
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.
We can add a comment here that the functionality was tested in C properly, and here we make sure the binding works.
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.
I think "sanity" in the test name already signifies this intent. I can add a comment if you still think we should include one here.
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.
Well, we have bunch of sanity in the name of the test in aws-c-*, they are meant to simply test it works in the happy case,. eg: https://github.com/awslabs/aws-c-http/blob/main/tests/CMakeLists.txt#L410
I don't think we have a fairly common agreement on "sanity" in the test name means.
It's fine to me. But just mentioning.