ceedling 0.20.3 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (407) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +1 -0
  4. data/Rakefile +1 -0
  5. data/bin/ceedling +79 -26
  6. data/lib/ceedling/configurator_plugins.rb +0 -18
  7. data/lib/ceedling/rules_cmock.rake +1 -1
  8. data/lib/ceedling/tasks_base.rake +5 -1
  9. data/lib/ceedling/tasks_tests.rake +12 -9
  10. data/lib/ceedling/version.rb +1 -1
  11. data/lib/ceedling/version.rb.erb +1 -1
  12. data/plugins/fake_function_framework/README.md +250 -0
  13. data/plugins/fake_function_framework/Rakefile +19 -0
  14. data/plugins/fake_function_framework/examples/fff_example/project.yml +71 -0
  15. data/plugins/fake_function_framework/examples/fff_example/rakefile.rb +7 -0
  16. data/plugins/fake_function_framework/examples/fff_example/src/bar.c +1 -0
  17. data/plugins/fake_function_framework/examples/fff_example/src/bar.h +13 -0
  18. data/plugins/fake_function_framework/examples/fff_example/src/custom_types.h +6 -0
  19. data/plugins/fake_function_framework/examples/fff_example/src/display.c +7 -0
  20. data/plugins/fake_function_framework/examples/fff_example/src/display.h +16 -0
  21. data/plugins/fake_function_framework/examples/fff_example/src/event_processor.c +92 -0
  22. data/plugins/fake_function_framework/examples/fff_example/src/event_processor.h +11 -0
  23. data/plugins/fake_function_framework/examples/fff_example/src/foo.c +16 -0
  24. data/plugins/fake_function_framework/examples/fff_example/src/foo.h +8 -0
  25. data/plugins/fake_function_framework/examples/fff_example/src/subfolder/zzz.c +1 -0
  26. data/plugins/fake_function_framework/examples/fff_example/src/subfolder/zzz.h +6 -0
  27. data/plugins/fake_function_framework/examples/fff_example/test/test_event_processor.c +155 -0
  28. data/plugins/fake_function_framework/examples/fff_example/test/test_foo.c +47 -0
  29. data/plugins/fake_function_framework/lib/fake_function_framework.rb +87 -0
  30. data/plugins/fake_function_framework/lib/fff_mock_generator.rb +159 -0
  31. data/plugins/fake_function_framework/spec/fff_mock_generator_spec.rb +464 -0
  32. data/plugins/fake_function_framework/spec/spec_helper.rb +96 -0
  33. data/plugins/fake_function_framework/src/fff_unity_helper.h +33 -0
  34. data/plugins/fake_function_framework/vendor/fff/LICENSE +25 -0
  35. data/plugins/fake_function_framework/vendor/fff/Makefile +10 -0
  36. data/plugins/fake_function_framework/vendor/fff/README.md +454 -0
  37. data/plugins/fake_function_framework/vendor/fff/buildandtest +15 -0
  38. data/plugins/fake_function_framework/vendor/fff/examples/Makefile +7 -0
  39. data/plugins/fake_function_framework/vendor/fff/examples/driver_testing/Makefile +64 -0
  40. data/plugins/fake_function_framework/vendor/fff/examples/driver_testing/driver.c +24 -0
  41. data/plugins/fake_function_framework/vendor/fff/examples/driver_testing/driver.h +11 -0
  42. data/plugins/fake_function_framework/vendor/fff/examples/driver_testing/driver.test.cpp +50 -0
  43. data/plugins/fake_function_framework/vendor/fff/examples/driver_testing/driver.test.fff.cpp +62 -0
  44. data/plugins/fake_function_framework/vendor/fff/examples/driver_testing/hardware_abstraction.h +15 -0
  45. data/plugins/fake_function_framework/vendor/fff/examples/driver_testing/registers.h +13 -0
  46. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/DISPLAY.h +17 -0
  47. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/Kata.txt +25 -0
  48. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/Makefile +67 -0
  49. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/SYSTEM.h +21 -0
  50. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/UI.c +48 -0
  51. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/UI.h +12 -0
  52. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/UI_test_ansic.c +183 -0
  53. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/UI_test_cpp.cpp +136 -0
  54. data/plugins/fake_function_framework/vendor/fff/examples/embedded_ui/test_suite_template.c +34 -0
  55. data/plugins/fake_function_framework/vendor/fff/fakegen.rb +420 -0
  56. data/plugins/fake_function_framework/vendor/fff/fff.h +5112 -0
  57. data/plugins/fake_function_framework/vendor/fff/gtest/Makefile +22 -0
  58. data/plugins/fake_function_framework/vendor/fff/gtest/gtest-all.cc +9118 -0
  59. data/plugins/fake_function_framework/vendor/fff/gtest/gtest-main.cc +6 -0
  60. data/plugins/fake_function_framework/vendor/fff/gtest/gtest.h +19537 -0
  61. data/plugins/fake_function_framework/vendor/fff/test/Makefile +81 -0
  62. data/plugins/fake_function_framework/vendor/fff/test/c_test_framework.h +15 -0
  63. data/plugins/fake_function_framework/vendor/fff/test/fff_test_c.c +108 -0
  64. data/plugins/fake_function_framework/vendor/fff/test/fff_test_cpp.cpp +45 -0
  65. data/plugins/fake_function_framework/vendor/fff/test/fff_test_global_c.c +76 -0
  66. data/plugins/fake_function_framework/vendor/fff/test/fff_test_global_cpp.cpp +23 -0
  67. data/plugins/fake_function_framework/vendor/fff/test/global_fakes.c +13 -0
  68. data/plugins/fake_function_framework/vendor/fff/test/global_fakes.h +37 -0
  69. data/plugins/fake_function_framework/vendor/fff/test/test_cases.include +276 -0
  70. data/plugins/gcov/README.md +9 -0
  71. data/plugins/gcov/{template.erb → assets/template.erb} +1 -1
  72. data/plugins/gcov/{defaults.yml → config/defaults.yml} +10 -1
  73. data/plugins/gcov/gcov.rake +20 -8
  74. data/plugins/gcov/{gcov.rb → lib/gcov.rb} +13 -24
  75. data/plugins/module_generator/module_generator.rake +3 -3
  76. data/plugins/warnings_report/lib/warnings_report.rb +69 -0
  77. data/plugins/xml_tests_report/lib/xml_tests_report.rb +108 -0
  78. data/spec/spec_system_helper.rb +1 -1
  79. data/vendor/c_exception/lib/CException.h +1 -1
  80. data/vendor/c_exception/vendor/unity/auto/generate_module.rb +16 -16
  81. data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +61 -21
  82. data/vendor/c_exception/vendor/unity/auto/stylize_as_junit.rb +5 -1
  83. data/vendor/c_exception/vendor/unity/auto/unity_to_junit.py +146 -0
  84. data/vendor/c_exception/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
  85. data/vendor/c_exception/vendor/unity/docs/UnityAssertionsReference.pdf +0 -0
  86. data/vendor/c_exception/vendor/unity/docs/UnityConfigurationGuide.pdf +0 -0
  87. data/vendor/c_exception/vendor/unity/docs/UnityGettingStartedGuide.pdf +0 -0
  88. data/vendor/c_exception/vendor/unity/docs/UnityHelperScriptsGuide.pdf +0 -0
  89. data/vendor/c_exception/vendor/unity/examples/example_1/makefile +1 -1
  90. data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c +7 -7
  91. data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c +2 -2
  92. data/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c +14 -14
  93. data/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c +2 -2
  94. data/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +5 -5
  95. data/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +5 -5
  96. data/vendor/c_exception/vendor/unity/examples/unity_config.h +257 -0
  97. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +9 -8
  98. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +1 -0
  99. data/vendor/c_exception/vendor/unity/extras/fixture/test/Makefile +28 -8
  100. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +57 -17
  101. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +3 -0
  102. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +2 -3
  103. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +1 -1
  104. data/vendor/c_exception/vendor/unity/release/version.info +1 -1
  105. data/vendor/c_exception/vendor/unity/src/unity.c +336 -191
  106. data/vendor/c_exception/vendor/unity/src/unity.h +73 -69
  107. data/vendor/c_exception/vendor/unity/src/unity_internals.h +119 -90
  108. data/vendor/c_exception/vendor/unity/test/Makefile +51 -0
  109. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +5 -5
  110. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +5 -5
  111. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.c +5 -5
  112. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +6 -6
  113. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +6 -6
  114. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.c +6 -6
  115. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +6 -6
  116. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +8 -8
  117. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +6 -6
  118. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +6 -6
  119. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +8 -8
  120. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +7 -7
  121. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +5 -5
  122. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +7 -7
  123. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +5 -5
  124. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +5 -5
  125. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +7 -7
  126. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +6 -6
  127. data/vendor/c_exception/vendor/unity/test/rakefile +5 -0
  128. data/vendor/c_exception/vendor/unity/test/rakefile_helper.rb +9 -7
  129. data/vendor/c_exception/vendor/unity/test/targets/clang_file.yml +1 -0
  130. data/vendor/c_exception/vendor/unity/test/targets/clang_strict.yml +3 -0
  131. data/vendor/c_exception/vendor/unity/test/targets/gcc_32.yml +1 -0
  132. data/vendor/c_exception/vendor/unity/test/targets/gcc_64.yml +1 -0
  133. data/vendor/c_exception/vendor/unity/test/targets/gcc_auto_limits.yml +1 -0
  134. data/vendor/c_exception/vendor/unity/test/targets/gcc_auto_sizeof.yml +1 -0
  135. data/vendor/c_exception/vendor/unity/test/targets/gcc_auto_stdint.yml +1 -0
  136. data/vendor/c_exception/vendor/unity/test/targets/gcc_manual_math.yml +1 -0
  137. data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v4.yml +1 -0
  138. data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5.yml +1 -0
  139. data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5_3.yml +1 -0
  140. data/vendor/c_exception/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +1 -0
  141. data/vendor/c_exception/vendor/unity/test/targets/iar_cortexm3_v5.yml +1 -0
  142. data/vendor/c_exception/vendor/unity/test/targets/iar_msp430.yml +1 -0
  143. data/vendor/c_exception/vendor/unity/test/targets/iar_sh2a_v6.yml +1 -0
  144. data/vendor/c_exception/vendor/unity/test/testdata/CException.h +11 -0
  145. data/vendor/c_exception/vendor/unity/test/testdata/Defs.h +8 -0
  146. data/vendor/c_exception/vendor/unity/test/testdata/cmock.h +14 -0
  147. data/vendor/c_exception/vendor/unity/test/testdata/mockMock.h +13 -0
  148. data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGenerator.c +183 -0
  149. data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +65 -0
  150. data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +192 -0
  151. data/vendor/c_exception/vendor/unity/test/tests/test_generate_test_runner.rb +1221 -71
  152. data/vendor/c_exception/vendor/unity/test/tests/testparameterized.c +1 -1
  153. data/vendor/c_exception/vendor/unity/test/tests/testunity.c +127 -5
  154. data/vendor/cmock/docs/CMock_Summary.md +1 -1
  155. data/vendor/cmock/lib/cmock_generator.rb +7 -2
  156. data/vendor/cmock/lib/cmock_header_parser.rb +29 -9
  157. data/vendor/cmock/scripts/create_mock.rb +1 -1
  158. data/vendor/cmock/test/system/test_compilation/const.h +15 -0
  159. data/vendor/cmock/test/unit/cmock_generator_main_test.rb +4 -4
  160. data/vendor/cmock/test/unit/cmock_header_parser_test.rb +136 -73
  161. data/vendor/cmock/vendor/c_exception/lib/CException.h +1 -1
  162. data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +16 -16
  163. data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +61 -21
  164. data/vendor/cmock/vendor/c_exception/vendor/unity/auto/stylize_as_junit.rb +5 -1
  165. data/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_to_junit.py +146 -0
  166. data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
  167. data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityAssertionsReference.pdf +0 -0
  168. data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityConfigurationGuide.pdf +0 -0
  169. data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityGettingStartedGuide.pdf +0 -0
  170. data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityHelperScriptsGuide.pdf +0 -0
  171. data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/makefile +1 -1
  172. data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c +7 -7
  173. data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c +2 -2
  174. data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c +14 -14
  175. data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c +2 -2
  176. data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +5 -5
  177. data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +5 -5
  178. data/vendor/cmock/vendor/c_exception/vendor/unity/examples/unity_config.h +257 -0
  179. data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +9 -8
  180. data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +1 -0
  181. data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/Makefile +28 -8
  182. data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +57 -17
  183. data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +3 -0
  184. data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +2 -3
  185. data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +1 -1
  186. data/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +1 -1
  187. data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +336 -191
  188. data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +73 -69
  189. data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +119 -90
  190. data/vendor/cmock/vendor/c_exception/vendor/unity/test/Makefile +51 -0
  191. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +5 -5
  192. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +5 -5
  193. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.c +5 -5
  194. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +6 -6
  195. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +6 -6
  196. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.c +6 -6
  197. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +6 -6
  198. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +8 -8
  199. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +6 -6
  200. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +6 -6
  201. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +8 -8
  202. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +7 -7
  203. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +5 -5
  204. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +7 -7
  205. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +5 -5
  206. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +5 -5
  207. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +7 -7
  208. data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +6 -6
  209. data/vendor/cmock/vendor/c_exception/vendor/unity/test/rakefile +5 -0
  210. data/vendor/cmock/vendor/c_exception/vendor/unity/test/rakefile_helper.rb +9 -7
  211. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/clang_file.yml +1 -0
  212. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/clang_strict.yml +3 -0
  213. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_32.yml +1 -0
  214. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_64.yml +1 -0
  215. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_limits.yml +1 -0
  216. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_sizeof.yml +1 -0
  217. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_stdint.yml +1 -0
  218. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_manual_math.yml +1 -0
  219. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v4.yml +1 -0
  220. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5.yml +1 -0
  221. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5_3.yml +1 -0
  222. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +1 -0
  223. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_cortexm3_v5.yml +1 -0
  224. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_msp430.yml +1 -0
  225. data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_sh2a_v6.yml +1 -0
  226. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/CException.h +11 -0
  227. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/Defs.h +8 -0
  228. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/cmock.h +14 -0
  229. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mockMock.h +13 -0
  230. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGenerator.c +183 -0
  231. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +65 -0
  232. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +192 -0
  233. data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/test_generate_test_runner.rb +1221 -71
  234. data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/testparameterized.c +1 -1
  235. data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/testunity.c +127 -5
  236. data/vendor/cmock/vendor/unity/auto/generate_module.rb +16 -16
  237. data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +61 -21
  238. data/vendor/cmock/vendor/unity/auto/stylize_as_junit.rb +5 -1
  239. data/vendor/cmock/vendor/unity/auto/unity_to_junit.py +146 -0
  240. data/vendor/cmock/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
  241. data/vendor/cmock/vendor/unity/docs/UnityAssertionsReference.pdf +0 -0
  242. data/vendor/cmock/vendor/unity/docs/UnityConfigurationGuide.pdf +0 -0
  243. data/vendor/cmock/vendor/unity/docs/UnityGettingStartedGuide.pdf +0 -0
  244. data/vendor/cmock/vendor/unity/docs/UnityHelperScriptsGuide.pdf +0 -0
  245. data/vendor/cmock/vendor/unity/examples/example_1/makefile +1 -1
  246. data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.c +7 -7
  247. data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.c +2 -2
  248. data/vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode.c +14 -14
  249. data/vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode2.c +2 -2
  250. data/vendor/cmock/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +5 -5
  251. data/vendor/cmock/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +5 -5
  252. data/vendor/cmock/vendor/unity/examples/unity_config.h +257 -0
  253. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +3 -0
  254. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +5 -2
  255. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +1 -2
  256. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +1 -1
  257. data/vendor/cmock/vendor/unity/src/unity.c +329 -186
  258. data/vendor/cmock/vendor/unity/src/unity.h +73 -69
  259. data/vendor/cmock/vendor/unity/src/unity_internals.h +119 -94
  260. data/vendor/cmock/vendor/unity/test/Makefile +4 -5
  261. data/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +5 -5
  262. data/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +5 -5
  263. data/vendor/cmock/vendor/unity/test/expectdata/testsample_head1.c +5 -5
  264. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +6 -6
  265. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +6 -6
  266. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_head1.c +6 -6
  267. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +6 -6
  268. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +8 -8
  269. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +6 -6
  270. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +6 -6
  271. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +8 -8
  272. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +7 -7
  273. data/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +5 -5
  274. data/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +7 -7
  275. data/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +5 -5
  276. data/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +5 -5
  277. data/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +7 -7
  278. data/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +6 -6
  279. data/vendor/cmock/vendor/unity/test/rakefile +5 -0
  280. data/vendor/cmock/vendor/unity/test/rakefile_helper.rb +9 -7
  281. data/vendor/cmock/vendor/unity/test/targets/clang_file.yml +1 -0
  282. data/vendor/cmock/vendor/unity/test/targets/clang_strict.yml +3 -0
  283. data/vendor/cmock/vendor/unity/test/targets/gcc_32.yml +1 -0
  284. data/vendor/cmock/vendor/unity/test/targets/gcc_64.yml +1 -0
  285. data/vendor/cmock/vendor/unity/test/targets/gcc_auto_limits.yml +1 -0
  286. data/vendor/cmock/vendor/unity/test/targets/gcc_auto_sizeof.yml +1 -0
  287. data/vendor/cmock/vendor/unity/test/targets/gcc_auto_stdint.yml +1 -0
  288. data/vendor/cmock/vendor/unity/test/targets/gcc_manual_math.yml +1 -0
  289. data/vendor/cmock/vendor/unity/test/targets/iar_arm_v4.yml +1 -0
  290. data/vendor/cmock/vendor/unity/test/targets/iar_arm_v5.yml +1 -0
  291. data/vendor/cmock/vendor/unity/test/targets/iar_arm_v5_3.yml +1 -0
  292. data/vendor/cmock/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +1 -0
  293. data/vendor/cmock/vendor/unity/test/targets/iar_cortexm3_v5.yml +1 -0
  294. data/vendor/cmock/vendor/unity/test/targets/iar_msp430.yml +1 -0
  295. data/vendor/cmock/vendor/unity/test/targets/iar_sh2a_v6.yml +1 -0
  296. data/vendor/cmock/vendor/unity/test/testdata/CException.h +11 -0
  297. data/vendor/cmock/vendor/unity/test/testdata/Defs.h +8 -0
  298. data/vendor/cmock/vendor/unity/test/testdata/cmock.h +14 -0
  299. data/vendor/cmock/vendor/unity/test/testdata/mockMock.h +13 -0
  300. data/vendor/cmock/vendor/unity/test/testdata/testRunnerGenerator.c +183 -0
  301. data/vendor/cmock/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +65 -0
  302. data/vendor/cmock/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +192 -0
  303. data/vendor/cmock/vendor/unity/test/tests/test_generate_test_runner.rb +1221 -71
  304. data/vendor/cmock/vendor/unity/test/tests/testparameterized.c +1 -1
  305. data/vendor/cmock/vendor/unity/test/tests/testunity.c +104 -7
  306. data/vendor/deep_merge/README +94 -94
  307. data/vendor/deep_merge/Rakefile +28 -28
  308. data/vendor/deep_merge/lib/deep_merge.rb +211 -211
  309. data/vendor/deep_merge/test/test_deep_merge.rb +553 -553
  310. data/vendor/unity/auto/generate_module.rb +16 -16
  311. data/vendor/unity/auto/generate_test_runner.rb +61 -21
  312. data/vendor/unity/auto/stylize_as_junit.rb +5 -1
  313. data/vendor/unity/auto/unity_to_junit.py +146 -0
  314. data/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
  315. data/vendor/unity/docs/UnityAssertionsReference.pdf +0 -0
  316. data/vendor/unity/docs/UnityConfigurationGuide.pdf +0 -0
  317. data/vendor/unity/docs/UnityGettingStartedGuide.pdf +0 -0
  318. data/vendor/unity/docs/UnityHelperScriptsGuide.pdf +0 -0
  319. data/vendor/unity/examples/example_1/makefile +1 -1
  320. data/vendor/unity/examples/example_1/src/ProductionCode.c +7 -7
  321. data/vendor/unity/examples/example_1/src/ProductionCode2.c +2 -2
  322. data/vendor/unity/examples/example_1/test/TestProductionCode.c +14 -14
  323. data/vendor/unity/examples/example_1/test/TestProductionCode2.c +2 -2
  324. data/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +5 -5
  325. data/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +5 -5
  326. data/vendor/unity/examples/unity_config.h +257 -0
  327. data/vendor/unity/extras/fixture/src/unity_fixture.c +3 -0
  328. data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +5 -2
  329. data/vendor/unity/extras/fixture/test/unity_output_Spy.c +1 -2
  330. data/vendor/unity/extras/fixture/test/unity_output_Spy.h +1 -1
  331. data/vendor/unity/src/unity.c +329 -186
  332. data/vendor/unity/src/unity.h +73 -69
  333. data/vendor/unity/src/unity_internals.h +119 -94
  334. data/vendor/unity/test/Makefile +4 -5
  335. data/vendor/unity/test/expectdata/testsample_cmd.c +5 -5
  336. data/vendor/unity/test/expectdata/testsample_def.c +5 -5
  337. data/vendor/unity/test/expectdata/testsample_head1.c +5 -5
  338. data/vendor/unity/test/expectdata/testsample_mock_cmd.c +6 -6
  339. data/vendor/unity/test/expectdata/testsample_mock_def.c +6 -6
  340. data/vendor/unity/test/expectdata/testsample_mock_head1.c +6 -6
  341. data/vendor/unity/test/expectdata/testsample_mock_new1.c +6 -6
  342. data/vendor/unity/test/expectdata/testsample_mock_new2.c +8 -8
  343. data/vendor/unity/test/expectdata/testsample_mock_param.c +6 -6
  344. data/vendor/unity/test/expectdata/testsample_mock_run1.c +6 -6
  345. data/vendor/unity/test/expectdata/testsample_mock_run2.c +8 -8
  346. data/vendor/unity/test/expectdata/testsample_mock_yaml.c +7 -7
  347. data/vendor/unity/test/expectdata/testsample_new1.c +5 -5
  348. data/vendor/unity/test/expectdata/testsample_new2.c +7 -7
  349. data/vendor/unity/test/expectdata/testsample_param.c +5 -5
  350. data/vendor/unity/test/expectdata/testsample_run1.c +5 -5
  351. data/vendor/unity/test/expectdata/testsample_run2.c +7 -7
  352. data/vendor/unity/test/expectdata/testsample_yaml.c +6 -6
  353. data/vendor/unity/test/rakefile +5 -0
  354. data/vendor/unity/test/rakefile_helper.rb +9 -7
  355. data/vendor/unity/test/targets/clang_file.yml +1 -0
  356. data/vendor/unity/test/targets/clang_strict.yml +3 -0
  357. data/vendor/unity/test/targets/gcc_32.yml +1 -0
  358. data/vendor/unity/test/targets/gcc_64.yml +1 -0
  359. data/vendor/unity/test/targets/gcc_auto_limits.yml +1 -0
  360. data/vendor/unity/test/targets/gcc_auto_sizeof.yml +1 -0
  361. data/vendor/unity/test/targets/gcc_auto_stdint.yml +1 -0
  362. data/vendor/unity/test/targets/gcc_manual_math.yml +1 -0
  363. data/vendor/unity/test/targets/iar_arm_v4.yml +1 -0
  364. data/vendor/unity/test/targets/iar_arm_v5.yml +1 -0
  365. data/vendor/unity/test/targets/iar_arm_v5_3.yml +1 -0
  366. data/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +1 -0
  367. data/vendor/unity/test/targets/iar_cortexm3_v5.yml +1 -0
  368. data/vendor/unity/test/targets/iar_msp430.yml +1 -0
  369. data/vendor/unity/test/targets/iar_sh2a_v6.yml +1 -0
  370. data/vendor/unity/test/testdata/CException.h +11 -0
  371. data/vendor/unity/test/testdata/Defs.h +8 -0
  372. data/vendor/unity/test/testdata/cmock.h +14 -0
  373. data/vendor/unity/test/testdata/mockMock.h +13 -0
  374. data/vendor/unity/test/testdata/testRunnerGenerator.c +183 -0
  375. data/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +65 -0
  376. data/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +192 -0
  377. data/vendor/unity/test/tests/test_generate_test_runner.rb +1221 -71
  378. data/vendor/unity/test/tests/testparameterized.c +1 -1
  379. data/vendor/unity/test/tests/testunity.c +104 -7
  380. metadata +124 -32
  381. data/plugins/gcov/readme.txt +0 -0
  382. data/plugins/warnings_report/warnings_report.rb +0 -71
  383. data/plugins/xml_tests_report/xml_tests_report.rb +0 -110
  384. data/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  385. data/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  386. data/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +0 -224
  387. data/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +0 -51
  388. data/vendor/c_exception/vendor/unity/test/testdata/sample.yml +0 -9
  389. data/vendor/c_exception/vendor/unity/test/testdata/testsample.c +0 -68
  390. data/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  391. data/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  392. data/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +0 -224
  393. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +0 -51
  394. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/sample.yml +0 -9
  395. data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testsample.c +0 -68
  396. data/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
  397. data/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
  398. data/vendor/cmock/vendor/unity/docs/Unity Summary.txt +0 -224
  399. data/vendor/cmock/vendor/unity/test/testdata/mocksample.c +0 -51
  400. data/vendor/cmock/vendor/unity/test/testdata/sample.yml +0 -9
  401. data/vendor/cmock/vendor/unity/test/testdata/testsample.c +0 -68
  402. data/vendor/unity/docs/Unity Summary.odt +0 -0
  403. data/vendor/unity/docs/Unity Summary.pdf +0 -0
  404. data/vendor/unity/docs/Unity Summary.txt +0 -224
  405. data/vendor/unity/test/testdata/mocksample.c +0 -51
  406. data/vendor/unity/test/testdata/sample.yml +0 -9
  407. data/vendor/unity/test/testdata/testsample.c +0 -68
