-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add URI S3 Client unit tests #2901
Merged
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
add_project(aws-cpp-sdk-s3-unit-tests | ||
"Unit Tests for the S3 SDK Client" | ||
aws-cpp-sdk-s3 | ||
testing-resources | ||
aws_test_main | ||
aws-cpp-sdk-core) | ||
|
||
add_definitions(-DRESOURCES_DIR="${CMAKE_CURRENT_SOURCE_DIR}/resources") | ||
|
||
if(MSVC AND BUILD_SHARED_LIBS) | ||
add_definitions(-DGTEST_LINKED_AS_SHARED_LIBRARY=1) | ||
endif() | ||
|
||
enable_testing() | ||
|
||
if(PLATFORM_ANDROID AND BUILD_SHARED_LIBS) | ||
add_library(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/S3UnitTests.cpp) | ||
else() | ||
add_executable(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/S3UnitTests.cpp) | ||
endif() | ||
|
||
set_compiler_flags(${PROJECT_NAME}) | ||
set_compiler_warnings(${PROJECT_NAME}) | ||
|
||
target_link_libraries(${PROJECT_NAME} ${PROJECT_LIBS}) | ||
|
||
if(MSVC AND BUILD_SHARED_LIBS) | ||
set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "/DELAYLOAD:aws-cpp-sdk-s3.dll /DELAYLOAD:aws-cpp-sdk-core.dll") | ||
endif() | ||
|
||
include(GoogleTest) | ||
gtest_discover_tests(${PROJECT_NAME}) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
#include <gtest/gtest.h> | ||
#include <aws/core/Aws.h> | ||
#include <aws/core/auth/AWSCredentials.h> | ||
#include <aws/s3/S3Client.h> | ||
#include <aws/s3/model/PutObjectRequest.h> | ||
#include <aws/testing/mocks/http/MockHttpClient.h> | ||
#include <aws/testing/AwsTestHelpers.h> | ||
#include <aws/testing/MemoryTesting.h> | ||
|
||
using namespace Aws; | ||
using namespace Aws::Auth; | ||
using namespace Aws::Http; | ||
using namespace Aws::S3; | ||
using namespace Aws::S3::Model; | ||
|
||
const char* ALLOCATION_TAG = "S3UnitTest"; | ||
|
||
class S3UnitTest : public testing::Test { | ||
protected: | ||
static void SetUpTestSuite() { | ||
#ifdef USE_AWS_MEMORY_MANAGEMENT | ||
_testMemorySystem = Aws::MakeShared<ExactTestMemorySystem>(ALLOCATION_TAG, 1024, 128); | ||
_options.memoryManagementOptions.memoryManager = _testMemorySystem.get(); | ||
#endif | ||
_mockClientFactory = Aws::MakeShared<MockHttpClientFactory>(ALLOCATION_TAG); | ||
_mockHttpClient = Aws::MakeShared<MockHttpClient>(ALLOCATION_TAG); | ||
_mockClientFactory->SetClient(_mockHttpClient); | ||
HttpOptions httpOptions; | ||
httpOptions.httpClientFactory_create_fn = []() -> std::shared_ptr<HttpClientFactory> { | ||
return _mockClientFactory; | ||
}; | ||
_options.httpOptions = httpOptions; | ||
InitAPI(_options); | ||
AWSCredentials credentials{"mock", "credentials"}; | ||
const auto epProvider = Aws::MakeShared<S3EndpointProvider>(ALLOCATION_TAG); | ||
S3ClientConfiguration s3Config; | ||
s3Config.region = "us-east-1"; | ||
_s3Client = Aws::MakeShared<S3Client>("ALLOCATION_TAG", credentials, epProvider, s3Config); | ||
} | ||
|
||
static void TearDownTestSuite() { | ||
_mockClientFactory.reset(); | ||
_mockHttpClient.reset(); | ||
_s3Client.reset(); | ||
ShutdownAPI(_options); | ||
#ifdef USE_AWS_MEMORY_MANAGEMENT | ||
EXPECT_EQ(_testMemorySystem->GetCurrentOutstandingAllocations(), 0ULL); | ||
EXPECT_EQ(_testMemorySystem->GetCurrentBytesAllocated(), 0ULL); | ||
EXPECT_TRUE(_testMemorySystem->IsClean()); | ||
if (_testMemorySystem->GetCurrentOutstandingAllocations() != 0ULL) | ||
FAIL(); | ||
if (_testMemorySystem->GetCurrentBytesAllocated() != 0ULL) | ||
FAIL(); | ||
if (!_testMemorySystem->IsClean()) | ||
FAIL(); | ||
_testMemorySystem.reset(); | ||
#endif | ||
} | ||
|
||
static SDKOptions _options; | ||
static std::shared_ptr<MockHttpClient> _mockHttpClient; | ||
static std::shared_ptr<MockHttpClientFactory> _mockClientFactory; | ||
static std::shared_ptr<S3Client> _s3Client; | ||
#ifdef USE_AWS_MEMORY_MANAGEMENT | ||
static std::shared_ptr<ExactTestMemorySystem> _testMemorySystem; | ||
#endif | ||
}; | ||
|
||
SDKOptions S3UnitTest::_options; | ||
std::shared_ptr<MockHttpClient> S3UnitTest::_mockHttpClient = nullptr; | ||
std::shared_ptr<MockHttpClientFactory> S3UnitTest::_mockClientFactory = nullptr; | ||
std::shared_ptr<S3Client> S3UnitTest::_s3Client = nullptr; | ||
#ifdef USE_AWS_MEMORY_MANAGEMENT | ||
std::shared_ptr<ExactTestMemorySystem> S3UnitTest::_testMemorySystem = nullptr; | ||
#endif | ||
|
||
|
||
TEST_F(S3UnitTest, S3UriLeadingDots) { | ||
auto putObjectRequest = PutObjectRequest() | ||
.WithBucket("bluerev") | ||
.WithKey("../BoredInBristol"); | ||
|
||
std::shared_ptr<IOStream> body = Aws::MakeShared<StringStream>(ALLOCATION_TAG, | ||
"Bored in Bristol, always waiting", | ||
std::ios_base::in | std::ios_base::binary); | ||
|
||
putObjectRequest.SetBody(body); | ||
|
||
//We have to mock requset because it is used to create the return body, it actually isnt used. | ||
auto mockRequest = Aws::MakeShared<Standard::StandardHttpRequest>(ALLOCATION_TAG, "mockuri", HttpMethod::HTTP_GET); | ||
mockRequest->SetResponseStreamFactory([]() -> IOStream* { | ||
return Aws::New<StringStream>(ALLOCATION_TAG, "response-string", std::ios_base::in | std::ios_base::binary); | ||
}); | ||
auto mockResponse = Aws::MakeShared<Standard::StandardHttpResponse>(ALLOCATION_TAG, mockRequest); | ||
mockResponse->SetResponseCode(HttpResponseCode::OK); | ||
_mockHttpClient->AddResponseToReturn(mockResponse); | ||
const auto response = _s3Client->PutObject(putObjectRequest); | ||
AWS_EXPECT_SUCCESS(response); | ||
const auto seenRequest = _mockHttpClient->GetMostRecentHttpRequest(); | ||
EXPECT_EQ("https://bluerev.s3.us-east-1.amazonaws.com/../BoredInBristol", seenRequest.GetUri().GetURIString()); | ||
} | ||
|
||
TEST_F(S3UnitTest, S3UriMiddleDots) { | ||
auto putObjectRequest = PutObjectRequest() | ||
.WithBucket("bluerev") | ||
.WithKey("belinda/../says"); | ||
|
||
std::shared_ptr<IOStream> body = Aws::MakeShared<StringStream>(ALLOCATION_TAG, | ||
"Blue Rev behind the rink I didn't really need it", | ||
std::ios_base::in | std::ios_base::binary); | ||
|
||
putObjectRequest.SetBody(body); | ||
|
||
//We have to mock requset because it is used to create the return body, it actually isnt used. | ||
auto mockRequest = Aws::MakeShared<Standard::StandardHttpRequest>(ALLOCATION_TAG, "mockuri", HttpMethod::HTTP_GET); | ||
mockRequest->SetResponseStreamFactory([]() -> IOStream* { | ||
return Aws::New<StringStream>(ALLOCATION_TAG, "response-string", std::ios_base::in | std::ios_base::binary); | ||
}); | ||
auto mockResponse = Aws::MakeShared<Standard::StandardHttpResponse>(ALLOCATION_TAG, mockRequest); | ||
mockResponse->SetResponseCode(HttpResponseCode::OK); | ||
_mockHttpClient->AddResponseToReturn(mockResponse); | ||
const auto response = _s3Client->PutObject(putObjectRequest); | ||
AWS_EXPECT_SUCCESS(response); | ||
const auto seenRequest = _mockHttpClient->GetMostRecentHttpRequest(); | ||
EXPECT_EQ("https://bluerev.s3.us-east-1.amazonaws.com/belinda/../says", seenRequest.GetUri().GetURIString()); | ||
} |
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
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
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
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.
im adding to the run integ tests right now. likely this should be a completely seperate step in our CI, and we should have other clients in it. We can create a seperate sep once we have enough client unit tests to justify it.