123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477 |
- #include "CuTest.h"
- #include "apr_portable.h"
- #include "apr_file_info.h"
- #include "aos_log.h"
- #include "aos_util.h"
- #include "aos_string.h"
- #include "aos_status.h"
- #include "oss_auth.h"
- #include "oss_xml.h"
- #include "oss_util.c"
- #include "aos_transport.c"
- /*
- * oss_xml.c
- */
- void test_get_xml_doc_with_empty_aos_list(CuTest *tc)
- {
- int ret;
- mxml_node_t *xml_node;
- aos_list_t bc;
- aos_list_init(&bc);
-
- ret = get_xmldoc(&bc, &xml_node);
- CuAssertIntEquals(tc, AOSE_XML_PARSE_ERROR, ret);
- printf("test_get_xml_doc_with_empty_aos_list ok\n");
- }
- /*
- * aos_list.h
- */
- void test_aos_list_movelist_with_empty_list(CuTest *tc) {
- aos_list_t list;
- aos_list_t new_list;
- aos_list_init(&list);
- aos_list_movelist(&list, &new_list);
- CuAssertTrue(tc, new_list.prev == &new_list);
- CuAssertTrue(tc, new_list.next == &new_list);
- printf("test_aos_list_movelist_with_empty_list ok\n");
- }
- /*
- * oss_util.c
- */
- void test_starts_with_failed(CuTest *tc) {
- int ret;
- aos_string_t str;
- aos_str_set(&str, "hangzhou.city");
-
- ret = starts_with(&str, "xixi");
- CuAssertIntEquals(tc, 0, ret);
- printf("test_starts_with_failed ok\n");
- }
- void test_is_valid_ip(CuTest *tc) {
- int ret;
- ret = is_valid_ip("140.205.63.8");
- CuAssertIntEquals(tc, 1, ret);
- printf("test_is_valid_ip ok\n");
- }
- void test_oss_request_options_create_with_null_pool(CuTest *tc) {
- oss_request_options_t *option;
- option = oss_request_options_create(NULL);
- CuAssertTrue(tc, NULL != option);
- aos_pool_destroy(option->pool);
- printf("test_oss_request_options_create_with_null_pool ok\n");
- }
- void test_oss_get_part_size(CuTest *tc) {
- int64_t file_size = 49999;
- int64_t part_size = 2;
- oss_get_part_size(file_size, &part_size);
- CuAssertIntEquals(tc, 5, (int)part_size);
- printf("test_oss_get_part_size ok\n");
- }
- void test_oss_get_object_uri_with_cname(CuTest *tc) {
- aos_pool_t *p;
- oss_request_options_t *options;
- aos_string_t bucket;
- aos_string_t object;
- aos_http_request_t req;
- aos_pool_create(&p, NULL);
- options = oss_request_options_create(p);
- options->config = oss_config_create(options->pool);
- options->config->is_cname = 1;
- aos_str_set(&options->config->endpoint, "img.abc.com");
- aos_str_set(&bucket, "bucket-1");
- aos_str_set(&object, "key-2");
-
- oss_get_object_uri(options, &bucket, &object, &req);
- CuAssertStrEquals(tc, "", req.proto);
- CuAssertStrEquals(tc, "key-2", req.uri);
- CuAssertStrEquals(tc, "img.abc.com", req.host);
-
- aos_pool_destroy(p);
- printf("test_oss_get_object_uri_with_cname ok\n");
- }
- void test_oss_get_object_uri_with_ip(CuTest *tc) {
- aos_pool_t *p;
- oss_request_options_t *options;
- aos_string_t bucket;
- aos_string_t object;
- aos_http_request_t req;
- aos_pool_create(&p, NULL);
- options = oss_request_options_create(p);
- options->config = oss_config_create(options->pool);
- options->config->is_cname = 0;
- aos_str_set(&options->config->endpoint, "http://140.205.63.8");
- aos_str_set(&bucket, "bucket-1");
- aos_str_set(&object, "key-2");
-
- oss_get_object_uri(options, &bucket, &object, &req);
- CuAssertStrEquals(tc, "http://", req.proto);
- CuAssertStrEquals(tc, "bucket-1/key-2", req.uri);
- CuAssertStrEquals(tc, "140.205.63.8", req.host);
-
- aos_pool_destroy(p);
- printf("test_oss_get_object_uri_with_ip ok\n");
- }
- void test_oss_get_bucket_uri_with_ip(CuTest *tc) {
- aos_pool_t *p;
- oss_request_options_t *options;
- aos_string_t bucket;
- aos_http_request_t req;
- aos_pool_create(&p, NULL);
- options = oss_request_options_create(p);
- options->config = oss_config_create(options->pool);
- options->config->is_cname = 0;
- aos_str_set(&options->config->endpoint, "140.205.63.8");
- aos_str_set(&bucket, "bucket-1");
-
- oss_get_bucket_uri(options, &bucket, &req);
- CuAssertStrEquals(tc, "", req.proto);
- CuAssertStrEquals(tc, "bucket-1", req.uri);
- CuAssertStrEquals(tc, "140.205.63.8", req.host);
- CuAssertStrEquals(tc, "bucket-1", req.resource);
-
- aos_pool_destroy(p);
- printf("test_oss_get_bucket_uri_with_ip ok\n");
- }
- void test_oss_get_bucket_uri_with_cname(CuTest *tc) {
- aos_pool_t *p;
- oss_request_options_t *options;
- aos_string_t bucket;
- aos_http_request_t req;
- aos_pool_create(&p, NULL);
- options = oss_request_options_create(p);
- options->config = oss_config_create(options->pool);
- options->config->is_cname = 1;
- aos_str_set(&options->config->endpoint, "https://img.abc.com");
- aos_str_set(&bucket, "bucket-1");
-
- oss_get_bucket_uri(options, &bucket, &req);
- CuAssertStrEquals(tc, "https://", req.proto);
- CuAssertStrEquals(tc, "bucket-1", req.uri);
- CuAssertStrEquals(tc, "img.abc.com", req.host);
- CuAssertStrEquals(tc, "bucket-1/", req.resource);
-
- aos_pool_destroy(p);
- printf("test_oss_get_bucket_uri_with_cname ok\n");
- }
- void test_aos_log_format_default(CuTest *tc) {
- /*
- * check is coredump
- */
- aos_log_format_default(AOS_LOG_INFO, "/tmp/a", 10, "fun1", "%d-%d", 1, 2);
- printf("test_aos_log_format_default ok\n");
- }
- void test_aos_log_print_default_with_null_file(CuTest *tc) {
- /*
- * check is coredump
- */
- aos_stderr_file = NULL;
- aos_log_print_default("abc", 3);
- printf("test_aos_log_print_default_with_null_file ok\n");
- }
- /*
- * aos_transport
- */
- void test_aos_curl_code_to_status(CuTest *tc) {
- int code = aos_curl_code_to_status(CURLE_OUT_OF_MEMORY);
- CuAssertIntEquals(tc, AOSE_OUT_MEMORY, code);
- code = aos_curl_code_to_status(CURLE_COULDNT_RESOLVE_PROXY);
- CuAssertIntEquals(tc, AOSE_NAME_LOOKUP_ERROR, code);
- code = aos_curl_code_to_status(CURLE_COULDNT_RESOLVE_HOST);
- CuAssertIntEquals(tc, AOSE_NAME_LOOKUP_ERROR, code);
- code = aos_curl_code_to_status(CURLE_COULDNT_CONNECT);
- CuAssertIntEquals(tc, AOSE_FAILED_CONNECT, code);
- code = aos_curl_code_to_status(CURLE_WRITE_ERROR);
- CuAssertIntEquals(tc, AOSE_CONNECTION_FAILED, code);
- code = aos_curl_code_to_status(CURLE_OPERATION_TIMEDOUT);
- CuAssertIntEquals(tc, AOSE_CONNECTION_FAILED, code);
- code = aos_curl_code_to_status(CURLE_PARTIAL_FILE);
- CuAssertIntEquals(tc, AOSE_OK, code);
- code = aos_curl_code_to_status(CURLE_SSL_CACERT);
- CuAssertIntEquals(tc, AOSE_FAILED_VERIFICATION, code);
- code = aos_curl_code_to_status(CURLE_FTP_WEIRD_PASV_REPLY);
- CuAssertIntEquals(tc, AOSE_INTERNAL_ERROR, code);
- printf("test_aos_curl_code_to_status ok\n");
- }
- /*
- * aos_string.h
- */
- void test_aos_unquote_str(CuTest *tc) {
- aos_string_t str;
- aos_str_set(&str, "\"abc\"");
- aos_unquote_str(&str);
- CuAssertStrnEquals(tc, "abc", strlen("abc"), str.data);
- CuAssertIntEquals(tc, 3, str.len);
- printf("test_aos_unquote_str ok\n");
- }
- void test_aos_ends_with(CuTest *tc) {
- int ret;
- aos_string_t str;
- aos_string_t suffix;
- aos_str_set(&str, "abc.mn.qp");
- aos_str_set(&suffix, ".qp");
- ret = aos_ends_with(&str, &suffix);
- CuAssertIntEquals(tc, 1, ret);
- aos_str_set(&suffix, ".mn");
- ret = aos_ends_with(&str, &suffix);
- CuAssertIntEquals(tc, 0, ret);
- ret = aos_ends_with(&str, NULL);
- CuAssertIntEquals(tc, 0, ret);
- printf("test_aos_ends_with ok\n");
- }
- /*
- * aos_util.h
- */
- void test_aos_url_encode_failed(CuTest *tc) {
- int ret;
- char *dest;
- dest = (char*)malloc(1024);
-
- ret = aos_url_encode(dest, "/mingdi-hz-3/./xxx/./ddd/", 1);
- CuAssertIntEquals(tc, AOSE_INVALID_ARGUMENT, ret);
- free(dest);
- printf("test_aos_url_encode_failed ok\n");
- }
- void test_aos_url_encode_with_blank_char(CuTest *tc) {
- int ret;
- char *source;
- char *dest;
- source = "abc.xx.com/a b";
- dest = (char*)malloc(20);
-
- ret = aos_url_encode(dest, source, strlen(source));
- CuAssertIntEquals(tc, AOSE_OK, ret);
- CuAssertStrEquals(tc, "abc.xx.com%2Fa%20b", dest);
- free(dest);
- printf("test_aos_url_encode_with_blank_char ok\n");
- }
- void test_aos_url_decode_with_percent(CuTest *tc) {
- int ret;
- char *in;
- char *out;
- in = "abc.xx.com/a%20b";
- out = (char*)malloc(20);
-
- ret = aos_url_decode(in, out);
- CuAssertIntEquals(tc, 0, ret);
- free(out);
-
- printf("test_aos_url_decode_with_percent ok\n");
- }
- void test_aos_url_decode_with_add(CuTest *tc) {
- int ret;
- char *in;
- char *out;
- in = "abc.xx.com/a+b";
- out = (char*)malloc(20);
-
- ret = aos_url_decode(in, out);
- CuAssertIntEquals(tc, 0, ret);
- free(out);
- printf("test_aos_url_decode_with_add ok\n");
- }
- void test_aos_url_decode_failed(CuTest *tc) {
- int ret;
- char *in;
- char *out;
- in = "abc.xx.com/a%xb";
- out = (char*)malloc(20);
-
- ret = aos_url_decode(in, out);
- CuAssertIntEquals(tc, -1, ret);
- free(out);
-
- printf("test_aos_url_decode_failed ok\n");
- }
- void test_aos_should_retry(CuTest *tc) {
- aos_status_t s;
- aos_status_set(&s, 500, "", "");
- CuAssertIntEquals(tc, 1, aos_should_retry(&s));
- aos_status_set(&s, 505, "", "");
- CuAssertIntEquals(tc, 1, aos_should_retry(&s));
- aos_status_set(&s, 400, "", "");
- CuAssertIntEquals(tc, 0, aos_should_retry(&s));
- aos_status_set(&s, 0, "-995", "");
- CuAssertIntEquals(tc, 1, aos_should_retry(&s));
- aos_status_set(&s, 0, "-993", "");
- CuAssertIntEquals(tc, 0, aos_should_retry(&s));
- aos_status_set(&s, 0, "0", "NULL");
- CuAssertIntEquals(tc, 0, aos_should_retry(&s));
- CuAssertIntEquals(tc, 0, aos_should_retry(NULL));
- aos_status_set(&s, 200, "", "");
- CuAssertIntEquals(tc, 0, aos_should_retry(&s));
- aos_status_set(&s, 200, NULL, NULL);
- CuAssertIntEquals(tc, 0, aos_should_retry(&s));
- printf("test_aos_should_retry ok\n");
- }
- void test_aos_strtoll(CuTest *tc)
- {
- int64_t val = 0;
- char *endptr = NULL;
- val = aos_strtoll("0", NULL, 10);
- CuAssertTrue(tc, val == 0);
- val = aos_strtoll("9223372036854775807", NULL, 10);
- CuAssertTrue(tc, val == 9223372036854775807);
- val = aos_strtoll("-9223372036854775808", NULL, 10);
- CuAssertTrue(tc, val == INT64_MIN);
- val = aos_strtoll("2147483648ABC", &endptr, 10);
- CuAssertTrue(tc, val == 2147483648);
- CuAssertStrEquals(tc, endptr, "ABC");
- val = aos_atoi64("0");
- CuAssertTrue(tc, val == 0);
- val = aos_atoi64("9223372036854775807");
- CuAssertTrue(tc, val == 9223372036854775807);
- val = aos_atoi64("-9223372036854775808");
- CuAssertTrue(tc, val == INT64_MIN);
- }
- void test_aos_strtoull(CuTest *tc)
- {
- uint64_t val = 0;
- char *endptr = NULL;
- val = aos_strtoull("0", NULL, 10);
- CuAssertTrue(tc, val == 0);
- val = aos_strtoull("9223372036854775807", NULL, 10);
- CuAssertTrue(tc, val == 9223372036854775807);
- val = aos_strtoull("18446744073709551615", NULL, 10);
- CuAssertTrue(tc, val == UINT64_MAX);
- val = aos_strtoll("2147483648ABC", &endptr, 10);
- CuAssertTrue(tc, val == 2147483648);
- CuAssertStrEquals(tc, endptr, "ABC");
- val = aos_atoui64("0");
- CuAssertTrue(tc, val == 0);
- val = aos_atoui64("9223372036854775807");
- CuAssertTrue(tc, val == 9223372036854775807);
- val = aos_atoui64("18446744073709551615");
- CuAssertTrue(tc, val == UINT64_MAX);
- }
- CuSuite *test_aos()
- {
- CuSuite* suite = CuSuiteNew();
- SUITE_ADD_TEST(suite, test_get_xml_doc_with_empty_aos_list);
- SUITE_ADD_TEST(suite, test_aos_list_movelist_with_empty_list);
- SUITE_ADD_TEST(suite, test_starts_with_failed);
- SUITE_ADD_TEST(suite, test_is_valid_ip);
- SUITE_ADD_TEST(suite, test_oss_request_options_create_with_null_pool);
- SUITE_ADD_TEST(suite, test_oss_get_part_size);
- SUITE_ADD_TEST(suite, test_oss_get_object_uri_with_cname);
- SUITE_ADD_TEST(suite, test_oss_get_object_uri_with_ip);
- SUITE_ADD_TEST(suite, test_oss_get_bucket_uri_with_cname);
- SUITE_ADD_TEST(suite, test_oss_get_bucket_uri_with_ip);
- SUITE_ADD_TEST(suite, test_aos_log_format_default);
- SUITE_ADD_TEST(suite, test_aos_log_print_default_with_null_file);
- SUITE_ADD_TEST(suite, test_aos_curl_code_to_status);
- SUITE_ADD_TEST(suite, test_aos_unquote_str);
- SUITE_ADD_TEST(suite, test_aos_ends_with);
- SUITE_ADD_TEST(suite, test_aos_url_encode_failed);
- SUITE_ADD_TEST(suite, test_aos_url_encode_with_blank_char);
- SUITE_ADD_TEST(suite, test_aos_url_decode_with_percent);
- SUITE_ADD_TEST(suite, test_aos_url_decode_with_add);
- SUITE_ADD_TEST(suite, test_aos_url_decode_failed);
- SUITE_ADD_TEST(suite, test_aos_should_retry);
- SUITE_ADD_TEST(suite, test_aos_strtoll);
- SUITE_ADD_TEST(suite, test_aos_strtoull);
- return suite;
- }
|