tests_exist.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. extern struct ccanlint 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);
  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 = fopen("test/run.c", "w");
  48. if (!run)
  49. err(1, "Trying to create a test/run.c");
  50. fprintf(run, "#include <ccan/%s/%s.h>\n", m->basename, m->basename);
  51. if (!list_empty(&m->c_files)) {
  52. fputs("/* Include the C files directly. */\n", run);
  53. list_for_each(&m->c_files, i, list)
  54. fprintf(run, "#include <ccan/%s/%s>\n",
  55. m->basename, i->name);
  56. }
  57. fprintf(run, "%s",
  58. "#include <ccan/tap/tap.h>\n\n"
  59. "int main(void)\n"
  60. "{\n"
  61. " /* This is how many tests you plan to run */\n"
  62. " plan_tests(3);\n"
  63. "\n"
  64. " /* Simple thing we expect to succeed */\n"
  65. " ok1(some_test())\n"
  66. " /* Same, with an explicit description of the test. */\n"
  67. " ok(some_test(), \"%s with no args should return 1\", \"some_test\")\n"
  68. " /* How to print out messages for debugging. */\n"
  69. " diag(\"Address of some_test is %p\", &some_test)\n"
  70. " /* Conditional tests must be explicitly skipped. */\n"
  71. "#if HAVE_SOME_FEATURE\n"
  72. " ok1(test_some_feature())\n"
  73. "#else\n"
  74. " skip(1, \"Don\'t have SOME_FEATURE\")\n"
  75. "#endif\n"
  76. "\n"
  77. " /* This exits depending on whether all tests passed */\n"
  78. " return exit_status();\n"
  79. "}\n");
  80. fclose(run);
  81. }
  82. static void check_tests_exist(struct manifest *m,
  83. bool keep,
  84. unsigned int *timeleft, struct score *score)
  85. {
  86. struct stat st;
  87. char *test_dir = talloc_asprintf(m, "%s/test", m->dir);
  88. if (lstat(test_dir, &st) != 0) {
  89. score->error = talloc_strdup(score, "No test directory");
  90. if (errno != ENOENT)
  91. err(1, "statting %s", test_dir);
  92. tests_exist.handle = handle_no_tests;
  93. return;
  94. }
  95. if (!S_ISDIR(st.st_mode)) {
  96. score->error = talloc_strdup(score, "test is not a directory");
  97. return;
  98. }
  99. if (list_empty(&m->api_tests)
  100. && list_empty(&m->run_tests)
  101. && list_empty(&m->compile_ok_tests)) {
  102. if (list_empty(&m->compile_fail_tests)) {
  103. score->error = talloc_strdup(score,
  104. "No tests in test directory");
  105. tests_exist.handle = handle_no_tests;
  106. } else
  107. score->error = talloc_strdup(score,
  108. "No positive tests in test directory");
  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 = ""
  119. };
  120. REGISTER_TEST(tests_exist);