tests_exist.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. #include <tools/ccanlint/ccanlint.h>
  2. #include <sys/types.h>
  3. #include <sys/stat.h>
  4. #include <fcntl.h>
  5. #include <unistd.h>
  6. #include <limits.h>
  7. #include <errno.h>
  8. #include <stdlib.h>
  9. #include <stdio.h>
  10. #include <err.h>
  11. #include <ccan/talloc/talloc.h>
  12. REGISTER_TEST(tests_exist);
  13. static void handle_no_tests(struct manifest *m, struct score *score)
  14. {
  15. FILE *run;
  16. struct ccan_file *i;
  17. char *test_dir = talloc_asprintf(m, "%s/test", m->dir), *run_file;
  18. printf(
  19. "CCAN modules have a directory called test/ which contains tests.\n"
  20. "There are four kinds of tests: api, run, compile_ok and compile_fail:\n"
  21. "you can tell which type of test a C file is by its name, eg 'run.c'\n"
  22. "and 'run-simple.c' are both run tests.\n\n"
  23. "The simplest kind of test is a run test, which must compile with no\n"
  24. "warnings, and then run: it is expected to use ccan/tap to report its\n"
  25. "results in a simple and portable format. It should #include the C\n"
  26. "files from the module directly (so it can probe the internals): the\n"
  27. "module will not be linked in. The test will be run in a temporary\n"
  28. "directory, with the test directory symlinked under test/.\n\n"
  29. "api tests are just like a run test, except it is a guarantee of API\n"
  30. "stability: this test should pass on all future versions of the\n"
  31. "module. They *are* linked to the module, since they should only\n"
  32. "test the API, not the internal state.\n\n"
  33. "compile_ok tests are a subset of run tests: they must compile and\n"
  34. "link, but aren't run.\n\n"
  35. "compile_fail tests are tests which should fail to compile (or emit\n"
  36. "warnings) or link when FAIL is defined, but should compile and link\n"
  37. "when it's not defined: this helps ensure unrelated errors don't make\n"
  38. "compilation fail.\n\n"
  39. "Note that only API tests are linked against the files in the module!\n"
  40. );
  41. if (!ask("Should I create a template test/run.c file for you?"))
  42. return;
  43. if (mkdir(test_dir, 0700) != 0) {
  44. if (errno != EEXIST)
  45. err(1, "Creating test/ directory");
  46. }
  47. run_file = talloc_asprintf(test_dir, "%s/run.c", test_dir);
  48. run = fopen(run_file, "w");
  49. if (!run)
  50. err(1, "Trying to create a test/run.c");
  51. fprintf(run, "#include <ccan/%s/%s.h>\n", m->basename, m->basename);
  52. if (!list_empty(&m->c_files)) {
  53. fputs("/* Include the C files directly. */\n", run);
  54. list_for_each(&m->c_files, i, list)
  55. fprintf(run, "#include <ccan/%s/%s>\n",
  56. m->basename, i->name);
  57. }
  58. fprintf(run, "%s",
  59. "#include <ccan/tap/tap.h>\n\n"
  60. "int main(void)\n"
  61. "{\n"
  62. " /* This is how many tests you plan to run */\n"
  63. " plan_tests(3);\n"
  64. "\n"
  65. " /* Simple thing we expect to succeed */\n"
  66. " ok1(some_test())\n"
  67. " /* Same, with an explicit description of the test. */\n"
  68. " ok(some_test(), \"%s with no args should return 1\", \"some_test\")\n"
  69. " /* How to print out messages for debugging. */\n"
  70. " diag(\"Address of some_test is %p\", &some_test)\n"
  71. " /* Conditional tests must be explicitly skipped. */\n"
  72. "#if HAVE_SOME_FEATURE\n"
  73. " ok1(test_some_feature())\n"
  74. "#else\n"
  75. " skip(1, \"Don\'t have SOME_FEATURE\")\n"
  76. "#endif\n"
  77. "\n"
  78. " /* This exits depending on whether all tests passed */\n"
  79. " return exit_status();\n"
  80. "}\n");
  81. fclose(run);
  82. }
  83. static void check_tests_exist(struct manifest *m,
  84. bool keep,
  85. unsigned int *timeleft, struct score *score)
  86. {
  87. struct stat st;
  88. char *test_dir = talloc_asprintf(m, "%s/test", m->dir);
  89. if (lstat(test_dir, &st) != 0) {
  90. score->error = talloc_strdup(score, "No test directory");
  91. if (errno != ENOENT)
  92. err(1, "statting %s", test_dir);
  93. tests_exist.handle = handle_no_tests;
  94. /* We "pass" this. */
  95. score->pass = true;
  96. return;
  97. }
  98. if (!S_ISDIR(st.st_mode)) {
  99. score->error = talloc_strdup(score, "test is not a directory");
  100. return;
  101. }
  102. if (list_empty(&m->api_tests)
  103. && list_empty(&m->run_tests)
  104. && list_empty(&m->compile_ok_tests)
  105. && list_empty(&m->compile_fail_tests)) {
  106. score->error = talloc_strdup(score,
  107. "No tests in test directory");
  108. tests_exist.handle = handle_no_tests;
  109. return;
  110. }
  111. score->pass = true;
  112. score->score = score->total;
  113. }
  114. struct ccanlint tests_exist = {
  115. .key = "tests_exist",
  116. .name = "Module has test directory with tests in it",
  117. .check = check_tests_exist,
  118. .needs = "info_exists"
  119. };