@@ -0,0 +1,65 @@
1
+ /* This Test File Is Used To Verify Many Combinations Of Using the Generate Test Runner Script */
2
+
3
+ #include <stdio.h>
4
+ #include "unity.h"
5
+ #include "Defs.h"
6
+
7
+ /* Notes about prefixes:
8
+ test - normal default prefix. these are "always run" tests for this procedure
9
+ spec - normal default prefix. required to run default setup/teardown calls.
10
+ */
11
+
12
+ /* Support for Meta Test Rig */
13
+ #define TEST_CASE(a)
14
+ void putcharSpy(int c) { (void)putchar(c);} // include passthrough for linking tests
15
+
16
+ /* Global Variables Used During These Tests */
17
+ int CounterSetup = 0;
18
+ int CounterTeardown = 0;
19
+ int CounterSuiteSetup = 0;
20
+
21
+ void setUp(void)
22
+ {
23
+ CounterSetup = 1;
24
+ }
25
+
26
+ void tearDown(void)
27
+ {
28
+ CounterTeardown = 1;
29
+ }
30
+
31
+ void custom_setup(void)
32
+ {
33
+ CounterSetup = 2;
34
+ }
35
+
36
+ void custom_teardown(void)
37
+ {
38
+ CounterTeardown = 2;
39
+ }
40
+
41
+ void test_ThisTestAlwaysPasses(void)
42
+ {
43
+ TEST_PASS();
44
+ }
45
+
46
+ void test_ThisTestAlwaysFails(void)
47
+ {
48
+ TEST_FAIL_MESSAGE("This Test Should Fail");
49
+ }
50
+
51
+ void test_ThisTestAlwaysIgnored(void)
52
+ {
53
+ TEST_IGNORE_MESSAGE("This Test Should Be Ignored");
54
+ }
55
+
56
+ void spec_ThisTestPassesWhenNormalSetupRan(void)
57
+ {
58
+ TEST_ASSERT_EQUAL_MESSAGE(1, CounterSetup, "Normal Setup Wasn't Run");
59
+ }
60
+
61
+ void spec_ThisTestPassesWhenNormalTeardownRan(void)
62
+ {
63
+ TEST_ASSERT_EQUAL_MESSAGE(1, CounterTeardown, "Normal Teardown Wasn't Run");
64
+ }
65
+
@@ -0,0 +1,192 @@
1
+ /* This Test File Is Used To Verify Many Combinations Of Using the Generate Test Runner Script */
2
+
3
+ #include <stdio.h>
4
+ #include "unity.h"
5
+ #include "Defs.h"
6
+ #include "mockMock.h"
7
+
8
+ #ifdef USE_CEXCEPTION
9
+ #include "CException.h"
10
+ #endif
11
+
12
+ /* Notes about prefixes:
13
+ test - normal default prefix. these are "always run" tests for this procedure
14
+ spec - normal default prefix. required to run default setup/teardown calls.
15
+ should - normal default prefix.
16
+ qwiktest - custom prefix for when tests skip all setup/teardown calls.
17
+ custtest - custom prefix for when tests use custom setup/teardown calls.
18
+ paratest - custom prefix for when we want to verify parameterized tests.
19
+ extest - custom prefix only used during cexception
20
+ suitetest- custom prefix for when we want to use custom suite setup/teardown
21
+ */
22
+
23
+ /* Support for Meta Test Rig */
24
+ #define TEST_CASE(a)
25
+ void putcharSpy(int c) { (void)putchar(c);} // include passthrough for linking tests
26
+
27
+ /* Global Variables Used During These Tests */
28
+ int CounterSetup = 0;
29
+ int CounterTeardown = 0;
30
+ int CounterSuiteSetup = 0;
31
+
32
+ void setUp(void)
33
+ {
34
+ CounterSetup = 1;
35
+ }
36
+
37
+ void tearDown(void)
38
+ {
39
+ CounterTeardown = 1;
40
+ }
41
+
42
+ void custom_setup(void)
43
+ {
44
+ CounterSetup = 2;
45
+ }
46
+
47
+ void custom_teardown(void)
48
+ {
49
+ CounterTeardown = 2;
50
+ }
51
+
52
+ /*
53
+ void test_OldSchoolCommentsShouldBeIgnored(void)
54
+ {
55
+ TEST_ASSERT_FAIL("Old-School Comments Should Be Ignored");
56
+ }
57
+ */
58
+
59
+ void test_ThisTestAlwaysPasses(void)
60
+ {
61
+ TEST_PASS();
62
+ }
63
+
64
+ void test_ThisTestAlwaysFails(void)
65
+ {
66
+ TEST_FAIL_MESSAGE("This Test Should Fail");
67
+ }
68
+
69
+ void test_ThisTestAlwaysIgnored(void)
70
+ {
71
+ TEST_IGNORE_MESSAGE("This Test Should Be Ignored");
72
+ }
73
+
74
+ void qwiktest_ThisTestPassesWhenNoSetupRan(void)
75
+ {
76
+ TEST_ASSERT_EQUAL_MESSAGE(0, CounterSetup, "Setup Was Unexpectedly Run");
77
+ }
78
+
79
+ void qwiktest_ThisTestPassesWhenNoTeardownRan(void)
80
+ {
81
+ TEST_ASSERT_EQUAL_MESSAGE(0, CounterTeardown, "Teardown Was Unexpectedly Run");
82
+ }
83
+
84
+ void spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan(void)
85
+ {
86
+ TEST_ASSERT_EQUAL_MESSAGE(0, CounterSuiteSetup, "Suite Setup Was Unexpectedly Run");
87
+ }
88
+
89
+ void spec_ThisTestPassesWhenNormalSetupRan(void)
90
+ {
91
+ TEST_ASSERT_EQUAL_MESSAGE(1, CounterSetup, "Normal Setup Wasn't Run");
92
+ }
93
+
94
+ void spec_ThisTestPassesWhenNormalTeardownRan(void)
95
+ {
96
+ TEST_ASSERT_EQUAL_MESSAGE(1, CounterTeardown, "Normal Teardown Wasn't Run");
97
+ }
98
+
99
+ void custtest_ThisTestPassesWhenCustomSetupRan(void)
100
+ {
101
+ TEST_ASSERT_EQUAL_MESSAGE(2, CounterSetup, "Custom Setup Wasn't Run");
102
+ }
103
+
104
+ void custtest_ThisTestPassesWhenCustomTeardownRan(void)
105
+ {
106
+ TEST_ASSERT_EQUAL_MESSAGE(2, CounterTeardown, "Custom Teardown Wasn't Run");
107
+ }
108
+
109
+ //void test_NewStyleCommentsShouldBeIgnored(void)
110
+ //{
111
+ // TEST_ASSERT_FAIL("New Style Comments Should Be Ignored");
112
+ //}
113
+
114
+ void test_NotBeConfusedByLongComplicatedStrings(void)
115
+ {
116
+ const char* crazyString = "GET / HTTP/1.1\r\nHost: 127.0.0.1:8081\r\nConnection: keep-alive\r\nCache-Control: no-cache\r\nUser-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\r\nPostman-Token: 768c7149-c3fb-f704-71a2-63918d9195b2\r\nAccept: */*\r\nAccept-Encoding: gzip, deflate, sdch\r\nAccept-Language: en-GB,en-US;q=0.8,en;q=0.6\r\n\r\n";
117
+
118
+ TEST_ASSERT_EQUAL_STRING_MESSAGE(crazyString, crazyString, "These Strings Are The Same");
119
+ }
120
+
121
+ void test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings(void)
122
+ {
123
+ TEST_ASSERT_TRUE_MESSAGE(1, "1 Should be True");
124
+ }
125
+
126
+ void test_StillNotBeConfusedByLongComplicatedStrings(void)
127
+ {
128
+ const char* crazyString = "GET / HTTP/1.1\r\nHost: 127.0.0.1:8081\r\nConnection: keep-alive\r\nCache-Control: no-cache\r\nUser-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\r\nPostman-Token: 768c7149-c3fb-f704-71a2-63918d9195b2\r\nAccept: */*\r\nAccept-Encoding: gzip, deflate, sdch\r\nAccept-Language: en-GB,en-US;q=0.8,en;q=0.6\r\n\r\n";
129
+
130
+ TEST_ASSERT_EQUAL_STRING_MESSAGE(crazyString, crazyString, "These Strings Are Still The Same");
131
+ }
132
+
133
+ void should_RunTestsStartingWithShouldByDefault(void)
134
+ {
135
+ TEST_ASSERT_TRUE_MESSAGE(1, "1 Should be True");
136
+ }
137
+
138
+ TEST_CASE(25)
139
+ TEST_CASE(125)
140
+ TEST_CASE(5)
141
+ void paratest_ShouldHandleParameterizedTests(int Num)
142
+ {
143
+ TEST_ASSERT_EQUAL_MESSAGE(0, (Num % 5), "All The Values Are Divisible By 5");
144
+ }
145
+
146
+ TEST_CASE(7)
147
+ void paratest_ShouldHandleParameterizedTests2(int Num)
148
+ {
149
+ TEST_ASSERT_EQUAL_MESSAGE(7, Num, "The Only Call To This Passes");
150
+ }
151
+
152
+ void paratest_ShouldHandleNonParameterizedTestsWhenParameterizationValid(void)
153
+ {
154
+ TEST_PASS();
155
+ }
156
+
157
+ TEST_CASE(17)
158
+ void paratest_ShouldHandleParameterizedTestsThatFail(int Num)
159
+ {
160
+ TEST_ASSERT_EQUAL_MESSAGE(3, Num, "This call should fail");
161
+ }
162
+
163
+ #ifdef USE_CEXCEPTION
164
+ void extest_ShouldHandleCExceptionInTest(void)
165
+ {
166
+ TEST_ASSERT_EQUAL_MESSAGE(1, CEXCEPTION_BEING_USED, "Should be pulling in CException");
167
+ }
168
+ #endif
169
+
170
+ #ifdef USE_ANOTHER_MAIN
171
+ int custom_main(void);
172
+
173
+ int main(void)
174
+ {
175
+ return custom_main();
176
+ }
177
+ #endif
178
+
179
+ void suitetest_ThisTestPassesWhenCustomSuiteSetupAndTeardownRan(void)
180
+ {
181
+ TEST_ASSERT_EQUAL_MESSAGE(1, CounterSuiteSetup, "Suite Setup Should Have Run");
182
+ }
183
+
184
+ void test_ShouldCallMockInitAndVerifyFunctionsForEachTest(void)
185
+ {
186
+ int passes = (int)(Unity.NumberOfTests - Unity.TestFailures - Unity.TestIgnores);
187
+ TEST_ASSERT_EQUAL_MESSAGE(Unity.NumberOfTests, mockMock_Init_Counter, "Mock Init Should Be Called Once Per Test Started");
188
+ TEST_ASSERT_EQUAL_MESSAGE(passes, mockMock_Verify_Counter, "Mock Verify Should Be Called Once Per Test Passed");
189
+ TEST_ASSERT_EQUAL_MESSAGE(Unity.NumberOfTests - 1, mockMock_Destroy_Counter, "Mock Destroy Should Be Called Once Per Test Completed");
190
+ TEST_ASSERT_EQUAL_MESSAGE(0, CMockMemFreeFinalCounter, "Mock MemFreeFinal Should Not Be Called Until End");
191
+ }
192
+
@@ -6,96 +6,1246 @@
6
6
 
