test_aos.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. #include "CuTest.h"
  2. #include "apr_portable.h"
  3. #include "apr_file_info.h"
  4. #include "aos_log.h"
  5. #include "aos_util.h"
  6. #include "aos_string.h"
  7. #include "aos_status.h"
  8. #include "oss_auth.h"
  9. #include "oss_xml.h"
  10. #include "oss_util.c"
  11. #include "aos_transport.c"
  12. /*
  13. * oss_xml.c
  14. */
  15. void test_get_xml_doc_with_empty_aos_list(CuTest *tc)
  16. {
  17. int ret;
  18. mxml_node_t *xml_node;
  19. aos_list_t bc;
  20. aos_list_init(&bc);
  21. ret = get_xmldoc(&bc, &xml_node);
  22. CuAssertIntEquals(tc, AOSE_XML_PARSE_ERROR, ret);
  23. printf("test_get_xml_doc_with_empty_aos_list ok\n");
  24. }
  25. /*
  26. * aos_list.h
  27. */
  28. void test_aos_list_movelist_with_empty_list(CuTest *tc) {
  29. aos_list_t list;
  30. aos_list_t new_list;
  31. aos_list_init(&list);
  32. aos_list_movelist(&list, &new_list);
  33. CuAssertTrue(tc, new_list.prev == &new_list);
  34. CuAssertTrue(tc, new_list.next == &new_list);
  35. printf("test_aos_list_movelist_with_empty_list ok\n");
  36. }
  37. /*
  38. * oss_util.c
  39. */
  40. void test_starts_with_failed(CuTest *tc) {
  41. int ret;
  42. aos_string_t str;
  43. aos_str_set(&str, "hangzhou.city");
  44. ret = starts_with(&str, "xixi");
  45. CuAssertIntEquals(tc, 0, ret);
  46. printf("test_starts_with_failed ok\n");
  47. }
  48. void test_is_valid_ip(CuTest *tc) {
  49. int ret;
  50. ret = is_valid_ip("140.205.63.8");
  51. CuAssertIntEquals(tc, 1, ret);
  52. printf("test_is_valid_ip ok\n");
  53. }
  54. void test_oss_request_options_create_with_null_pool(CuTest *tc) {
  55. oss_request_options_t *option;
  56. option = oss_request_options_create(NULL);
  57. CuAssertTrue(tc, NULL != option);
  58. aos_pool_destroy(option->pool);
  59. printf("test_oss_request_options_create_with_null_pool ok\n");
  60. }
  61. void test_oss_get_part_size(CuTest *tc) {
  62. int64_t file_size = 49999;
  63. int64_t part_size = 2;
  64. oss_get_part_size(file_size, &part_size);
  65. CuAssertIntEquals(tc, 5, (int)part_size);
  66. printf("test_oss_get_part_size ok\n");
  67. }
  68. void test_oss_get_object_uri_with_cname(CuTest *tc) {
  69. aos_pool_t *p;
  70. oss_request_options_t *options;
  71. aos_string_t bucket;
  72. aos_string_t object;
  73. aos_http_request_t req;
  74. aos_pool_create(&p, NULL);
  75. options = oss_request_options_create(p);
  76. options->config = oss_config_create(options->pool);
  77. options->config->is_cname = 1;
  78. aos_str_set(&options->config->endpoint, "img.abc.com");
  79. aos_str_set(&bucket, "bucket-1");
  80. aos_str_set(&object, "key-2");
  81. oss_get_object_uri(options, &bucket, &object, &req);
  82. CuAssertStrEquals(tc, "", req.proto);
  83. CuAssertStrEquals(tc, "key-2", req.uri);
  84. CuAssertStrEquals(tc, "img.abc.com", req.host);
  85. aos_pool_destroy(p);
  86. printf("test_oss_get_object_uri_with_cname ok\n");
  87. }
  88. void test_oss_get_object_uri_with_ip(CuTest *tc) {
  89. aos_pool_t *p;
  90. oss_request_options_t *options;
  91. aos_string_t bucket;
  92. aos_string_t object;
  93. aos_http_request_t req;
  94. aos_pool_create(&p, NULL);
  95. options = oss_request_options_create(p);
  96. options->config = oss_config_create(options->pool);
  97. options->config->is_cname = 0;
  98. aos_str_set(&options->config->endpoint, "http://140.205.63.8");
  99. aos_str_set(&bucket, "bucket-1");
  100. aos_str_set(&object, "key-2");
  101. oss_get_object_uri(options, &bucket, &object, &req);
  102. CuAssertStrEquals(tc, "http://", req.proto);
  103. CuAssertStrEquals(tc, "bucket-1/key-2", req.uri);
  104. CuAssertStrEquals(tc, "140.205.63.8", req.host);
  105. aos_pool_destroy(p);
  106. printf("test_oss_get_object_uri_with_ip ok\n");
  107. }
  108. void test_oss_get_bucket_uri_with_ip(CuTest *tc) {
  109. aos_pool_t *p;
  110. oss_request_options_t *options;
  111. aos_string_t bucket;
  112. aos_http_request_t req;
  113. aos_pool_create(&p, NULL);
  114. options = oss_request_options_create(p);
  115. options->config = oss_config_create(options->pool);
  116. options->config->is_cname = 0;
  117. aos_str_set(&options->config->endpoint, "140.205.63.8");
  118. aos_str_set(&bucket, "bucket-1");
  119. oss_get_bucket_uri(options, &bucket, &req);
  120. CuAssertStrEquals(tc, "", req.proto);
  121. CuAssertStrEquals(tc, "bucket-1", req.uri);
  122. CuAssertStrEquals(tc, "140.205.63.8", req.host);
  123. CuAssertStrEquals(tc, "bucket-1", req.resource);
  124. aos_pool_destroy(p);
  125. printf("test_oss_get_bucket_uri_with_ip ok\n");
  126. }
  127. void test_oss_get_bucket_uri_with_cname(CuTest *tc) {
  128. aos_pool_t *p;
  129. oss_request_options_t *options;
  130. aos_string_t bucket;
  131. aos_http_request_t req;
  132. aos_pool_create(&p, NULL);
  133. options = oss_request_options_create(p);
  134. options->config = oss_config_create(options->pool);
  135. options->config->is_cname = 1;
  136. aos_str_set(&options->config->endpoint, "https://img.abc.com");
  137. aos_str_set(&bucket, "bucket-1");
  138. oss_get_bucket_uri(options, &bucket, &req);
  139. CuAssertStrEquals(tc, "https://", req.proto);
  140. CuAssertStrEquals(tc, "bucket-1", req.uri);
  141. CuAssertStrEquals(tc, "img.abc.com", req.host);
  142. CuAssertStrEquals(tc, "bucket-1/", req.resource);
  143. aos_pool_destroy(p);
  144. printf("test_oss_get_bucket_uri_with_cname ok\n");
  145. }
  146. void test_aos_log_format_default(CuTest *tc) {
  147. /*
  148. * check is coredump
  149. */
  150. aos_log_format_default(AOS_LOG_INFO, "/tmp/a", 10, "fun1", "%d-%d", 1, 2);
  151. printf("test_aos_log_format_default ok\n");
  152. }
  153. void test_aos_log_print_default_with_null_file(CuTest *tc) {
  154. /*
  155. * check is coredump
  156. */
  157. aos_stderr_file = NULL;
  158. aos_log_print_default("abc", 3);
  159. printf("test_aos_log_print_default_with_null_file ok\n");
  160. }
  161. /*
  162. * aos_transport
  163. */
  164. void test_aos_curl_code_to_status(CuTest *tc) {
  165. int code = aos_curl_code_to_status(CURLE_OUT_OF_MEMORY);
  166. CuAssertIntEquals(tc, AOSE_OUT_MEMORY, code);
  167. code = aos_curl_code_to_status(CURLE_COULDNT_RESOLVE_PROXY);
  168. CuAssertIntEquals(tc, AOSE_NAME_LOOKUP_ERROR, code);
  169. code = aos_curl_code_to_status(CURLE_COULDNT_RESOLVE_HOST);
  170. CuAssertIntEquals(tc, AOSE_NAME_LOOKUP_ERROR, code);
  171. code = aos_curl_code_to_status(CURLE_COULDNT_CONNECT);
  172. CuAssertIntEquals(tc, AOSE_FAILED_CONNECT, code);
  173. code = aos_curl_code_to_status(CURLE_WRITE_ERROR);
  174. CuAssertIntEquals(tc, AOSE_CONNECTION_FAILED, code);
  175. code = aos_curl_code_to_status(CURLE_OPERATION_TIMEDOUT);
  176. CuAssertIntEquals(tc, AOSE_CONNECTION_FAILED, code);
  177. code = aos_curl_code_to_status(CURLE_PARTIAL_FILE);
  178. CuAssertIntEquals(tc, AOSE_OK, code);
  179. code = aos_curl_code_to_status(CURLE_SSL_CACERT);
  180. CuAssertIntEquals(tc, AOSE_FAILED_VERIFICATION, code);
  181. code = aos_curl_code_to_status(CURLE_FTP_WEIRD_PASV_REPLY);
  182. CuAssertIntEquals(tc, AOSE_INTERNAL_ERROR, code);
  183. printf("test_aos_curl_code_to_status ok\n");
  184. }
  185. /*
  186. * aos_string.h
  187. */
  188. void test_aos_unquote_str(CuTest *tc) {
  189. aos_string_t str;
  190. aos_str_set(&str, "\"abc\"");
  191. aos_unquote_str(&str);
  192. CuAssertStrnEquals(tc, "abc", strlen("abc"), str.data);
  193. CuAssertIntEquals(tc, 3, str.len);
  194. printf("test_aos_unquote_str ok\n");
  195. }
  196. void test_aos_ends_with(CuTest *tc) {
  197. int ret;
  198. aos_string_t str;
  199. aos_string_t suffix;
  200. aos_str_set(&str, "abc.mn.qp");
  201. aos_str_set(&suffix, ".qp");
  202. ret = aos_ends_with(&str, &suffix);
  203. CuAssertIntEquals(tc, 1, ret);
  204. aos_str_set(&suffix, ".mn");
  205. ret = aos_ends_with(&str, &suffix);
  206. CuAssertIntEquals(tc, 0, ret);
  207. ret = aos_ends_with(&str, NULL);
  208. CuAssertIntEquals(tc, 0, ret);
  209. printf("test_aos_ends_with ok\n");
  210. }
  211. /*
  212. * aos_util.h
  213. */
  214. void test_aos_url_encode_failed(CuTest *tc) {
  215. int ret;
  216. char *dest;
  217. dest = (char*)malloc(1024);
  218. ret = aos_url_encode(dest, "/mingdi-hz-3/./xxx/./ddd/", 1);
  219. CuAssertIntEquals(tc, AOSE_INVALID_ARGUMENT, ret);
  220. free(dest);
  221. printf("test_aos_url_encode_failed ok\n");
  222. }
  223. void test_aos_url_encode_with_blank_char(CuTest *tc) {
  224. int ret;
  225. char *source;
  226. char *dest;
  227. source = "abc.xx.com/a b";
  228. dest = (char*)malloc(20);
  229. ret = aos_url_encode(dest, source, strlen(source));
  230. CuAssertIntEquals(tc, AOSE_OK, ret);
  231. CuAssertStrEquals(tc, "abc.xx.com%2Fa%20b", dest);
  232. free(dest);
  233. printf("test_aos_url_encode_with_blank_char ok\n");
  234. }
  235. void test_aos_url_decode_with_percent(CuTest *tc) {
  236. int ret;
  237. char *in;
  238. char *out;
  239. in = "abc.xx.com/a%20b";
  240. out = (char*)malloc(20);
  241. ret = aos_url_decode(in, out);
  242. CuAssertIntEquals(tc, 0, ret);
  243. free(out);
  244. printf("test_aos_url_decode_with_percent ok\n");
  245. }
  246. void test_aos_url_decode_with_add(CuTest *tc) {
  247. int ret;
  248. char *in;
  249. char *out;
  250. in = "abc.xx.com/a+b";
  251. out = (char*)malloc(20);
  252. ret = aos_url_decode(in, out);
  253. CuAssertIntEquals(tc, 0, ret);
  254. free(out);
  255. printf("test_aos_url_decode_with_add ok\n");
  256. }
  257. void test_aos_url_decode_failed(CuTest *tc) {
  258. int ret;
  259. char *in;
  260. char *out;
  261. in = "abc.xx.com/a%xb";
  262. out = (char*)malloc(20);
  263. ret = aos_url_decode(in, out);
  264. CuAssertIntEquals(tc, -1, ret);
  265. free(out);
  266. printf("test_aos_url_decode_failed ok\n");
  267. }
  268. void test_aos_should_retry(CuTest *tc) {
  269. aos_status_t s;
  270. aos_status_set(&s, 500, "", "");
  271. CuAssertIntEquals(tc, 1, aos_should_retry(&s));
  272. aos_status_set(&s, 505, "", "");
  273. CuAssertIntEquals(tc, 1, aos_should_retry(&s));
  274. aos_status_set(&s, 400, "", "");
  275. CuAssertIntEquals(tc, 0, aos_should_retry(&s));
  276. aos_status_set(&s, 0, "-995", "");
  277. CuAssertIntEquals(tc, 1, aos_should_retry(&s));
  278. aos_status_set(&s, 0, "-993", "");
  279. CuAssertIntEquals(tc, 0, aos_should_retry(&s));
  280. aos_status_set(&s, 0, "0", "NULL");
  281. CuAssertIntEquals(tc, 0, aos_should_retry(&s));
  282. CuAssertIntEquals(tc, 0, aos_should_retry(NULL));
  283. aos_status_set(&s, 200, "", "");
  284. CuAssertIntEquals(tc, 0, aos_should_retry(&s));
  285. aos_status_set(&s, 200, NULL, NULL);
  286. CuAssertIntEquals(tc, 0, aos_should_retry(&s));
  287. printf("test_aos_should_retry ok\n");
  288. }
  289. void test_aos_strtoll(CuTest *tc)
  290. {
  291. int64_t val = 0;
  292. char *endptr = NULL;
  293. val = aos_strtoll("0", NULL, 10);
  294. CuAssertTrue(tc, val == 0);
  295. val = aos_strtoll("9223372036854775807", NULL, 10);
  296. CuAssertTrue(tc, val == 9223372036854775807);
  297. val = aos_strtoll("-9223372036854775808", NULL, 10);
  298. CuAssertTrue(tc, val == INT64_MIN);
  299. val = aos_strtoll("2147483648ABC", &endptr, 10);
  300. CuAssertTrue(tc, val == 2147483648);
  301. CuAssertStrEquals(tc, endptr, "ABC");
  302. val = aos_atoi64("0");
  303. CuAssertTrue(tc, val == 0);
  304. val = aos_atoi64("9223372036854775807");
  305. CuAssertTrue(tc, val == 9223372036854775807);
  306. val = aos_atoi64("-9223372036854775808");
  307. CuAssertTrue(tc, val == INT64_MIN);
  308. }
  309. void test_aos_strtoull(CuTest *tc)
  310. {
  311. uint64_t val = 0;
  312. char *endptr = NULL;
  313. val = aos_strtoull("0", NULL, 10);
  314. CuAssertTrue(tc, val == 0);
  315. val = aos_strtoull("9223372036854775807", NULL, 10);
  316. CuAssertTrue(tc, val == 9223372036854775807);
  317. val = aos_strtoull("18446744073709551615", NULL, 10);
  318. CuAssertTrue(tc, val == UINT64_MAX);
  319. val = aos_strtoll("2147483648ABC", &endptr, 10);
  320. CuAssertTrue(tc, val == 2147483648);
  321. CuAssertStrEquals(tc, endptr, "ABC");
  322. val = aos_atoui64("0");
  323. CuAssertTrue(tc, val == 0);
  324. val = aos_atoui64("9223372036854775807");
  325. CuAssertTrue(tc, val == 9223372036854775807);
  326. val = aos_atoui64("18446744073709551615");
  327. CuAssertTrue(tc, val == UINT64_MAX);
  328. }
  329. CuSuite *test_aos()
  330. {
  331. CuSuite* suite = CuSuiteNew();
  332. SUITE_ADD_TEST(suite, test_get_xml_doc_with_empty_aos_list);
  333. SUITE_ADD_TEST(suite, test_aos_list_movelist_with_empty_list);
  334. SUITE_ADD_TEST(suite, test_starts_with_failed);
  335. SUITE_ADD_TEST(suite, test_is_valid_ip);
  336. SUITE_ADD_TEST(suite, test_oss_request_options_create_with_null_pool);
  337. SUITE_ADD_TEST(suite, test_oss_get_part_size);
  338. SUITE_ADD_TEST(suite, test_oss_get_object_uri_with_cname);
  339. SUITE_ADD_TEST(suite, test_oss_get_object_uri_with_ip);
  340. SUITE_ADD_TEST(suite, test_oss_get_bucket_uri_with_cname);
  341. SUITE_ADD_TEST(suite, test_oss_get_bucket_uri_with_ip);
  342. SUITE_ADD_TEST(suite, test_aos_log_format_default);
  343. SUITE_ADD_TEST(suite, test_aos_log_print_default_with_null_file);
  344. SUITE_ADD_TEST(suite, test_aos_curl_code_to_status);
  345. SUITE_ADD_TEST(suite, test_aos_unquote_str);
  346. SUITE_ADD_TEST(suite, test_aos_ends_with);
  347. SUITE_ADD_TEST(suite, test_aos_url_encode_failed);
  348. SUITE_ADD_TEST(suite, test_aos_url_encode_with_blank_char);
  349. SUITE_ADD_TEST(suite, test_aos_url_decode_with_percent);
  350. SUITE_ADD_TEST(suite, test_aos_url_decode_with_add);
  351. SUITE_ADD_TEST(suite, test_aos_url_decode_failed);
  352. SUITE_ADD_TEST(suite, test_aos_should_retry);
  353. SUITE_ADD_TEST(suite, test_aos_strtoll);
  354. SUITE_ADD_TEST(suite, test_aos_strtoull);
  355. return suite;
  356. }