test_all.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. #include "CuTest.h"
  2. #include "aos_log.h"
  3. #include "aos_http_io.h"
  4. #include "oss_config.h"
  5. extern CuSuite *test_xml();
  6. extern CuSuite *test_util();
  7. extern CuSuite *test_file();
  8. extern CuSuite *test_transport();
  9. extern CuSuite *test_oss_bucket();
  10. extern CuSuite *test_oss_object();
  11. extern CuSuite *test_oss_multipart();
  12. extern CuSuite *test_oss_live();
  13. extern CuSuite *test_oss_image();
  14. extern CuSuite *test_oss_progress();
  15. extern CuSuite *test_oss_callback();
  16. extern CuSuite *test_oss_util();
  17. extern CuSuite *test_oss_xml();
  18. extern CuSuite *test_oss_crc();
  19. extern CuSuite *test_aos();
  20. extern CuSuite *test_oss_proxy();
  21. extern CuSuite *test_oss_resumable();
  22. static const struct testlist {
  23. const char *testname;
  24. CuSuite *(*func)();
  25. } tests[] = {
  26. {"test_oss_bucket", test_oss_bucket},
  27. {"test_oss_object", test_oss_object},
  28. {"test_oss_multipart", test_oss_multipart},
  29. {"test_oss_live", test_oss_live},
  30. {"test_oss_image", test_oss_image},
  31. {"test_oss_progress", test_oss_progress},
  32. {"test_oss_callback", test_oss_callback},
  33. {"test_oss_crc", test_oss_crc},
  34. {"test_oss_proxy", test_oss_proxy},
  35. {"test_oss_resumable", test_oss_resumable},
  36. {"test_aos", test_aos},
  37. {"LastTest", NULL}
  38. };
  39. int run_all_tests(int argc, char *argv[])
  40. {
  41. int i;
  42. int exit_code;
  43. int list_provided = 0;
  44. CuSuite* suite = NULL;
  45. int j;
  46. int found;
  47. CuSuite *st = NULL;
  48. CuString *output = NULL;
  49. for (i = 1; i < argc; i++) {
  50. if (!strcmp(argv[i], "-v")) {
  51. continue;
  52. }
  53. if (!strcmp(argv[i], "-l")) {
  54. for (i = 0; tests[i].func != NULL; i++) {
  55. printf("%s\n", tests[i].testname);
  56. }
  57. exit(0);
  58. }
  59. if (argv[i][0] == '-') {
  60. fprintf(stderr, "invalid option: `%s'\n", argv[i]);
  61. exit(1);
  62. }
  63. list_provided = 1;
  64. }
  65. suite = CuSuiteNew();
  66. if (!list_provided) {
  67. /* add everything */
  68. for (i = 0; tests[i].func != NULL; i++) {
  69. st = tests[i].func();
  70. CuSuiteAddSuite(suite, st);
  71. CuSuiteFree(st);
  72. }
  73. } else {
  74. /* add only the tests listed */
  75. for (i = 1; i < argc; i++) {
  76. found = 0;
  77. if (argv[i][0] == '-') {
  78. continue;
  79. }
  80. for (j = 0; tests[j].func != NULL; j++) {
  81. if (!strcmp(argv[i], tests[j].testname)) {
  82. CuSuiteAddSuite(suite, tests[j].func());
  83. found = 1;
  84. }
  85. }
  86. if (!found) {
  87. fprintf(stderr, "invalid test name: `%s'\n", argv[i]);
  88. exit(1);
  89. }
  90. }
  91. }
  92. output = CuStringNew();
  93. CuSuiteRun(suite);
  94. CuSuiteSummary(suite, output);
  95. CuSuiteDetails(suite, output);
  96. printf("%s\n", output->buffer);
  97. exit_code = suite->failCount > 0 ? 1 : 0;
  98. CuSuiteFreeDeep(suite);
  99. CuStringFree(output);
  100. return exit_code;
  101. }
  102. int main(int argc, char *argv[])
  103. {
  104. int exit_code = -1;
  105. TEST_OSS_ENDPOINT = TEST_OSS_ENDPOINT != NULL ?
  106. TEST_OSS_ENDPOINT : getenv("OSS_TEST_ENDPOINT");
  107. TEST_ACCESS_KEY_ID = TEST_ACCESS_KEY_ID != NULL ?
  108. TEST_ACCESS_KEY_ID : getenv("OSS_TEST_ACCESS_KEY_ID");
  109. TEST_ACCESS_KEY_SECRET = TEST_ACCESS_KEY_SECRET != NULL ?
  110. TEST_ACCESS_KEY_SECRET : getenv("OSS_TEST_ACCESS_KEY_SECRET");
  111. TEST_BUCKET_NAME = TEST_BUCKET_NAME != NULL ?
  112. TEST_BUCKET_NAME : getenv("OSS_TEST_BUCKET");
  113. if (aos_http_io_initialize(NULL, 0) != AOSE_OK) {
  114. exit(1);
  115. }
  116. aos_log_set_level(AOS_LOG_OFF);
  117. exit_code = run_all_tests(argc, argv);
  118. //aos_http_io_deinitialize last
  119. aos_http_io_deinitialize();
  120. return exit_code;
  121. }