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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/common/device_random.h>
#include <aws/common/file.h>
#include <aws/common/string.h>
#include <aws/testing/aws_test_harness.h>
#include <fcntl.h>
static int s_aws_fopen_test_helper(char *file_path, char *content) {
char read_result[100];
AWS_ZERO_ARRAY(read_result);
FILE *file = aws_fopen(file_path, "w+");
ASSERT_NOT_NULL(file);
fprintf(file, "%s", content);
fclose(file);
FILE *readfile = aws_fopen(file_path, "r");
ASSERT_NOT_NULL(readfile);
size_t read_len = fread(read_result, sizeof(char), strlen(content), readfile);
ASSERT_UINT_EQUALS(strlen(content), read_len);
fclose(readfile);
ASSERT_SUCCESS(strcmp(content, read_result));
#ifdef _WIN32
wchar_t w_file_path[1000];
/* plus one for the EOS */
size_t file_path_len = strlen(file_path) + 1;
MultiByteToWideChar(CP_UTF8, 0, file_path, -1, w_file_path, (int)file_path_len);
ASSERT_SUCCESS(_wremove(w_file_path));
#else
ASSERT_SUCCESS(remove(file_path));
#endif
return AWS_OP_SUCCESS;
}
static int s_aws_fopen_content_matches(char *file_path, char *content) {
char read_result[100];
AWS_ZERO_ARRAY(read_result);
FILE *file = aws_fopen(file_path, "rb");
ASSERT_NOT_NULL(file);
size_t read_len = fread(read_result, sizeof(char), strlen(content), file);
ASSERT_UINT_EQUALS(strlen(content), read_len);
fclose(file);
ASSERT_SUCCESS(strcmp(content, read_result));
return AWS_OP_SUCCESS;
}
static int s_aws_fopen_non_ascii_read_existing_file_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char expected_content[] = "This is a non-ascii file path file.";
char file_path[] = "Å Éxample.txt";
char read_result[100];
AWS_ZERO_ARRAY(read_result);
FILE *readfile = aws_fopen(file_path, "r");
ASSERT_NOT_NULL(readfile);
size_t read_len = fread(read_result, sizeof(char), strlen(expected_content), readfile);
ASSERT_UINT_EQUALS(strlen(expected_content), read_len);
fclose(readfile);
ASSERT_SUCCESS(strcmp(expected_content, read_result));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(aws_fopen_non_ascii_read_existing_file_test, s_aws_fopen_non_ascii_read_existing_file_test_fn)
static int s_aws_fopen_non_ascii_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char file_path[] = "Éxample.txt";
char content[] = "samples";
ASSERT_SUCCESS(s_aws_fopen_test_helper(file_path, content));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(aws_fopen_non_ascii_test, s_aws_fopen_non_ascii_test_fn)
static int s_aws_fopen_ascii_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char file_path[] = "sample.txt";
char content[] = "samples";
ASSERT_SUCCESS(s_aws_fopen_test_helper(file_path, content));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(aws_fopen_ascii_test, s_aws_fopen_ascii_test_fn)
struct directory_traversal_test_data {
bool child_dir_verified;
bool child_file_verified;
bool root_file_verified;
};
static const char *s_first_child_dir_path = "dir_traversal_test" AWS_PATH_DELIM_STR "first_child_dir";
static const char *s_first_child_file_path =
"dir_traversal_test" AWS_PATH_DELIM_STR "first_child_dir" AWS_PATH_DELIM_STR "child.txt";
static const char *s_root_child_path = "dir_traversal_test" AWS_PATH_DELIM_STR "root_child.txt";
bool s_on_directory_entry(const struct aws_directory_entry *entry, void *user_data) {
struct directory_traversal_test_data *test_data = user_data;
if (aws_byte_cursor_eq_c_str(&entry->relative_path, s_root_child_path)) {
test_data->root_file_verified =
entry->file_type & AWS_FILE_TYPE_FILE && entry->file_size &&
s_aws_fopen_content_matches((char *)entry->relative_path.ptr, "dir_traversal_test->root_child.txt") ==
AWS_OP_SUCCESS;
return true;
}
if (aws_byte_cursor_eq_c_str(&entry->relative_path, s_first_child_file_path)) {
test_data->child_file_verified =
entry->file_type & AWS_FILE_TYPE_FILE && entry->file_size &&
s_aws_fopen_content_matches(
(char *)entry->relative_path.ptr, "dir_traversal_test->first_child_dir->child.txt") == AWS_OP_SUCCESS;
return true;
}
if (aws_byte_cursor_eq_c_str(&entry->relative_path, s_first_child_dir_path)) {
test_data->child_dir_verified = entry->file_type & AWS_FILE_TYPE_DIRECTORY;
return true;
}
return false;
}
static int s_directory_traversal_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "dir_traversal_test");
struct directory_traversal_test_data test_data;
AWS_ZERO_STRUCT(test_data);
ASSERT_SUCCESS(aws_directory_traverse(allocator, path, true, s_on_directory_entry, &test_data));
ASSERT_TRUE(test_data.child_dir_verified);
ASSERT_TRUE(test_data.root_file_verified);
ASSERT_TRUE(test_data.child_file_verified);
AWS_ZERO_STRUCT(test_data);
ASSERT_SUCCESS(aws_directory_traverse(allocator, path, false, s_on_directory_entry, &test_data));
ASSERT_TRUE(test_data.child_dir_verified);
ASSERT_TRUE(test_data.root_file_verified);
ASSERT_FALSE(test_data.child_file_verified);
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_traversal_test, s_directory_traversal_test_fn)
static int s_directory_iteration_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "dir_traversal_test");
struct aws_directory_iterator *iterator = aws_directory_entry_iterator_new(allocator, path);
ASSERT_NOT_NULL(iterator);
const struct aws_directory_entry *first_entry = aws_directory_entry_iterator_get_value(iterator);
ASSERT_NOT_NULL(first_entry);
bool first_child_dir_found = false;
bool root_file_found = false;
do {
const struct aws_directory_entry *entry = aws_directory_entry_iterator_get_value(iterator);
if (entry->file_type == AWS_FILE_TYPE_DIRECTORY) {
struct aws_byte_cursor first_child_dir_path_cur = aws_byte_cursor_from_c_str(s_first_child_dir_path);
ASSERT_BIN_ARRAYS_EQUALS(
first_child_dir_path_cur.ptr,
first_child_dir_path_cur.len,
entry->relative_path.ptr,
entry->relative_path.len);
first_child_dir_found = true;
struct aws_string *next_path = aws_string_new_from_cursor(allocator, &entry->relative_path);
struct aws_directory_iterator *next_iter = aws_directory_entry_iterator_new(allocator, next_path);
aws_string_destroy(next_path);
ASSERT_NOT_NULL(next_iter);
entry = aws_directory_entry_iterator_get_value(next_iter);
struct aws_byte_cursor first_child_file_path_cur = aws_byte_cursor_from_c_str(s_first_child_file_path);
ASSERT_BIN_ARRAYS_EQUALS(
first_child_file_path_cur.ptr,
first_child_file_path_cur.len,
entry->relative_path.ptr,
entry->relative_path.len);
ASSERT_INT_EQUALS(AWS_FILE_TYPE_FILE, entry->file_type);
ASSERT_ERROR(AWS_ERROR_LIST_EMPTY, aws_directory_entry_iterator_next(next_iter));
aws_directory_entry_iterator_destroy(next_iter);
} else {
struct aws_byte_cursor root_child_file_path_cur = aws_byte_cursor_from_c_str(s_root_child_path);
ASSERT_BIN_ARRAYS_EQUALS(
root_child_file_path_cur.ptr,
root_child_file_path_cur.len,
entry->relative_path.ptr,
entry->relative_path.len);
ASSERT_INT_EQUALS(AWS_FILE_TYPE_FILE, entry->file_type);
root_file_found = true;
}
} while (aws_directory_entry_iterator_next(iterator) == AWS_OP_SUCCESS);
ASSERT_ERROR(AWS_ERROR_LIST_EMPTY, aws_directory_entry_iterator_next(iterator));
ASSERT_SUCCESS(aws_directory_entry_iterator_previous(iterator));
ASSERT_PTR_EQUALS(first_entry, aws_directory_entry_iterator_get_value(iterator));
aws_directory_entry_iterator_destroy(iterator);
aws_string_destroy(path);
ASSERT_TRUE(root_file_found);
ASSERT_TRUE(first_child_dir_found);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_iteration_test, s_directory_iteration_test_fn)
static int s_directory_iteration_non_existent_directory_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "dir_traversal_test_non_existent");
struct aws_directory_iterator *iterator = aws_directory_entry_iterator_new(allocator, path);
ASSERT_NULL(iterator);
ASSERT_INT_EQUALS(aws_last_error(), AWS_ERROR_FILE_INVALID_PATH);
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_iteration_non_existent_directory_test, s_directory_iteration_non_existent_directory_test_fn)
struct directory_traversal_abort_test_data {
int times_called;
};
bool directory_traversal_abort_test_data(const struct aws_directory_entry *entry, void *user_data) {
(void)entry;
struct directory_traversal_abort_test_data *test_data = user_data;
test_data->times_called += 1;
return false;
}
static int s_directory_traversal_stop_traversal_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "dir_traversal_test");
struct directory_traversal_abort_test_data test_data;
AWS_ZERO_STRUCT(test_data);
ASSERT_ERROR(
AWS_ERROR_OPERATION_INTERUPTED,
aws_directory_traverse(allocator, path, true, directory_traversal_abort_test_data, &test_data));
ASSERT_INT_EQUALS(1, test_data.times_called);
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_traversal_stop_traversal, s_directory_traversal_stop_traversal_fn)
static int s_directory_traversal_on_file_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "dir_traversal_test/root_child.txt");
struct directory_traversal_test_data test_data;
AWS_ZERO_STRUCT(test_data);
ASSERT_ERROR(
AWS_ERROR_FILE_INVALID_PATH, aws_directory_traverse(allocator, path, true, s_on_directory_entry, &test_data));
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_traversal_on_file_test, s_directory_traversal_on_file_test_fn)
static int s_directory_existence_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "dir_traversal_test");
ASSERT_TRUE(aws_directory_exists(path));
aws_string_destroy(path);
path = aws_string_new_from_c_str(allocator, "dir_traversal_test_blah");
ASSERT_FALSE(aws_directory_exists(path));
aws_string_destroy(path);
path = aws_string_new_from_c_str(allocator, "dir_traversal_test/root_child.txt");
ASSERT_FALSE(aws_directory_exists(path));
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_existence_test, s_directory_existence_test_fn)
static int s_directory_creation_deletion_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "temp_dir");
ASSERT_SUCCESS(aws_directory_create(path));
/* should be idempotent */
ASSERT_SUCCESS(aws_directory_create(path));
ASSERT_TRUE(aws_directory_exists(path));
ASSERT_SUCCESS(aws_directory_delete(path, false));
ASSERT_FALSE(aws_directory_exists(path));
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_creation_deletion_test, s_directory_creation_deletion_test_fn)
static int s_directory_non_empty_deletion_fails_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "dir_traversal_test");
ASSERT_TRUE(aws_directory_exists(path));
ASSERT_ERROR(AWS_ERROR_DIRECTORY_NOT_EMPTY, aws_directory_delete(path, false));
ASSERT_TRUE(aws_directory_exists(path));
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_non_empty_deletion_fails_test, s_directory_non_empty_deletion_fails_test_fn)
static int s_directory_non_empty_deletion_recursively_succeeds_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "non_empty_dir_del_test_dir_1");
ASSERT_SUCCESS(aws_directory_create(path));
const char *nested_dir = "non_empty_dir_del_test_dir_1" AWS_PATH_DELIM_STR "test_dir_2";
struct aws_string *nested_dir_path = aws_string_new_from_c_str(allocator, nested_dir);
ASSERT_SUCCESS(aws_directory_create(nested_dir_path));
const char *nested_file =
"non_empty_dir_del_test_dir_1" AWS_PATH_DELIM_STR "test_dir_2" AWS_PATH_DELIM_STR "nested_file.txt";
FILE *nested_file_ptr = aws_fopen(nested_file, "w");
ASSERT_NOT_NULL(nested_file_ptr);
fclose(nested_file_ptr);
ASSERT_SUCCESS(aws_directory_delete(path, true));
ASSERT_FALSE(aws_directory_exists(path));
aws_string_destroy(nested_dir_path);
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(
directory_non_empty_deletion_recursively_succeeds_test,
s_directory_non_empty_deletion_recursively_succeeds_test_fn)
static int s_directory_move_succeeds_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "directory_move_succeeds_test_dir_1");
ASSERT_SUCCESS(aws_directory_create(path));
struct aws_string *to_path = aws_string_new_from_c_str(allocator, "directory_move_succeeds_test_dir_2");
ASSERT_SUCCESS(aws_directory_or_file_move(path, to_path));
ASSERT_FALSE(aws_directory_exists(path));
ASSERT_TRUE(aws_directory_exists(to_path));
ASSERT_SUCCESS(aws_directory_delete(to_path, true));
aws_string_destroy(to_path);
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_move_succeeds_test, s_directory_move_succeeds_test_fn)
static int s_directory_move_src_non_existent_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *path = aws_string_new_from_c_str(allocator, "directory_move_src_non_existent_test_dir_1");
struct aws_string *to_path = aws_string_new_from_c_str(allocator, "directory_move_src_non_existent_test_dir_2");
ASSERT_ERROR(AWS_ERROR_FILE_INVALID_PATH, aws_directory_or_file_move(path, to_path));
aws_string_destroy(to_path);
aws_string_destroy(path);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(directory_move_src_non_existent_test, s_directory_move_src_non_existent_test_fn)
static int s_test_home_directory_not_null(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *home_directory = aws_get_home_directory(allocator);
ASSERT_TRUE(home_directory != NULL);
aws_string_destroy(home_directory);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_home_directory_not_null, s_test_home_directory_not_null);
static int s_test_normalize_posix_directory_separator(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *buffer = aws_string_new_from_c_str(allocator, "./test/path/abc");
struct aws_byte_buf path_buf = aws_byte_buf_from_array(buffer->bytes, buffer->len);
aws_normalize_directory_separator(&path_buf);
for (size_t i = 0; i < path_buf.len; ++i) {
if (aws_is_any_directory_separator((char)path_buf.buffer[i])) {
ASSERT_INT_EQUALS(aws_get_platform_directory_separator(), path_buf.buffer[i]);
}
}
aws_string_destroy(buffer);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_normalize_posix_directory_separator, s_test_normalize_posix_directory_separator);
static int s_test_normalize_windows_directory_separator(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_string *buffer = aws_string_new_from_c_str(allocator, ".\\test\\path\\abc");
struct aws_byte_buf path_buf = aws_byte_buf_from_array(buffer->bytes, buffer->len);
aws_normalize_directory_separator(&path_buf);
for (size_t i = 0; i < path_buf.len; ++i) {
if (aws_is_any_directory_separator((char)path_buf.buffer[i])) {
ASSERT_INT_EQUALS(aws_get_platform_directory_separator(), path_buf.buffer[i]);
}
}
aws_string_destroy(buffer);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_normalize_windows_directory_separator, s_test_normalize_windows_directory_separator);
static int s_check_byte_buf_from_file(const struct aws_byte_buf *buf, struct aws_byte_cursor expected_contents) {
ASSERT_TRUE(aws_byte_cursor_eq_byte_buf(&expected_contents, buf), "Contents should match");
ASSERT_TRUE(buf->capacity > buf->len, "Buffer should end with null-terminator");
ASSERT_UINT_EQUALS(0, buf->buffer[buf->len], "Buffer should end with null-terminator");
return AWS_OP_SUCCESS;
}
static int s_create_file_then_read_it(struct aws_allocator *allocator, struct aws_byte_cursor contents) {
/* create file */
const char *filename = "testy";
FILE *f = aws_fopen(filename, "wb");
ASSERT_UINT_EQUALS(contents.len, fwrite(contents.ptr, 1, contents.len, f));
ASSERT_INT_EQUALS(0, fclose(f));
struct aws_byte_buf buf;
/* check aws_byte_buf_init_from_file() */
ASSERT_SUCCESS(aws_byte_buf_init_from_file(&buf, allocator, filename));
ASSERT_SUCCESS(s_check_byte_buf_from_file(&buf, contents));
aws_byte_buf_clean_up(&buf);
/* now check aws_byte_buf_init_from_file_with_size_hint() ... */
/* size_hint more then big enough */
size_t size_hint = contents.len * 2;
ASSERT_SUCCESS(aws_byte_buf_init_from_file_with_size_hint(&buf, allocator, filename, size_hint));
ASSERT_SUCCESS(s_check_byte_buf_from_file(&buf, contents));
aws_byte_buf_clean_up(&buf);
/* size_hint not big enough for null-terminator */
size_hint = contents.len;
ASSERT_SUCCESS(aws_byte_buf_init_from_file_with_size_hint(&buf, allocator, filename, size_hint));
ASSERT_SUCCESS(s_check_byte_buf_from_file(&buf, contents));
aws_byte_buf_clean_up(&buf);
/* size_hint 0 */
size_hint = 0;
ASSERT_SUCCESS(aws_byte_buf_init_from_file_with_size_hint(&buf, allocator, filename, size_hint));
ASSERT_SUCCESS(s_check_byte_buf_from_file(&buf, contents));
aws_byte_buf_clean_up(&buf);
/* size_hint 1 */
size_hint = 1;
ASSERT_SUCCESS(aws_byte_buf_init_from_file_with_size_hint(&buf, allocator, filename, size_hint));
ASSERT_SUCCESS(s_check_byte_buf_from_file(&buf, contents));
aws_byte_buf_clean_up(&buf);
remove(filename);
return AWS_OP_SUCCESS;
}
/* Read an actual "special file" (if it exists on this machine) */
static int s_read_special_file(struct aws_allocator *allocator, const char *filename) {
struct aws_string *filename_str = aws_string_new_from_c_str(allocator, filename);
bool exists = aws_path_exists(filename_str);
aws_string_destroy(filename_str);
if (!exists) {
return AWS_OP_SUCCESS;
}
struct aws_byte_buf buf;
ASSERT_SUCCESS(aws_byte_buf_init_from_file(&buf, allocator, filename));
ASSERT_TRUE(buf.capacity > buf.len, "Buffer should end with null-terminator");
ASSERT_UINT_EQUALS(0, buf.buffer[buf.len], "Buffer should end with null-terminator");
if (strcmp("/dev/null", filename) == 0) {
ASSERT_UINT_EQUALS(0, buf.len, "expected /dev/null to be empty");
} else {
ASSERT_TRUE(buf.len > 0, "expected special file to have data");
}
aws_byte_buf_clean_up(&buf);
return AWS_OP_SUCCESS;
}
static int s_test_byte_buf_init_from_file(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
/* simple text file */
ASSERT_SUCCESS(s_create_file_then_read_it(allocator, aws_byte_cursor_from_c_str("asdf")));
/* empty file */
ASSERT_SUCCESS(s_create_file_then_read_it(allocator, aws_byte_cursor_from_c_str("")));
/* large 3MB+1byte binary file */
struct aws_byte_buf big_rando;
aws_byte_buf_init(&big_rando, allocator, (1024 * 1024 * 3) + 1);
ASSERT_SUCCESS(aws_device_random_buffer(&big_rando));
ASSERT_SUCCESS(s_create_file_then_read_it(allocator, aws_byte_cursor_from_buf(&big_rando)));
aws_byte_buf_clean_up(&big_rando);
/* test some "special files" (if they exist) */
ASSERT_SUCCESS(s_read_special_file(allocator, "/proc/cpuinfo"));
ASSERT_SUCCESS(s_read_special_file(allocator, "/proc/net/tcp"));
ASSERT_SUCCESS(s_read_special_file(allocator, "/sys/devices/virtual/dmi/id/sys_vendor"));
ASSERT_SUCCESS(s_read_special_file(allocator, "/dev/null"));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_byte_buf_init_from_file, s_test_byte_buf_init_from_file)
|