1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include "aws/s3/private/s3_client_impl.h"
#include "aws/s3/private/s3_meta_request_impl.h"
#include "aws/s3/private/s3_util.h"
#include "s3_tester.h"
#include <aws/common/byte_buf.h>
#include <aws/common/clock.h>
#include <aws/common/common.h>
#include <aws/common/environment.h>
#include <aws/common/ref_count.h>
#include <aws/http/request_response.h>
#include <aws/io/channel_bootstrap.h>
#include <aws/io/event_loop.h>
#include <aws/io/host_resolver.h>
#include <aws/io/stream.h>
#include <aws/io/tls_channel_handler.h>
#include <aws/testing/aws_test_harness.h>
#include <inttypes.h>
#include <stdio.h>
struct replace_quote_entities_test_case {
struct aws_string *test_string;
struct aws_byte_cursor expected_result;
};
AWS_TEST_CASE(test_s3_replace_quote_entities, s_test_s3_replace_quote_entities)
static int s_test_s3_replace_quote_entities(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_s3_tester tester;
AWS_ZERO_STRUCT(tester);
ASSERT_SUCCESS(aws_s3_tester_init(allocator, &tester));
struct replace_quote_entities_test_case test_cases[] = {
{
.test_string = aws_string_new_from_c_str(allocator, ""testtest"),
.expected_result = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\"testtest"),
},
{
.test_string = aws_string_new_from_c_str(allocator, "testtest""),
.expected_result = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("testtest\""),
},
{
.test_string = aws_string_new_from_c_str(allocator, """"),
.expected_result = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\"\""),
},
{
.test_string = aws_string_new_from_c_str(allocator, "testtest"),
.expected_result = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("testtest"),
},
{
.test_string = aws_string_new_from_c_str(allocator, ""),
.expected_result = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(""),
},
};
for (size_t i = 0; i < AWS_ARRAY_SIZE(test_cases); ++i) {
struct replace_quote_entities_test_case *test_case = &test_cases[i];
struct aws_byte_buf result_byte_buf;
AWS_ZERO_STRUCT(result_byte_buf);
replace_quote_entities(allocator, test_case->test_string, &result_byte_buf);
struct aws_byte_cursor result_byte_cursor = aws_byte_cursor_from_buf(&result_byte_buf);
ASSERT_TRUE(aws_byte_cursor_eq(&test_case->expected_result, &result_byte_cursor));
aws_byte_buf_clean_up(&result_byte_buf);
aws_string_destroy(test_case->test_string);
test_case->test_string = NULL;
}
aws_s3_tester_clean_up(&tester);
return 0;
}
struct strip_quotes_test_case {
struct aws_byte_cursor test_cursor;
struct aws_byte_cursor expected_result;
};
AWS_TEST_CASE(test_s3_strip_quotes, s_test_s3_strip_quotes)
static int s_test_s3_strip_quotes(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_s3_tester tester;
AWS_ZERO_STRUCT(tester);
ASSERT_SUCCESS(aws_s3_tester_init(allocator, &tester));
struct strip_quotes_test_case test_cases[] = {
{
.test_cursor = aws_byte_cursor_from_c_str("\"test\""),
.expected_result = aws_byte_cursor_from_c_str("test"),
},
{
.test_cursor = aws_byte_cursor_from_c_str("test\""),
.expected_result = aws_byte_cursor_from_c_str("test\""),
},
{
.test_cursor = aws_byte_cursor_from_c_str("\"test"),
.expected_result = aws_byte_cursor_from_c_str("\"test"),
},
{
.test_cursor = aws_byte_cursor_from_c_str("test"),
.expected_result = aws_byte_cursor_from_c_str("test"),
},
{
.test_cursor = aws_byte_cursor_from_c_str(""),
.expected_result = aws_byte_cursor_from_c_str(""),
},
};
for (size_t i = 0; i < AWS_ARRAY_SIZE(test_cases); ++i) {
struct strip_quotes_test_case *test_case = &test_cases[i];
struct aws_byte_buf result_byte_buf;
AWS_ZERO_STRUCT(result_byte_buf);
struct aws_string *result = aws_strip_quotes(allocator, test_case->test_cursor);
struct aws_byte_cursor result_byte_cursor = aws_byte_cursor_from_string(result);
ASSERT_TRUE(aws_byte_cursor_eq(&test_case->expected_result, &result_byte_cursor));
aws_byte_buf_clean_up(&result_byte_buf);
aws_string_destroy(result);
}
aws_s3_tester_clean_up(&tester);
return 0;
}
AWS_TEST_CASE(test_s3_parse_content_range_response_header, s_test_s3_parse_content_range_response_header)
static int s_test_s3_parse_content_range_response_header(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
const struct aws_http_header content_range_header = {
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Range"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bytes 55-100/12345"),
};
const struct aws_http_header invalid_content_range_header = {
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Range"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bytes 55-100/"),
};
struct aws_http_headers *response_headers = aws_http_headers_new(allocator);
/* Try to parse a header that isn't there. */
{
uint64_t object_size = 0ULL;
ASSERT_FAILS(aws_s3_parse_content_range_response_header(allocator, response_headers, NULL, NULL, &object_size));
ASSERT_TRUE(aws_last_error() == AWS_ERROR_S3_MISSING_CONTENT_RANGE_HEADER);
}
aws_http_headers_add_header(response_headers, &content_range_header);
/* Parse all of the data from a valid header. */
{
uint64_t object_size = 0ULL;
uint64_t range_start = 0ULL;
uint64_t range_end = 0ULL;
ASSERT_SUCCESS(aws_s3_parse_content_range_response_header(
allocator, response_headers, &range_start, &range_end, &object_size));
ASSERT_TRUE(range_start == 55ULL);
ASSERT_TRUE(range_end == 100ULL);
ASSERT_TRUE(object_size == 12345ULL);
}
/* Range-end and range-start are optional output arguments. */
{
uint64_t object_size = 0ULL;
ASSERT_SUCCESS(
aws_s3_parse_content_range_response_header(allocator, response_headers, NULL, NULL, &object_size));
ASSERT_TRUE(object_size == 12345ULL);
}
aws_http_headers_set(response_headers, invalid_content_range_header.name, invalid_content_range_header.value);
/* Try to parse an invalid header. */
{
uint64_t object_size = 0ULL;
ASSERT_FAILS(aws_s3_parse_content_range_response_header(allocator, response_headers, NULL, NULL, &object_size));
ASSERT_TRUE(aws_last_error() == AWS_ERROR_S3_INVALID_CONTENT_RANGE_HEADER);
}
aws_http_headers_release(response_headers);
return 0;
}
AWS_TEST_CASE(test_s3_parse_content_length_response_header, s_test_s3_parse_content_length_response_header)
static int s_test_s3_parse_content_length_response_header(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_headers *response_headers = aws_http_headers_new(allocator);
const struct aws_http_header valid_content_length_header = {
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("12345"),
};
const struct aws_http_header invalid_content_length_header = {
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(""),
};
/* Try to parse a header that isn't there. */
{
uint64_t content_length = 0ULL;
ASSERT_FAILS(aws_s3_parse_content_length_response_header(allocator, response_headers, &content_length));
ASSERT_TRUE(aws_last_error() == AWS_ERROR_S3_MISSING_CONTENT_LENGTH_HEADER);
}
aws_http_headers_add_header(response_headers, &valid_content_length_header);
/* Parse a valid header. */
{
uint64_t content_length = 0ULL;
ASSERT_SUCCESS(aws_s3_parse_content_length_response_header(allocator, response_headers, &content_length));
ASSERT_TRUE(content_length == 12345ULL);
}
aws_http_headers_set(response_headers, invalid_content_length_header.name, invalid_content_length_header.value);
/* Try to parse an invalid header. */
{
uint64_t content_length = 0ULL;
ASSERT_FAILS(aws_s3_parse_content_length_response_header(allocator, response_headers, &content_length));
ASSERT_TRUE(aws_last_error() == AWS_ERROR_S3_INVALID_CONTENT_LENGTH_HEADER);
}
aws_http_headers_release(response_headers);
return 0;
}
static int s_validate_part_ranges(
uint64_t object_range_start,
uint64_t object_range_end,
size_t part_size,
uint32_t num_parts,
const uint64_t *part_ranges) {
ASSERT_TRUE(part_ranges != NULL);
for (uint32_t i = 0; i < num_parts; ++i) {
uint64_t part_range_start = 0ULL;
uint64_t part_range_end = 0ULL;
aws_s3_get_part_range(
object_range_start, object_range_end, part_size, i + 1, &part_range_start, &part_range_end);
ASSERT_TRUE(part_range_start == part_ranges[i * 2]);
ASSERT_TRUE(part_range_end == part_ranges[i * 2 + 1]);
}
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_s3_get_num_parts_and_get_part_range, s_test_s3_get_num_parts_and_get_part_range)
static int s_test_s3_get_num_parts_and_get_part_range(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
const size_t part_size = 16 * 1024;
/* Perfectly aligned on part boundaries. */
{
const uint32_t expected_num_parts = 2;
const uint64_t object_range_start = 0;
const uint64_t object_range_end =
(object_range_start + (uint64_t)part_size * (uint64_t)expected_num_parts) - 1ULL;
const uint64_t part_ranges[] = {
0,
(uint64_t)part_size - 1ULL,
(uint64_t)part_size,
(uint64_t)part_size * 2ULL - 1ULL,
};
ASSERT_TRUE(aws_s3_get_num_parts(part_size, object_range_start, object_range_end) == expected_num_parts);
ASSERT_SUCCESS(
s_validate_part_ranges(object_range_start, object_range_end, part_size, expected_num_parts, part_ranges));
}
/* Range-start unaligned on part boundaries, but range-end aligned. */
{
const uint32_t expected_num_parts = 3;
const uint64_t half_part_size = part_size >> 1ULL;
const uint64_t object_range_start = half_part_size;
const uint64_t object_range_end = (object_range_start + half_part_size + (uint64_t)part_size * 2ULL) - 1ULL;
const uint64_t part_ranges[] = {
object_range_start,
object_range_start + half_part_size - 1,
object_range_start + half_part_size,
object_range_start + half_part_size + (uint64_t)part_size - 1ULL,
object_range_start + half_part_size + (uint64_t)part_size,
object_range_start + half_part_size + (uint64_t)part_size * 2ULL - 1ULL,
};
ASSERT_TRUE(aws_s3_get_num_parts(part_size, object_range_start, object_range_end) == expected_num_parts);
ASSERT_SUCCESS(
s_validate_part_ranges(object_range_start, object_range_end, part_size, expected_num_parts, part_ranges));
}
/* Range-start and range-end both unaligned on part boundaries. */
{
const uint32_t expected_num_parts = 4;
const uint64_t half_part_size = part_size >> 1ULL;
const uint64_t object_range_start = half_part_size;
const uint64_t object_range_end =
(object_range_start + half_part_size + (uint64_t)part_size * 2ULL + half_part_size) - 1ULL;
const uint64_t part_ranges[] = {
object_range_start,
object_range_start + half_part_size - 1,
object_range_start + half_part_size,
object_range_start + half_part_size + (uint64_t)part_size - 1ULL,
object_range_start + half_part_size + (uint64_t)part_size,
object_range_start + half_part_size + (uint64_t)part_size * 2ULL - 1ULL,
object_range_start + half_part_size + (uint64_t)part_size * 2ULL,
object_range_start + half_part_size + (uint64_t)part_size * 2ULL + half_part_size - 1ULL,
};
ASSERT_TRUE(aws_s3_get_num_parts(part_size, object_range_start, object_range_end) == expected_num_parts);
ASSERT_SUCCESS(
s_validate_part_ranges(object_range_start, object_range_end, part_size, expected_num_parts, part_ranges));
}
return 0;
}
AWS_TEST_CASE(test_s3_aws_xml_get_top_level_tag_with_root_name, s_test_s3_aws_xml_get_top_level_tag_with_root_name)
static int s_test_s3_aws_xml_get_top_level_tag_with_root_name(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
struct aws_byte_cursor example_error_body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<Error>\n"
"<Code>AccessDenied</Code>\n"
"<Message>Access Denied</Message>\n"
"<RequestId>656c76696e6727732072657175657374</RequestId>\n"
"<HostId>Uuag1LuByRx9e6j5Onimru9pO4ZVKnJ2Qz7/C1NPcfTWAtRPfTaOFg==</HostId>\n"
"</Error>");
struct aws_byte_cursor example_success_body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<CompleteMultipartUploadResult xmlns=\"http://s3.amazonaws.com/doc/2006-03-01/\">\n"
"<Location>http://Example-Bucket.s3.<Region>.amazonaws.com/Example-Object</Location>\n"
"<Bucket>Example-Bucket</Bucket>\n"
"<Key>Example-Object</Key>\n"
"<ETag>\"3858f62230ac3c915f300c664312c11f-9\"</ETag>\n"
"</CompleteMultipartUploadResult>");
struct aws_byte_cursor error_body_xml_name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Error");
struct aws_byte_cursor code_body_xml_name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Code");
struct aws_byte_cursor etag_header_name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("ETag");
bool root_name_mismatch = false;
struct aws_string *error_code = aws_xml_get_top_level_tag_with_root_name(
allocator, &code_body_xml_name, &error_body_xml_name, &root_name_mismatch, &example_error_body);
ASSERT_NOT_NULL(error_code);
ASSERT_FALSE(root_name_mismatch);
ASSERT_TRUE(aws_string_eq_c_str(error_code, "AccessDenied"));
aws_string_destroy(error_code);
error_code = aws_xml_get_top_level_tag_with_root_name(
allocator, &code_body_xml_name, &error_body_xml_name, &root_name_mismatch, &example_success_body);
ASSERT_NULL(error_code);
ASSERT_TRUE(root_name_mismatch);
struct aws_string *etag = aws_xml_get_top_level_tag(allocator, &etag_header_name, &example_success_body);
ASSERT_NOT_NULL(etag);
ASSERT_TRUE(aws_string_eq_c_str(etag, "\"3858f62230ac3c915f300c664312c11f-9\""));
aws_string_destroy(etag);
return AWS_OP_SUCCESS;
}
|