7
7
  require '../auto/generate_test_runner.rb'
8
8
 
9
- TEST_FILE = 'testdata/testsample.c'
10
- TEST_MOCK = 'testdata/mocksample.c'
9
+ $generate_test_runner_tests = 0
10
+ $generate_test_runner_failures = 0
11
+
11
12
  OUT_FILE = 'build/testsample_'
12
- EXP_FILE = 'expectdata/testsample_'
13
13
 
14
- $generate_test_runner_failures = 0
14
+ RUNNER_TESTS = [
15
+ { :name => 'DefaultsThroughOptions',
16
+ :testfile => 'testdata/testRunnerGenerator.c',
17
+ :testdefines => ['TEST'],
18
+ :options => nil, #defaults
19
+ :expected => {
20
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
21
+ 'spec_ThisTestPassesWhenNormalSetupRan',
22
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
23
+ 'test_NotBeConfusedByLongComplicatedStrings',
24
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
25
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
26
+ 'should_RunTestsStartingWithShouldByDefault',
27
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
28
+ ],
29
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
30
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
31
+ }
32
+ },
33
+
34
+ { :name => 'DefaultsThroughCommandLine',
35
+ :testfile => 'testdata/testRunnerGenerator.c',
36
+ :testdefines => ['TEST'],
37
+ :cmdline => "", #defaults
38
+ :expected => {
39
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
40
+ 'spec_ThisTestPassesWhenNormalSetupRan',
41
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
42
+ 'test_NotBeConfusedByLongComplicatedStrings',
43
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
44
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
45
+ 'should_RunTestsStartingWithShouldByDefault',
46
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
47
+ ],
48
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
49
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
50
+ }
51
+ },
52
+
53
+ { :name => 'DefaultsThroughYAMLFile',
54
+ :testfile => 'testdata/testRunnerGenerator.c',
55
+ :testdefines => ['TEST'],
56
+ :cmdline => "", #defaults
57
+ :yaml => {}, #defaults
58
+ :expected => {
59
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
60
+ 'spec_ThisTestPassesWhenNormalSetupRan',
61
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
62
+ 'test_NotBeConfusedByLongComplicatedStrings',
63
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
64
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
65
+ 'should_RunTestsStartingWithShouldByDefault',
66
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
67
+ ],
68
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
69
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
70
+ }
71
+ },
72
+
73
+ { :name => 'ShorterFilterOfJustTest',
74
+ :testfile => 'testdata/testRunnerGenerator.c',
75
+ :testdefines => ['TEST'],
76
+ :options => {
77
+ :test_prefix => "test",
78
+ },
79
+ :expected => {
80
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
81
+ 'test_NotBeConfusedByLongComplicatedStrings',
82
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
83
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
84
+ ],
85
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
86
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
87
+ }
88
+ },
89
+
90
+ { :name => 'ShorterFilterOfJustShould',
91
+ :testfile => 'testdata/testRunnerGenerator.c',
92
+ :testdefines => ['TEST'],
93
+ :options => {
94
+ :test_prefix => "should",
95
+ },
96
+ :expected => {
97
+ :to_pass => [ 'should_RunTestsStartingWithShouldByDefault' ],
98
+ :to_fail => [ ],
99
+ :to_ignore => [ ],
100
+ }
101
+ },
102
+
103
+ { :name => 'ShorterFilterOfJustSpec',
104
+ :testfile => 'testdata/testRunnerGenerator.c',
105
+ :testdefines => ['TEST'],
106
+ :options => {
107
+ :test_prefix => "spec",
108
+ },
109
+ :expected => {
110
+ :to_pass => [ 'spec_ThisTestPassesWhenNormalSetupRan',
111
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
112
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
113
+ ],
114
+ :to_fail => [ ],
115
+ :to_ignore => [ ],
116
+ }
117
+ },
118
+
119
+ { :name => 'InjectIncludes',
120
+ :testfile => 'testdata/testRunnerGenerator.c',
121
+ :testdefines => ['TEST'],
122
+ :options => {
123
+ :includes => ['Defs.h'],
124
+ },
125
+ :expected => {
126
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
127
+ 'spec_ThisTestPassesWhenNormalSetupRan',
128
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
129
+ 'test_NotBeConfusedByLongComplicatedStrings',
130
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
131
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
132
+ 'should_RunTestsStartingWithShouldByDefault',
133
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
134
+ ],
135
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
136
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
137
+ }
138
+ },
139
+
140
+ { :name => 'ParameterizedThroughOptions',
141
+ :testfile => 'testdata/testRunnerGenerator.c',
142
+ :testdefines => ['TEST'],
143
+ :options => {
144
+ :test_prefix => "paratest",
145
+ :use_param_tests => true,
146
+ },
147
+ :expected => {
148
+ :to_pass => [ 'paratest_ShouldHandleParameterizedTests\(25\)',
149
+ 'paratest_ShouldHandleParameterizedTests\(125\)',
150
+ 'paratest_ShouldHandleParameterizedTests\(5\)',
151
+ 'paratest_ShouldHandleParameterizedTests2\(7\)',
152
+ 'paratest_ShouldHandleNonParameterizedTestsWhenParameterizationValid\(RUN_TEST_NO_ARGS\)',
153
+ ],
154
+ :to_fail => [ 'paratest_ShouldHandleParameterizedTestsThatFail\(17\)' ],
155
+ :to_ignore => [ ],
156
+ }
157
+ },
158
+
159
+ { :name => 'ParameterizedThroughCommandLine',
160
+ :testfile => 'testdata/testRunnerGenerator.c',
161
+ :testdefines => ['TEST'],
162
+ :cmdline => " --test_prefix=\"paratest\" --use_param_tests=1",
163
+ :expected => {
164
+ :to_pass => [ 'paratest_ShouldHandleParameterizedTests\(25\)',
165
+ 'paratest_ShouldHandleParameterizedTests\(125\)',
166
+ 'paratest_ShouldHandleParameterizedTests\(5\)',
167
+ 'paratest_ShouldHandleParameterizedTests2\(7\)',
168
+ 'paratest_ShouldHandleNonParameterizedTestsWhenParameterizationValid\(RUN_TEST_NO_ARGS\)',
169
+ ],
170
+ :to_fail => [ 'paratest_ShouldHandleParameterizedTestsThatFail\(17\)' ],
171
+ :to_ignore => [ ],
172
+ }
173
+ },
174
+
175
+ { :name => 'ParameterizedThroughCommandLineAndYaml',
176
+ :testfile => 'testdata/testRunnerGenerator.c',
177
+ :testdefines => ['TEST'],
178
+ :cmdline => "--use_param_tests=1",
179
+ :yaml => {
180
+ :test_prefix => "paratest"
181
+ },
182
+ :expected => {
183
+ :to_pass => [ 'paratest_ShouldHandleParameterizedTests\(25\)',
184
+ 'paratest_ShouldHandleParameterizedTests\(125\)',
185
+ 'paratest_ShouldHandleParameterizedTests\(5\)',
186
+ 'paratest_ShouldHandleParameterizedTests2\(7\)',
187
+ 'paratest_ShouldHandleNonParameterizedTestsWhenParameterizationValid\(RUN_TEST_NO_ARGS\)',
188
+ ],
189
+ :to_fail => [ 'paratest_ShouldHandleParameterizedTestsThatFail\(17\)' ],
190
+ :to_ignore => [ ],
191
+ }
192
+ },
193
+
194
+ { :name => 'CException',
195
+ :testfile => 'testdata/testRunnerGenerator.c',
196
+ :testdefines => ['TEST', 'USE_CEXCEPTION'],
197
+ :options => {
198
+ :test_prefix => "extest",
199
+ :plugins => [ :cexception ],
200
+ },
201
+ :expected => {
202
+ :to_pass => [ 'extest_ShouldHandleCExceptionInTest' ],
203
+ :to_fail => [ ],
204
+ :to_ignore => [ ],
205
+ }
206
+ },
207
+
208
+ { :name => 'CustomSetupAndTeardownThroughOptions',
209
+ :testfile => 'testdata/testRunnerGenerator.c',
210
+ :testdefines => ['TEST'],
211
+ :options => {
212
+ :test_prefix => "custtest|test",
213
+ :setup_name => "custom_setup",
214
+ :teardown_name => "custom_teardown",
215
+ },
216
+ :expected => {
217
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
218
+ 'test_NotBeConfusedByLongComplicatedStrings',
219
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
220
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
221
+ 'custtest_ThisTestPassesWhenCustomSetupRan',
222
+ 'custtest_ThisTestPassesWhenCustomTeardownRan',
223
+ ],
224
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
225
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
226
+ }
227
+ },
228
+
229
+ { :name => 'CustomSetupAndTeardownThroughCommandLine',
230
+ :testfile => 'testdata/testRunnerGenerator.c',
231
+ :testdefines => ['TEST'],
232
+ :cmdline => " --test_prefix=\"custtest|test\" --setup_name=\"custom_setup\" --teardown_name=\"custom_teardown\"",
233
+ :expected => {
234
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
235
+ 'test_NotBeConfusedByLongComplicatedStrings',
236
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
237
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
238
+ 'custtest_ThisTestPassesWhenCustomSetupRan',
239
+ 'custtest_ThisTestPassesWhenCustomTeardownRan',
240
+ ],
241
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
242
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
243
+ }
244
+ },
245
+
246
+ { :name => 'CustomSetupAndTeardownThroughYaml',
247
+ :testfile => 'testdata/testRunnerGenerator.c',
248
+ :testdefines => ['TEST'],
249
+ :cmdline => " --test_prefix=\"custtest|test\"",
250
+ :yaml => {
251
+ :setup_name => "custom_setup",
252
+ :teardown_name => "custom_teardown",
253
+ },
254
+ :expected => {
255
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
256
+ 'test_NotBeConfusedByLongComplicatedStrings',
257
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
258
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
259
+ 'custtest_ThisTestPassesWhenCustomSetupRan',
260
+ 'custtest_ThisTestPassesWhenCustomTeardownRan',
261
+ ],
262
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
263
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
264
+ }
265
+ },
266
+
267
+ { :name => 'CustomMain',
268
+ :testfile => 'testdata/testRunnerGenerator.c',
269
+ :testdefines => ['TEST', "USE_ANOTHER_MAIN"],
270
+ :options => {
271
+ :main_name => "custom_main",
272
+ },
273
+ :expected => {
274
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
275
+ 'spec_ThisTestPassesWhenNormalSetupRan',
276
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
277
+ 'test_NotBeConfusedByLongComplicatedStrings',
278
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
279
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
280
+ 'should_RunTestsStartingWithShouldByDefault',
281
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
282
+ ],
283
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
284
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
285
+ }
286
+ },
287
+
288
+ { :name => 'CustomSuiteSetupAndTeardown',
289
+ :testfile => 'testdata/testRunnerGenerator.c',
290
+ :testdefines => ['TEST'],
291
+ :includes => ['Defs.h'],
292
+ :options => {
293
+ :test_prefix => "suitetest|test",
294
+ :suite_setup => " CounterSuiteSetup = 1;",
295
+ :suite_teardown => " return num_failures;",
296
+ },
297
+ :expected => {
298
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
299
+ 'test_NotBeConfusedByLongComplicatedStrings',
300
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
301
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
302
+ 'suitetest_ThisTestPassesWhenCustomSuiteSetupAndTeardownRan',
303
+ ],
304
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
305
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
306
+ }
307
+ },
308
+
309
+ { :name => 'MainExternDeclaration',
310
+ :testfile => 'testdata/testRunnerGenerator.c',
311
+ :testdefines => ['TEST'],
312
+ :includes => ['Defs.h'],
313
+ :options => {
314
+ :main_export_decl => "EXTERN_DECL",
315
+ },
316
+ :expected => {
317
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
318
+ 'spec_ThisTestPassesWhenNormalSetupRan',
319
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
320
+ 'test_NotBeConfusedByLongComplicatedStrings',
321
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
322
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
323
+ 'should_RunTestsStartingWithShouldByDefault',
324
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
325
+ ],
326
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
327
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
328
+ }
329
+ },
330
+
331
+
332
+ #### WITH MOCKS ##########################################
333
+
334
+ { :name => 'DefaultsThroughOptions',
335
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
336
+ :testdefines => ['TEST'],
337
+ :options => nil, #defaults
338
+ :expected => {
339
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
340
+ 'spec_ThisTestPassesWhenNormalSetupRan',
341
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
342
+ 'test_NotBeConfusedByLongComplicatedStrings',
343
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
344
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
345
+ 'should_RunTestsStartingWithShouldByDefault',
346
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
347
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
348
+ ],
349
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
350
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
351
+ }
352
+ },
353
+
354
+ { :name => 'DefaultsThroughCommandLine',
355
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
356
+ :testdefines => ['TEST'],
357
+ :cmdline => "", #defaults
358
+ :expected => {
359
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
360
+ 'spec_ThisTestPassesWhenNormalSetupRan',
361
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
362
+ 'test_NotBeConfusedByLongComplicatedStrings',
363
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
364
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
365
+ 'should_RunTestsStartingWithShouldByDefault',
366
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
367
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
368
+ ],
369
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
370
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
371
+ }
372
+ },
373
+
374
+ { :name => 'DefaultsThroughYAMLFile',
375
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
376
+ :testdefines => ['TEST'],
377
+ :cmdline => "", #defaults
378
+ :yaml => {}, #defaults
379
+ :expected => {
380
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
381
+ 'spec_ThisTestPassesWhenNormalSetupRan',
382
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
383
+ 'test_NotBeConfusedByLongComplicatedStrings',
384
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
385
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
386
+ 'should_RunTestsStartingWithShouldByDefault',
387
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
388
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
389
+ ],
390
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
391
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
392
+ }
393
+ },
394
+
395
+ { :name => 'ShorterFilterOfJustTest',
396
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
397
+ :testdefines => ['TEST'],
398
+ :options => {
399
+ :test_prefix => "test",
400
+ },
401
+ :expected => {
402
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
403
+ 'test_NotBeConfusedByLongComplicatedStrings',
404
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
405
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
406
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
407
+ ],
408
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
409
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
410
+ }
411
+ },
412
+
413
+ { :name => 'ShorterFilterOfJustShould',
414
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
415
+ :testdefines => ['TEST'],
416
+ :options => {
417
+ :test_prefix => "should",
418
+ },
419
+ :expected => {
420
+ :to_pass => [ 'should_RunTestsStartingWithShouldByDefault' ],
421
+ :to_fail => [ ],
422
+ :to_ignore => [ ],
423
+ }
424
+ },
425
+
426
+ { :name => 'ShorterFilterOfJustSpec',
427
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
428
+ :testdefines => ['TEST'],
429
+ :options => {
430
+ :test_prefix => "spec",
431
+ },
432
+ :expected => {
433
+ :to_pass => [ 'spec_ThisTestPassesWhenNormalSetupRan',
434
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
435
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
436
+ ],
437
+ :to_fail => [ ],
438
+ :to_ignore => [ ],
439
+ }
440
+ },
441
+
442
+ { :name => 'InjectIncludes',
443
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
444
+ :testdefines => ['TEST'],
445
+ :options => {
446
+ :includes => ['Defs.h'],
447
+ },
448
+ :expected => {
449
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
450
+ 'spec_ThisTestPassesWhenNormalSetupRan',
451
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
452
+ 'test_NotBeConfusedByLongComplicatedStrings',
453
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
454
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
455
+ 'should_RunTestsStartingWithShouldByDefault',
456
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
457
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
458
+ ],
459
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
460
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
461
+ }
462
+ },
463
+
464
+ { :name => 'ParameterizedThroughOptions',
465
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
466
+ :testdefines => ['TEST'],
467
+ :options => {
468
+ :test_prefix => "paratest",
469
+ :use_param_tests => true,
470
+ },
471
+ :expected => {
472
+ :to_pass => [ 'paratest_ShouldHandleParameterizedTests\(25\)',
473
+ 'paratest_ShouldHandleParameterizedTests\(125\)',
474
+ 'paratest_ShouldHandleParameterizedTests\(5\)',
475
+ 'paratest_ShouldHandleParameterizedTests2\(7\)',
476
+ 'paratest_ShouldHandleNonParameterizedTestsWhenParameterizationValid\(RUN_TEST_NO_ARGS\)',
477
+ ],
478
+ :to_fail => [ 'paratest_ShouldHandleParameterizedTestsThatFail\(17\)' ],
479
+ :to_ignore => [ ],
480
+ }
481
+ },
482
+
483
+ { :name => 'ParameterizedThroughCommandLine',
484
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
485
+ :testdefines => ['TEST'],
486
+ :cmdline => " --test_prefix=\"paratest\" --use_param_tests=1",
487
+ :expected => {
488
+ :to_pass => [ 'paratest_ShouldHandleParameterizedTests\(25\)',
489
+ 'paratest_ShouldHandleParameterizedTests\(125\)',
490
+ 'paratest_ShouldHandleParameterizedTests\(5\)',
491
+ 'paratest_ShouldHandleParameterizedTests2\(7\)',
492
+ 'paratest_ShouldHandleNonParameterizedTestsWhenParameterizationValid\(RUN_TEST_NO_ARGS\)',
493
+ ],
494
+ :to_fail => [ 'paratest_ShouldHandleParameterizedTestsThatFail\(17\)' ],
495
+ :to_ignore => [ ],
496
+ }
497
+ },
498
+
499
+ { :name => 'ParameterizedThroughCommandLineAndYaml',
500
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
501
+ :testdefines => ['TEST'],
502
+ :cmdline => "--use_param_tests=1",
503
+ :yaml => {
504
+ :test_prefix => "paratest"
505
+ },
506
+ :expected => {
507
+ :to_pass => [ 'paratest_ShouldHandleParameterizedTests\(25\)',
508
+ 'paratest_ShouldHandleParameterizedTests\(125\)',
509
+ 'paratest_ShouldHandleParameterizedTests\(5\)',
510
+ 'paratest_ShouldHandleParameterizedTests2\(7\)',
511
+ 'paratest_ShouldHandleNonParameterizedTestsWhenParameterizationValid\(RUN_TEST_NO_ARGS\)',
512
+ ],
513
+ :to_fail => [ 'paratest_ShouldHandleParameterizedTestsThatFail\(17\)' ],
514
+ :to_ignore => [ ],
515
+ }
516
+ },
517
+
518
+ { :name => 'CException',
519
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
520
+ :testdefines => ['TEST', 'USE_CEXCEPTION'],
521
+ :options => {
522
+ :test_prefix => "extest",
523
+ :plugins => [ :cexception ],
524
+ },
525
+ :expected => {
526
+ :to_pass => [ 'extest_ShouldHandleCExceptionInTest' ],
527
+ :to_fail => [ ],
528
+ :to_ignore => [ ],
529
+ }
530
+ },
531
+
532
+ { :name => 'CustomSetupAndTeardownThroughOptions',
533
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
534
+ :testdefines => ['TEST'],
535
+ :options => {
536
+ :test_prefix => "custtest|test",
537
+ :setup_name => "custom_setup",
538
+ :teardown_name => "custom_teardown",
539
+ },
540
+ :expected => {
541
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
542
+ 'test_NotBeConfusedByLongComplicatedStrings',
543
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
544
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
545
+ 'custtest_ThisTestPassesWhenCustomSetupRan',
546
+ 'custtest_ThisTestPassesWhenCustomTeardownRan',
547
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
548
+ ],
549
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
550
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
551
+ }
552
+ },
553
+
554
+ { :name => 'CustomSetupAndTeardownThroughCommandLine',
555
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
556
+ :testdefines => ['TEST'],
557
+ :cmdline => " --test_prefix=\"custtest|test\" --setup_name=\"custom_setup\" --teardown_name=\"custom_teardown\"",
558
+ :expected => {
559
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
560
+ 'test_NotBeConfusedByLongComplicatedStrings',
561
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
562
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
563
+ 'custtest_ThisTestPassesWhenCustomSetupRan',
564
+ 'custtest_ThisTestPassesWhenCustomTeardownRan',
565
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
566
+ ],
567
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
568
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
569
+ }
570
+ },
571
+
572
+ { :name => 'CustomSetupAndTeardownThroughYaml',
573
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
574
+ :testdefines => ['TEST'],
575
+ :cmdline => " --test_prefix=\"custtest|test\"",
576
+ :yaml => {
577
+ :setup_name => "custom_setup",
578
+ :teardown_name => "custom_teardown",
579
+ },
580
+ :expected => {
581
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
582
+ 'test_NotBeConfusedByLongComplicatedStrings',
583
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
584
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
585
+ 'custtest_ThisTestPassesWhenCustomSetupRan',
586
+ 'custtest_ThisTestPassesWhenCustomTeardownRan',
587
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
588
+ ],
589
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
590
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
591
+ }
592
+ },
593
+
594
+ { :name => 'CustomMain',
595
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
596
+ :testdefines => ['TEST', "USE_ANOTHER_MAIN"],
597
+ :options => {
598
+ :main_name => "custom_main",
599
+ },
600
+ :expected => {
601
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
602
+ 'spec_ThisTestPassesWhenNormalSetupRan',
603
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
604
+ 'test_NotBeConfusedByLongComplicatedStrings',
605
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
606
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
607
+ 'should_RunTestsStartingWithShouldByDefault',
608
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
609
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
610
+ ],
611
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
612
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
613
+ }
614
+ },
615
+
616
+ { :name => 'CustomSuiteSetupAndTeardown',
617
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
618
+ :testdefines => ['TEST'],
619
+ :includes => ['Defs.h'],
620
+ :options => {
621
+ :test_prefix => "suitetest|test",
622
+ :suite_setup => " CounterSuiteSetup = 1;",
623
+ :suite_teardown => " return num_failures;",
624
+ },
625
+ :expected => {
626
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
627
+ 'test_NotBeConfusedByLongComplicatedStrings',
628
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
629
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
630
+ 'suitetest_ThisTestPassesWhenCustomSuiteSetupAndTeardownRan',
631
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
632
+ ],
633
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
634
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
635
+ }
636
+ },
637
+
638
+ { :name => 'MainExternDeclaration',
639
+ :testfile => 'testdata/testRunnerGeneratorWithMocks.c',
640
+ :testdefines => ['TEST'],
641
+ :includes => ['Defs.h'],
642
+ :options => {
643
+ :main_export_decl => "EXTERN_DECL",
644
+ },
645
+ :expected => {
646
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
647
+ 'spec_ThisTestPassesWhenNormalSetupRan',
648
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
649
+ 'test_NotBeConfusedByLongComplicatedStrings',
650
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
651
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
652
+ 'should_RunTestsStartingWithShouldByDefault',
653
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
654
+ 'test_ShouldCallMockInitAndVerifyFunctionsForEachTest',
655
+ ],
656
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
657
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
658
+ }
659
+ },
660
+
661
+
662
+
663
+ #### WITH ARGS ##########################################
664
+
665
+ { :name => 'ArgsThroughOptions',
666
+ :testfile => 'testdata/testRunnerGenerator.c',
667
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
668
+ :options => {
669
+ :cmdline_args => true,
670
+ },
671
+ :expected => {
672
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
673
+ 'spec_ThisTestPassesWhenNormalSetupRan',
674
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
675
+ 'test_NotBeConfusedByLongComplicatedStrings',
676
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
677
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
678
+ 'should_RunTestsStartingWithShouldByDefault',
679
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
680
+ ],
681
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
682
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
683
+ }
684
+ },
15
685
 
16
- def verify_output_equal(subtest)
17
- expected = File.read(EXP_FILE + subtest + '.c').gsub(/\r\n/,"\n")
18
- actual = File.read(OUT_FILE + subtest + '.c').gsub(/\r\n/,"\n")
19
- if (expected != actual)
20
- report(" #{subtest}:FAIL")
21
- $generate_test_runner_failures += 1
686
+ { :name => 'ArgsThroughCommandLine',
687
+ :testfile => 'testdata/testRunnerGenerator.c',
688
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
689
+ :cmdline => "--cmdline_args=1",
690
+ :expected => {
691
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
692
+ 'spec_ThisTestPassesWhenNormalSetupRan',
693
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
694
+ 'test_NotBeConfusedByLongComplicatedStrings',
695
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
696
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
697
+ 'should_RunTestsStartingWithShouldByDefault',
698
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
699
+ ],
700
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
701
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
702
+ }
703
+ },
704
+
705
+ { :name => 'ArgsThroughYAMLFile',
706
+ :testfile => 'testdata/testRunnerGenerator.c',
707
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
708
+ :cmdline => "",
709
+ :yaml => {
710
+ :cmdline_args => true,
711
+ },
712
+ :expected => {
713
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
714
+ 'spec_ThisTestPassesWhenNormalSetupRan',
715
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
716
+ 'test_NotBeConfusedByLongComplicatedStrings',
717
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
718
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
719
+ 'should_RunTestsStartingWithShouldByDefault',
720
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
721
+ ],
722
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
723
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
724
+ }
725
+ },
726
+
727
+ { :name => 'ArgsNameFilterJustTest',
728
+ :testfile => 'testdata/testRunnerGenerator.c',
729
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
730
+ :options => {
731
+ :cmdline_args => true,
732
+ },
733
+ :cmdline_args => "-n test_",
734
+ :expected => {
735
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
736
+ 'test_NotBeConfusedByLongComplicatedStrings',
737
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
738
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
739
+ ],
740
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
741
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
742
+ }
743
+ },
744
+
745
+ { :name => 'ArgsNameFilterJustShould',
746
+ :testfile => 'testdata/testRunnerGenerator.c',
747
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
748
+ :options => {
749
+ :cmdline_args => true,
750
+ },
751
+ :cmdline_args => "-n should_",
752
+ :expected => {
753
+ :to_pass => [ 'should_RunTestsStartingWithShouldByDefault' ],
754
+ :to_fail => [ ],
755
+ :to_ignore => [ ],
756
+ }
757
+ },
758
+
759
+ { :name => 'ArgsNameFilterTestAndShould',
760
+ :testfile => 'testdata/testRunnerGenerator.c',
761
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
762
+ :options => {
763
+ :cmdline_args => true,
764
+ },
765
+ :cmdline_args => "-n should_,test_",
766
+ :expected => {
767
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
768
+ 'test_NotBeConfusedByLongComplicatedStrings',
769
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
770
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
771
+ 'should_RunTestsStartingWithShouldByDefault' ],
772
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
773
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
774
+ }
775
+ },
776
+
777
+ { :name => 'ArgsNameFilterWithWildcardOnFile',
778
+ :testfile => 'testdata/testRunnerGeneratorSmall.c',
779
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
780
+ :options => {
781
+ :cmdline_args => true,
782
+ },
783
+ :cmdline_args => "-n testRunnerGeneratorSma*",
784
+ :expected => {
785
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
786
+ 'spec_ThisTestPassesWhenNormalSetupRan',
787
+ 'spec_ThisTestPassesWhenNormalTeardownRan' ],
788
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
789
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
790
+ }
791
+ },
792
+
793
+ { :name => 'ArgsNameFilterWithWildcardAsName',
794
+ :testfile => 'testdata/testRunnerGeneratorSmall.c',
795
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
796
+ :options => {
797
+ :cmdline_args => true,
798
+ },
799
+ :cmdline_args => "-n testRunnerGeneratorSmall:*",
800
+ :expected => {
801
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
802
+ 'spec_ThisTestPassesWhenNormalSetupRan',
803
+ 'spec_ThisTestPassesWhenNormalTeardownRan' ],
804
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
805
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
806
+ }
807
+ },
808
+
809
+ { :name => 'ArgsNameFilterWithWildcardOnName',
810
+ :testfile => 'testdata/testRunnerGeneratorSmall.c',
811
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
812
+ :options => {
813
+ :cmdline_args => true,
814
+ },
815
+ :cmdline_args => "-n testRunnerGeneratorSmall:test_*",
816
+ :expected => {
817
+ :to_pass => [ 'test_ThisTestAlwaysPasses' ],
818
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
819
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
820
+ }
821
+ },
822
+
823
+ { :name => 'ArgsNameFilterWithWildcardAndShortName',
824
+ :testfile => 'testdata/testRunnerGeneratorSmall.c',
825
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
826
+ :options => {
827
+ :cmdline_args => true,
828
+ },
829
+ :cmdline_args => "-n testRunnerGeneratorSmall:te*",
830
+ :expected => {
831
+ :to_pass => [ 'test_ThisTestAlwaysPasses' ],
832
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
833
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
834
+ }
835
+ },
836
+
837
+ { :name => 'ArgsNameFilterWithWildcardOnBoth',
838
+ :testfile => 'testdata/testRunnerGeneratorSmall.c',
839
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
840
+ :options => {
841
+ :cmdline_args => true,
842
+ },
843
+ :cmdline_args => "-n testRunnerGeneratorSm*:*",
844
+ :expected => {
845
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
846
+ 'spec_ThisTestPassesWhenNormalSetupRan',
847
+ 'spec_ThisTestPassesWhenNormalTeardownRan' ],
848
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
849
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
850
+ }
851
+ },
852
+
853
+ { :name => 'ArgsExcludeFilterJustTest',
854
+ :testfile => 'testdata/testRunnerGenerator.c',
855
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
856
+ :options => {
857
+ :cmdline_args => true,
858
+ },
859
+ :cmdline_args => "-x test_",
860
+ :expected => {
861
+ :to_pass => [ 'spec_ThisTestPassesWhenNormalSetupRan',
862
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
863
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
864
+ 'should_RunTestsStartingWithShouldByDefault',
865
+ ],
866
+ :to_fail => [ ],
867
+ :to_ignore => [ ],
868
+ }
869
+ },
870
+
871
+ { :name => 'ArgsIncludeAndExcludeFilter',
872
+ :testfile => 'testdata/testRunnerGenerator.c',
873
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
874
+ :options => {
875
+ :cmdline_args => true,
876
+ :includes => ['Defs.h'],
877
+ },
878
+ :cmdline_args => "-n test_ -x Ignored",
879
+ :expected => {
880
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
881
+ 'test_NotBeConfusedByLongComplicatedStrings',
882
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
883
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
884
+ ],
885
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
886
+ :to_ignore => [ ],
887
+ }
888
+ },
889
+
890
+ { :name => 'ArgsIncludeSingleTest',
891
+ :testfile => 'testdata/testRunnerGenerator.c',
892
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
893
+ :options => {
894
+ :cmdline_args => true,
895
+ },
896
+ :cmdline_args => "-n ThisTestAlwaysPasses",
897
+ :expected => {
898
+ :to_pass => [ 'test_ThisTestAlwaysPasses' ],
899
+ :to_fail => [ ],
900
+ :to_ignore => [ ],
901
+ }
902
+ },
903
+
904
+ { :name => 'ArgsIncludeSingleTestInSpecificFile',
905
+ :testfile => 'testdata/testRunnerGenerator.c',
906
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
907
+ :options => {
908
+ :cmdline_args => true,
909
+ },
910
+ :cmdline_args => "-n testRunnerGenerator:ThisTestAlwaysPasses",
911
+ :expected => {
912
+ :to_pass => [ 'test_ThisTestAlwaysPasses' ],
913
+ :to_fail => [ ],
914
+ :to_ignore => [ ],
915
+ }
916
+ },
917
+
918
+ { :name => 'ArgsIncludeTestFileWithExtension',
919
+ :testfile => 'testdata/testRunnerGenerator.c',
920
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
921
+ :options => {
922
+ :cmdline_args => true,
923
+ },
924
+ :cmdline_args => "-n testRunnerGenerator.c:ThisTestAlwaysPasses",
925
+ :expected => {
926
+ :to_pass => [ 'test_ThisTestAlwaysPasses' ],
927
+ :to_fail => [ ],
928
+ :to_ignore => [ ],
929
+ }
930
+ },
931
+
932
+ { :name => 'ArgsIncludeDoubleQuotes',
933
+ :testfile => 'testdata/testRunnerGenerator.c',
934
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
935
+ :options => {
936
+ :cmdline_args => true,
937
+ },
938
+ :cmdline_args => "-n \"testRunnerGenerator:ThisTestAlwaysPasses,test_ThisTestAlwaysFails\"",
939
+ :expected => {
940
+ :to_pass => [ 'test_ThisTestAlwaysPasses' ],
941
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
942
+ :to_ignore => [ ],
943
+ }
944
+ },
945
+
946
+ { :name => 'ArgsIncludeSingleQuotes',
947
+ :testfile => 'testdata/testRunnerGenerator.c',
948
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
949
+ :options => {
950
+ :cmdline_args => true,
951
+ },
952
+ :cmdline_args => "-n 'testRunnerGenerator:ThisTestAlwaysPasses,test_ThisTestAlwaysFails'",
953
+ :expected => {
954
+ :to_pass => [ 'test_ThisTestAlwaysPasses' ],
955
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
956
+ :to_ignore => [ ],
957
+ }
958
+ },
959
+
960
+ { :name => 'ArgsIncludeAValidTestForADifferentFile',
961
+ :testfile => 'testdata/testRunnerGenerator.c',
962
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
963
+ :options => {
964
+ :cmdline_args => true,
965
+ },
966
+ :cmdline_args => "-n AnotherFile:ThisTestDoesNotExist",
967
+ :expected => {
968
+ :to_pass => [ ],
969
+ :to_fail => [ ],
970
+ :to_ignore => [ ],
971
+ }
972
+ },
973
+
974
+ { :name => 'ArgsIncludeNoTests',
975
+ :testfile => 'testdata/testRunnerGenerator.c',
976
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
977
+ :options => {
978
+ :cmdline_args => true,
979
+ },
980
+ :cmdline_args => "-n ThisTestDoesNotExist",
981
+ :expected => {
982
+ :to_pass => [ ],
983
+ :to_fail => [ ],
984
+ :to_ignore => [ ],
985
+ }
986
+ },
987
+
988
+ { :name => 'ArgsExcludeAllTests',
989
+ :testfile => 'testdata/testRunnerGenerator.c',
990
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
991
+ :options => {
992
+ :cmdline_args => true,
993
+ },
994
+ :cmdline_args => "-x _",
995
+ :expected => {
996
+ :to_pass => [ ],
997
+ :to_fail => [ ],
998
+ :to_ignore => [ ],
999
+ }
1000
+ },
1001
+
1002
+ { :name => 'ArgsIncludeFullFile',
1003
+ :testfile => 'testdata/testRunnerGenerator.c',
1004
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
1005
+ :options => {
1006
+ :cmdline_args => true,
1007
+ },
1008
+ :cmdline_args => "-n testRunnerGenerator",
1009
+ :expected => {
1010
+ :to_pass => [ 'test_ThisTestAlwaysPasses',
1011
+ 'spec_ThisTestPassesWhenNormalSetupRan',
1012
+ 'spec_ThisTestPassesWhenNormalTeardownRan',
1013
+ 'test_NotBeConfusedByLongComplicatedStrings',
1014
+ 'test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings',
1015
+ 'test_StillNotBeConfusedByLongComplicatedStrings',
1016
+ 'should_RunTestsStartingWithShouldByDefault',
1017
+ 'spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan',
1018
+ ],
1019
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
1020
+ :to_ignore => [ 'test_ThisTestAlwaysIgnored' ],
1021
+ }
1022
+ },
1023
+
1024
+ { :name => 'ArgsIncludeWithAlternateFlag',
1025
+ :testfile => 'testdata/testRunnerGenerator.c',
1026
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
1027
+ :options => {
1028
+ :cmdline_args => true,
1029
+ },
1030
+ :cmdline_args => "-f=\"testRunnerGenerator:ThisTestAlwaysPasses,test_ThisTestAlwaysFails\"",
1031
+ :expected => {
1032
+ :to_pass => [ 'test_ThisTestAlwaysPasses' ],
1033
+ :to_fail => [ 'test_ThisTestAlwaysFails' ],
1034
+ :to_ignore => [ ],
1035
+ }
1036
+ },
1037
+
1038
+ { :name => 'ArgsIncludeWithParameterized',
1039
+ :testfile => 'testdata/testRunnerGenerator.c',
1040
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
1041
+ :cmdline => "--use_param_tests=1",
1042
+ :yaml => {
1043
+ :cmdline_args => true,
1044
+ :test_prefix => "paratest"
1045
+ },
1046
+ :cmdline_args => "-n ShouldHandleParameterizedTests",
1047
+ :expected => {
1048
+ :to_pass => [ 'paratest_ShouldHandleParameterizedTests\(25\)',
1049
+ 'paratest_ShouldHandleParameterizedTests\(125\)',
1050
+ 'paratest_ShouldHandleParameterizedTests\(5\)',
1051
+ 'paratest_ShouldHandleParameterizedTests2\(7\)',
1052
+ ],
1053
+ :to_fail => [ 'paratest_ShouldHandleParameterizedTestsThatFail\(17\)' ],
1054
+ :to_ignore => [ ],
1055
+ }
1056
+ },
1057
+
1058
+ { :name => 'ArgsList',
1059
+ :testfile => 'testdata/testRunnerGenerator.c',
1060
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
1061
+ :options => {
1062
+ :cmdline_args => true,
1063
+ },
1064
+ :cmdline_args => "-l",
1065
+ :expected => {
1066
+ :to_pass => [ ],
1067
+ :to_fail => [ ],
1068
+ :to_ignore => [ ],
1069
+ :text => [ "testRunnerGenerator",
1070
+ "test_ThisTestAlwaysPasses",
1071
+ "test_ThisTestAlwaysFails",
1072
+ "test_ThisTestAlwaysIgnored",
1073
+ "spec_ThisTestPassesWhenNormalSuiteSetupAndTeardownRan",
1074
+ "spec_ThisTestPassesWhenNormalSetupRan",
1075
+ "spec_ThisTestPassesWhenNormalTeardownRan",
1076
+ "test_NotBeConfusedByLongComplicatedStrings",
1077
+ "test_NotDisappearJustBecauseTheTestBeforeAndAfterHaveCrazyStrings",
1078
+ "test_StillNotBeConfusedByLongComplicatedStrings",
1079
+ "should_RunTestsStartingWithShouldByDefault"
1080
+ ]
1081
+ }
1082
+ },
1083
+
1084
+ { :name => 'ArgsListParameterized',
1085
+ :testfile => 'testdata/testRunnerGenerator.c',
1086
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
1087
+ :options => {
1088
+ :test_prefix => "paratest",
1089
+ :use_param_tests => true,
1090
+ :cmdline_args => true,
1091
+ },
1092
+ :cmdline_args => "-l",
1093
+ :expected => {
1094
+ :to_pass => [ ],
1095
+ :to_fail => [ ],
1096
+ :to_ignore => [ ],
1097
+ :text => [ "testRunnerGenerator",
1098
+ 'paratest_ShouldHandleParameterizedTests\(25\)',
1099
+ 'paratest_ShouldHandleParameterizedTests\(125\)',
1100
+ 'paratest_ShouldHandleParameterizedTests\(5\)',
1101
+ 'paratest_ShouldHandleParameterizedTests2\(7\)',
1102
+ 'paratest_ShouldHandleNonParameterizedTestsWhenParameterizationValid\(RUN_TEST_NO_ARGS\)',
1103
+ 'paratest_ShouldHandleParameterizedTestsThatFail\(17\)'
1104
+ ],
1105
+ }
1106
+ },
1107
+
1108
+ { :name => 'ArgsIncompleteIncludeFlags',
1109
+ :testfile => 'testdata/testRunnerGenerator.c',
1110
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
1111
+ :options => {
1112
+ :cmdline_args => true,
1113
+ },
1114
+ :cmdline_args => "-n",
1115
+ :expected => {
1116
+ :to_pass => [ ],
1117
+ :to_fail => [ ],
1118
+ :to_ignore => [ ],
1119
+ :text => [ "ERROR: No Test String to Include Matches For" ],
1120
+ }
1121
+ },
1122
+
1123
+ { :name => 'ArgsIncompleteExcludeFlags',
1124
+ :testfile => 'testdata/testRunnerGenerator.c',
1125
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
1126
+ :options => {
1127
+ :cmdline_args => true,
1128
+ },
1129
+ :cmdline_args => "-x",
1130
+ :expected => {
1131
+ :to_pass => [ ],
1132
+ :to_fail => [ ],
1133
+ :to_ignore => [ ],
1134
+ :text => [ "ERROR: No Test String to Exclude Matches For" ],
1135
+ }
1136
+ },
1137
+
1138
+ { :name => 'ArgsIllegalFlags',
1139
+ :testfile => 'testdata/testRunnerGenerator.c',
1140
+ :testdefines => ['TEST', 'UNITY_USE_COMMAND_LINE_ARGS'],
1141
+ :options => {
1142
+ :cmdline_args => true,
1143
+ },
1144
+ :cmdline_args => "-z",
1145
+ :expected => {
1146
+ :to_pass => [ ],
1147
+ :to_fail => [ ],
1148
+ :to_ignore => [ ],
1149
+ :text => [ "ERROR: Unknown Option z" ],
1150
+ }
1151
+ },
1152
+ ]
1153
+
1154
+ def runner_test(test, runner, expected, test_defines, cmdline_args)
1155
+ # Tack on TEST define for compiling unit tests
1156
+ load_configuration($cfg_file)
1157
+
1158
+ #compile objects
1159
+ obj_list = [
1160
+ compile(runner, test_defines),
1161
+ compile(test, test_defines),
1162
+ compile('../src/unity.c', test_defines),
1163
+ ]
1164
+
1165
+ # Link the test executable
1166
+ test_base = File.basename(test, C_EXTENSION)
1167
+ link_it(test_base, obj_list)
1168
+
1169
+ # Execute unit test and generate results file
1170
+ simulator = build_simulator_fields
1171
+ cmdline_args ||= ""
1172
+ executable = $cfg['linker']['bin_files']['destination'] + test_base + $cfg['linker']['bin_files']['extension'] + " #{cmdline_args}"
1173
+ if simulator.nil?
1174
+ cmd_str = executable
22
1175
  else
23
- report(" #{subtest}:PASS")
1176
+ cmd_str = "#{simulator[:command]} #{simulator[:pre_support]} #{executable} #{simulator[:post_support]}"
24
1177
  end
25
- end
1178
+ output = execute(cmd_str, true)
26
1179
 
27
- should "GenerateARunnerByCreatingRunnerWithOptions" do
28
- sets = { 'def' => nil,
29
- 'new1' => { :plugins => [:cexception], :includes => ['one.h', 'two.h'], :enforce_strict_ordering => true },
30
- 'new2' => { :plugins => [:ignore], :suite_setup => "a_custom_setup();", :suite_teardown => "a_custom_teardown();" }
31
- }
32
-
33
- sets.each_pair do |subtest, options|
34
- UnityTestRunnerGenerator.new(options).run(TEST_FILE, OUT_FILE + subtest + '.c')
35
- verify_output_equal(subtest)
36
- UnityTestRunnerGenerator.new(options).run(TEST_MOCK, OUT_FILE + 'mock_' + subtest + '.c')
37
- verify_output_equal('mock_' + subtest)
38
- end
39
- end
1180
+ #compare to the expected pass/fail
1181
+ allgood = expected[:to_pass].inject(true) {|s,v| s && verify_match(/#{v}:PASS/, output) }
1182
+ allgood = expected[:to_fail].inject(allgood) {|s,v| s && verify_match(/#{v}:FAIL/, output) }
1183
+ allgood = expected[:to_ignore].inject(allgood) {|s,v| s && verify_match(/#{v}:IGNORE/, output) }
40
1184
 
41
- should "GenerateARunnerAlongWithAHeaderIfSpecified" do
42
- sets = { 'head1' => { :header_file => "#{OUT_FILE}head1.h" } }
43
- sets.each_pair do |subtest, options|
44
- UnityTestRunnerGenerator.new(options).run(TEST_FILE, OUT_FILE + subtest + '.c')
45
- verify_output_equal(subtest)
46
- end
1185
+ #verify there weren't more pass/fail/etc than expected
1186
+ allgood &&= verify_number( expected[:to_pass], /(:PASS)/, output)
1187
+ allgood &&= verify_number( expected[:to_fail], /(:FAIL)/, output)
1188
+ allgood &&= verify_number( expected[:to_ignore], /(:IGNORE)/, output)
47
1189
 
48
- sets = { 'head1' => { :header_file => "#{OUT_FILE}mock_head1.h" } }
49
- sets.each_pair do |subtest, options|
50
- UnityTestRunnerGenerator.new(options).run(TEST_MOCK, OUT_FILE + 'mock_' + subtest + '.c')
51
- verify_output_equal('mock_' + subtest)
1190
+ #if we care about any other text, check that too
1191
+ if (expected[:text])
1192
+ allgood = expected[:text].inject(allgood) {|s,v| s && verify_match(/#{v}/, output) }
1193
+ allgood &&= verify_number( expected[:text], /.+/, output )
52
1194
  end
53
- end
54
1195
 
55
- should "GenerateARunnerByRunningRunnerWithOptions" do
56
- sets = { 'run1' => { :plugins => [:cexception], :includes => ['one.h', 'two.h'], :enforce_strict_ordering => true },
57
- 'run2' => { :plugins => [:ignore], :suite_setup => "a_custom_setup();", :suite_teardown => "a_custom_teardown();" }
58
- }
1196
+ report output if (!allgood && !$verbose) #report failures if not already reporting everything
1197
+ return allgood
1198
+ end
59
1199
 
60
- sets.each_pair do |subtest, options|
61
- UnityTestRunnerGenerator.new.run(TEST_FILE, OUT_FILE + subtest + '.c', options)
62
- verify_output_equal(subtest)
63
- UnityTestRunnerGenerator.new.run(TEST_MOCK, OUT_FILE + 'mock_' + subtest + '.c', options)
64
- verify_output_equal('mock_' + subtest)
1200
+ def verify_match(expression, output)
1201
+ if (expression =~ output)
1202
+ return true
1203
+ else
1204
+ report " FAIL: No Match For /#{expression.to_s}/"
1205
+ return false
65
1206
  end
66
1207
  end
67
1208
 
68
- should "GenerateARunnerByPullingYamlOptions" do
69
- subtest = 'yaml'
70
- cmdstr = "ruby ../auto/generate_test_runner.rb testdata/sample.yml \"#{TEST_FILE}\" \"#{OUT_FILE + subtest + '.c'}\""
71
- `#{cmdstr}`
72
- verify_output_equal(subtest)
73
-
74
- cmdstr = "ruby ../auto/generate_test_runner.rb testdata/sample.yml \"#{TEST_MOCK}\" \"#{OUT_FILE + 'mock_' + subtest + '.c'}\""
75
- `#{cmdstr}`
76
- verify_output_equal('mock_' + subtest)
1209
+ def verify_number(expected, expression, output)
1210
+ exp = expected.length
1211
+ act = output.scan(expression).length
1212
+ if (exp == act)
1213
+ return true
1214
+ else
1215
+ report " FAIL: Expected #{exp} Matches For /#{expression.to_s}/. Was #{act}"
1216
+ return false
1217
+ end
77
1218
  end
78
1219
 
79
- should "GenerateARunnerByPullingCommandlineOptions" do
80
- subtest = 'cmd'
81
- cmdstr = "ruby ../auto/generate_test_runner.rb -cexception \"#{TEST_FILE}\" \"#{OUT_FILE + subtest + '.c'}\""
82
- `#{cmdstr}`
83
- verify_output_equal(subtest)
1220
+ RUNNER_TESTS.each do |testset|
1221
+ basename = File.basename(testset[:testfile], C_EXTENSION)
1222
+ testset_name = "Runner_#{basename}_#{testset[:name]}"
1223
+ should testset_name do
1224
+ runner_name = OUT_FILE + testset[:name] + '_runner.c'
84
1225
 
85
- cmdstr = "ruby ../auto/generate_test_runner.rb -cexception \"#{TEST_MOCK}\" \"#{OUT_FILE + 'mock_' + subtest + '.c'}\""
86
- `#{cmdstr}`
87
- verify_output_equal('mock_' + subtest)
88
- end
1226
+ #create a yaml file first if required
1227
+ yaml_option = ""
1228
+ if (testset[:yaml])
1229
+ File.open("build/runner_options.yml",'w') {|f| f << { :unity => testset[:yaml] }.to_yaml }
1230
+ yaml_option = "build/runner_options.yml"
1231
+ end
89
1232
 
90
- should "GenerateARunnerThatUsesParameterizedTests" do
91
- sets = { 'param' => { :plugins => [:ignore], :use_param_tests => true }
92
- }
1233
+ #run script via command line or through hash function call, as requested
1234
+ if (testset[:cmdline])
1235
+ cmdstr = "ruby ../auto/generate_test_runner.rb #{yaml_option} #{testset[:cmdline]} \"#{testset[:testfile]}\" \"#{runner_name}\""
1236
+ `#{cmdstr}`
1237
+ else
1238
+ UnityTestRunnerGenerator.new(testset[:options]).run(testset[:testfile], runner_name)
1239
+ end
93
1240
 
94
- sets.each_pair do |subtest, options|
95
- UnityTestRunnerGenerator.new(options).run(TEST_FILE, OUT_FILE + subtest + '.c')
96
- verify_output_equal(subtest)
97
- UnityTestRunnerGenerator.new(options).run(TEST_MOCK, OUT_FILE + 'mock_' + subtest + '.c')
98
- verify_output_equal('mock_' + subtest)
1241
+ #test the script against the specified test file and check results
1242
+ if (runner_test(testset[:testfile], runner_name, testset[:expected], testset[:testdefines], testset[:cmdline_args]))
1243
+ report "#{testset_name}:PASS"
1244
+ else
1245
+ report "#{testset_name}:FAIL"
1246
+ $generate_test_runner_failures += 1
1247
+ end
1248
+ $generate_test_runner_tests += 1
99
1249
  end
100
1250
  end
101
1251