ceedling 0.13.0.rc1 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (426) hide show
  1. data/Gemfile.lock +32 -0
  2. data/README.md +8 -8
  3. data/assets/example_file.c +5 -0
  4. data/assets/example_file.h +6 -0
  5. data/assets/project_as_gem.yml +71 -0
  6. data/assets/{project.yml → project_with_guts.yml} +2 -0
  7. data/assets/rakefile_as_gem.rb +1 -0
  8. data/assets/{rakefile.rb → rakefile_with_guts.rb} +0 -0
  9. data/assets/test_example_file.c +13 -0
  10. data/bin/ceedling +55 -31
  11. data/ceedling-0.13.0.rc4.gem +0 -0
  12. data/ceedling.gemspec +13 -12
  13. data/ceedling.sublime-project +8 -0
  14. data/ceedling.sublime-workspace +365 -0
  15. data/examples/temp_sensor/project.yml +3 -4
  16. data/lib/ceedling.rb +13 -4
  17. data/lib/ceedling/version.rb +3 -3
  18. data/lib/project_file_loader.rb +1 -1
  19. data/lib/rakefile.rb +14 -1
  20. data/lib/target_loader.rb +38 -0
  21. data/plugins/bullseye/{template.erb → assets/template.erb} +0 -0
  22. data/plugins/bullseye/{defaults.yml → config/defaults.yml} +0 -0
  23. data/plugins/bullseye/{bullseye.rb → lib/bullseye.rb} +9 -10
  24. data/spec/spec_system_helper.rb +192 -0
  25. data/spec/system/deployment_spec.rb +116 -0
  26. data/tags +977 -0
  27. data/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  28. data/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  29. data/vendor/c_exception/docs/license.txt +30 -0
  30. data/vendor/c_exception/docs/readme.txt +242 -0
  31. data/vendor/c_exception/makefile +24 -0
  32. data/vendor/c_exception/rakefile.rb +41 -0
  33. data/vendor/c_exception/test/CExceptionConfig.h +44 -0
  34. data/vendor/c_exception/test/TestException.c +328 -0
  35. data/vendor/c_exception/test/TestException_Runner.c +57 -0
  36. data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
  37. data/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
  38. data/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
  39. data/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
  40. data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +313 -0
  41. data/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
  42. data/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +139 -0
  43. data/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  44. data/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  45. data/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
  46. data/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
  47. data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
  48. data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
  49. data/vendor/c_exception/vendor/unity/examples/makefile +40 -0
  50. data/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
  51. data/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +256 -0
  52. data/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
  53. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
  54. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
  55. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
  56. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
  57. data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
  58. data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +31 -0
  59. data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  60. data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  61. data/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  62. data/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  63. data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
  64. data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  65. data/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
  66. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  67. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  68. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  69. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  70. data/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  71. data/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  72. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  73. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  74. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  75. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  76. data/vendor/c_exception/vendor/unity/makefile +35 -0
  77. data/vendor/c_exception/vendor/unity/rakefile.rb +59 -0
  78. data/vendor/c_exception/vendor/unity/rakefile_helper.rb +240 -0
  79. data/vendor/c_exception/vendor/unity/release/build.info +2 -0
  80. data/vendor/c_exception/vendor/unity/release/version.info +2 -0
  81. data/vendor/c_exception/vendor/unity/src/unity.c +979 -0
  82. data/vendor/c_exception/vendor/unity/src/unity.h +232 -0
  83. data/vendor/c_exception/vendor/unity/src/unity_internals.h +424 -0
  84. data/vendor/c_exception/vendor/unity/targets/gcc.yml +43 -0
  85. data/vendor/c_exception/vendor/unity/targets/gcc_64.yml +44 -0
  86. data/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
  87. data/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
  88. data/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
  89. data/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  90. data/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  91. data/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  92. data/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
  93. data/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  94. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  95. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
  96. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  97. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  98. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  99. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  100. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  101. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  102. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  103. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  104. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  105. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  106. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
  107. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  108. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  109. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  110. data/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
  111. data/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
  112. data/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
  113. data/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
  114. data/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
  115. data/vendor/c_exception/vendor/unity/test/testunity.c +2024 -0
  116. data/vendor/cmock/docs/CMock Summary.odt +0 -0
  117. data/vendor/cmock/docs/CMock Summary.pdf +0 -0
  118. data/vendor/cmock/docs/CMock_Summary.md +356 -0
  119. data/vendor/cmock/docs/license.txt +31 -0
  120. data/vendor/cmock/examples/gcc.yml +43 -0
  121. data/vendor/cmock/examples/iar_v4.yml +91 -0
  122. data/vendor/cmock/examples/iar_v5.yml +80 -0
  123. data/vendor/cmock/examples/rakefile.rb +32 -0
  124. data/vendor/cmock/examples/rakefile_helper.rb +270 -0
  125. data/vendor/cmock/examples/src/AT91SAM7X256.h +2556 -0
  126. data/vendor/cmock/examples/src/AdcConductor.c +42 -0
  127. data/vendor/cmock/examples/src/AdcConductor.h +11 -0
  128. data/vendor/cmock/examples/src/AdcHardware.c +27 -0
  129. data/vendor/cmock/examples/src/AdcHardware.h +9 -0
  130. data/vendor/cmock/examples/src/AdcHardwareConfigurator.c +18 -0
  131. data/vendor/cmock/examples/src/AdcHardwareConfigurator.h +10 -0
  132. data/vendor/cmock/examples/src/AdcModel.c +33 -0
  133. data/vendor/cmock/examples/src/AdcModel.h +13 -0
  134. data/vendor/cmock/examples/src/AdcTemperatureSensor.c +51 -0
  135. data/vendor/cmock/examples/src/AdcTemperatureSensor.h +10 -0
  136. data/vendor/cmock/examples/src/Executor.c +25 -0
  137. data/vendor/cmock/examples/src/Executor.h +9 -0
  138. data/vendor/cmock/examples/src/IntrinsicsWrapper.c +18 -0
  139. data/vendor/cmock/examples/src/IntrinsicsWrapper.h +7 -0
  140. data/vendor/cmock/examples/src/Main.c +46 -0
  141. data/vendor/cmock/examples/src/Main.h +7 -0
  142. data/vendor/cmock/examples/src/Model.c +10 -0
  143. data/vendor/cmock/examples/src/Model.h +8 -0
  144. data/vendor/cmock/examples/src/ModelConfig.h +7 -0
  145. data/vendor/cmock/examples/src/TaskScheduler.c +72 -0
  146. data/vendor/cmock/examples/src/TaskScheduler.h +11 -0
  147. data/vendor/cmock/examples/src/TemperatureCalculator.c +27 -0
  148. data/vendor/cmock/examples/src/TemperatureCalculator.h +6 -0
  149. data/vendor/cmock/examples/src/TemperatureFilter.c +39 -0
  150. data/vendor/cmock/examples/src/TemperatureFilter.h +10 -0
  151. data/vendor/cmock/examples/src/TimerConductor.c +15 -0
  152. data/vendor/cmock/examples/src/TimerConductor.h +9 -0
  153. data/vendor/cmock/examples/src/TimerConfigurator.c +51 -0
  154. data/vendor/cmock/examples/src/TimerConfigurator.h +15 -0
  155. data/vendor/cmock/examples/src/TimerHardware.c +15 -0
  156. data/vendor/cmock/examples/src/TimerHardware.h +8 -0
  157. data/vendor/cmock/examples/src/TimerInterruptConfigurator.c +55 -0
  158. data/vendor/cmock/examples/src/TimerInterruptConfigurator.h +13 -0
  159. data/vendor/cmock/examples/src/TimerInterruptHandler.c +25 -0
  160. data/vendor/cmock/examples/src/TimerInterruptHandler.h +10 -0
  161. data/vendor/cmock/examples/src/TimerModel.c +9 -0
  162. data/vendor/cmock/examples/src/TimerModel.h +8 -0
  163. data/vendor/cmock/examples/src/Types.h +103 -0
  164. data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +18 -0
  165. data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.h +6 -0
  166. data/vendor/cmock/examples/src/UsartConductor.c +21 -0
  167. data/vendor/cmock/examples/src/UsartConductor.h +7 -0
  168. data/vendor/cmock/examples/src/UsartConfigurator.c +39 -0
  169. data/vendor/cmock/examples/src/UsartConfigurator.h +13 -0
  170. data/vendor/cmock/examples/src/UsartHardware.c +22 -0
  171. data/vendor/cmock/examples/src/UsartHardware.h +9 -0
  172. data/vendor/cmock/examples/src/UsartModel.c +34 -0
  173. data/vendor/cmock/examples/src/UsartModel.h +10 -0
  174. data/vendor/cmock/examples/src/UsartPutChar.c +16 -0
  175. data/vendor/cmock/examples/src/UsartPutChar.h +8 -0
  176. data/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +7 -0
  177. data/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +8 -0
  178. data/vendor/cmock/examples/test/TestAdcConductor.c +121 -0
  179. data/vendor/cmock/examples/test/TestAdcHardware.c +44 -0
  180. data/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c +43 -0
  181. data/vendor/cmock/examples/test/TestAdcModel.c +33 -0
  182. data/vendor/cmock/examples/test/TestAdcTemperatureSensor.c +47 -0
  183. data/vendor/cmock/examples/test/TestExecutor.c +36 -0
  184. data/vendor/cmock/examples/test/TestMain.c +24 -0
  185. data/vendor/cmock/examples/test/TestModel.c +20 -0
  186. data/vendor/cmock/examples/test/TestTaskScheduler.c +104 -0
  187. data/vendor/cmock/examples/test/TestTemperatureCalculator.c +33 -0
  188. data/vendor/cmock/examples/test/TestTemperatureFilter.c +69 -0
  189. data/vendor/cmock/examples/test/TestTimerConductor.c +32 -0
  190. data/vendor/cmock/examples/test/TestTimerConfigurator.c +112 -0
  191. data/vendor/cmock/examples/test/TestTimerHardware.c +26 -0
  192. data/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c +78 -0
  193. data/vendor/cmock/examples/test/TestTimerInterruptHandler.c +66 -0
  194. data/vendor/cmock/examples/test/TestTimerModel.c +18 -0
  195. data/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +21 -0
  196. data/vendor/cmock/examples/test/TestUsartConductor.c +40 -0
  197. data/vendor/cmock/examples/test/TestUsartConfigurator.c +77 -0
  198. data/vendor/cmock/examples/test/TestUsartHardware.c +37 -0
  199. data/vendor/cmock/examples/test/TestUsartModel.c +40 -0
  200. data/vendor/cmock/examples/test/TestUsartPutChar.c +43 -0
  201. data/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c +22 -0
  202. data/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +71 -0
  203. data/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +94 -0
  204. data/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +67 -0
  205. data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -0
  206. data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -0
  207. data/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -0
  208. data/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -0
  209. data/vendor/cmock/iar/iar_v4/cmock_demo.ewd +1696 -0
  210. data/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -0
  211. data/vendor/cmock/iar/iar_v4/cmock_demo.eww +10 -0
  212. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -0
  213. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -0
  214. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -0
  215. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -0
  216. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -0
  217. data/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -0
  218. data/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -0
  219. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -0
  220. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +86 -0
  221. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +42 -0
  222. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +76 -0
  223. data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +266 -0
  224. data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -0
  225. data/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +71 -0
  226. data/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +94 -0
  227. data/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +67 -0
  228. data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -0
  229. data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -0
  230. data/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -0
  231. data/vendor/cmock/iar/iar_v5/cmock_demo.ewd +1906 -0
  232. data/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -0
  233. data/vendor/cmock/iar/iar_v5/cmock_demo.eww +26 -0
  234. data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -0
  235. data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -0
  236. data/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -0
  237. data/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -0
  238. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -0
  239. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +5 -0
  240. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +18 -0
  241. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +74 -0
  242. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -0
  243. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -0
  244. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +85 -0
  245. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +44 -0
  246. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +73 -0
  247. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -0
  248. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -0
  249. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -0
  250. data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -0
  251. data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -0
  252. data/vendor/cmock/rakefile.rb +111 -0
  253. data/vendor/cmock/rakefile_helper.rb +381 -0
  254. data/vendor/cmock/targets/gcc.yml +53 -0
  255. data/vendor/cmock/targets/iar_arm_v4.yml +108 -0
  256. data/vendor/cmock/targets/iar_arm_v5.yml +93 -0
  257. data/vendor/cmock/test/c/TestCMockC.c +280 -0
  258. data/vendor/cmock/test/c/TestCMockC.yml +12 -0
  259. data/vendor/cmock/test/c/TestCMockCDynamic.c +186 -0
  260. data/vendor/cmock/test/c/TestCMockCDynamic.yml +12 -0
  261. data/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +35 -0
  262. data/vendor/cmock/test/c/TestCMockC_Runner.c +37 -0
  263. data/vendor/cmock/test/spec/cmock_file_writer_spec.rb +25 -0
  264. data/vendor/cmock/test/spec/spec_helper.rb +12 -0
  265. data/vendor/cmock/test/system/systest_generator.rb +178 -0
  266. data/vendor/cmock/test/system/test_compilation/callingconv.h +11 -0
  267. data/vendor/cmock/test/system/test_compilation/config.yml +9 -0
  268. data/vendor/cmock/test/system/test_compilation/const.h +15 -0
  269. data/vendor/cmock/test/system/test_compilation/osek.h +275 -0
  270. data/vendor/cmock/test/system/test_compilation/parsing.h +47 -0
  271. data/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +341 -0
  272. data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +382 -0
  273. data/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +382 -0
  274. data/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +123 -0
  275. data/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +87 -0
  276. data/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +247 -0
  277. data/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +108 -0
  278. data/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +173 -0
  279. data/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +170 -0
  280. data/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +208 -0
  281. data/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +82 -0
  282. data/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +153 -0
  283. data/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +52 -0
  284. data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +91 -0
  285. data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +59 -0
  286. data/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +222 -0
  287. data/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +277 -0
  288. data/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +221 -0
  289. data/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +77 -0
  290. data/vendor/cmock/test/system/test_interactions/unity_ignores.yml +139 -0
  291. data/vendor/cmock/test/test_helper.rb +44 -0
  292. data/vendor/cmock/test/unit/cmock_config_test.rb +121 -0
  293. data/vendor/cmock/test/unit/cmock_config_test.yml +5 -0
  294. data/vendor/cmock/test/unit/cmock_file_writer_test.rb +30 -0
  295. data/vendor/cmock/test/unit/cmock_generator_main_test.rb +413 -0
  296. data/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +114 -0
  297. data/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +190 -0
  298. data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +94 -0
  299. data/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +206 -0
  300. data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +168 -0
  301. data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +291 -0
  302. data/vendor/cmock/test/unit/cmock_header_parser_test.rb +1247 -0
  303. data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +85 -0
  304. data/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -0
  305. data/vendor/cmock/vendor/behaviors/Manifest.txt +9 -0
  306. data/vendor/cmock/vendor/behaviors/Rakefile +19 -0
  307. data/vendor/cmock/vendor/behaviors/lib/behaviors.rb +76 -0
  308. data/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
  309. data/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
  310. data/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +50 -0
  311. data/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +19 -0
  312. data/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
  313. data/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
  314. data/vendor/cmock/vendor/hardmock/CHANGES +78 -0
  315. data/vendor/cmock/vendor/hardmock/LICENSE +7 -0
  316. data/vendor/cmock/vendor/hardmock/README +70 -0
  317. data/vendor/cmock/vendor/hardmock/Rakefile +8 -0
  318. data/vendor/cmock/vendor/hardmock/config/environment.rb +12 -0
  319. data/vendor/cmock/vendor/hardmock/lib/assert_error.rb +23 -0
  320. data/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +14 -0
  321. data/vendor/cmock/vendor/hardmock/lib/hardmock.rb +86 -0
  322. data/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +22 -0
  323. data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
  324. data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
  325. data/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +26 -0
  326. data/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
  327. data/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +180 -0
  328. data/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
  329. data/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
  330. data/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
  331. data/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +9 -0
  332. data/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
  333. data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
  334. data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
  335. data/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +22 -0
  336. data/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
  337. data/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
  338. data/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
  339. data/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
  340. data/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
  341. data/vendor/cmock/vendor/hardmock/test/test_helper.rb +43 -0
  342. data/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
  343. data/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +372 -0
  344. data/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +57 -0
  345. data/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
  346. data/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
  347. data/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +279 -0
  348. data/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
  349. data/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +62 -0
  350. data/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
  351. data/vendor/unity/auto/generate_config.yml +36 -0
  352. data/vendor/unity/auto/unity_test_summary.rb +2 -2
  353. data/vendor/unity/docs/Unity Summary.odt +0 -0
  354. data/vendor/unity/docs/Unity Summary.pdf +0 -0
  355. data/vendor/unity/docs/Unity Summary.txt +216 -0
  356. data/vendor/unity/docs/license.txt +31 -0
  357. data/vendor/unity/examples/helper/UnityHelper.c +10 -0
  358. data/vendor/unity/examples/helper/UnityHelper.h +12 -0
  359. data/vendor/unity/examples/makefile +40 -0
  360. data/vendor/unity/examples/rakefile.rb +32 -0
  361. data/vendor/unity/examples/rakefile_helper.rb +256 -0
  362. data/vendor/unity/examples/readme.txt +18 -0
  363. data/vendor/unity/examples/src/ProductionCode.c +24 -0
  364. data/vendor/unity/examples/src/ProductionCode.h +3 -0
  365. data/vendor/unity/examples/src/ProductionCode2.c +9 -0
  366. data/vendor/unity/examples/src/ProductionCode2.h +2 -0
  367. data/vendor/unity/examples/test/TestProductionCode.c +62 -0
  368. data/vendor/unity/examples/test/TestProductionCode2.c +31 -0
  369. data/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  370. data/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  371. data/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  372. data/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  373. data/vendor/unity/extras/fixture/rakefile.rb +37 -0
  374. data/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  375. data/vendor/unity/extras/fixture/readme.txt +9 -0
  376. data/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  377. data/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  378. data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  379. data/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  380. data/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  381. data/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  382. data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  383. data/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  384. data/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  385. data/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  386. data/vendor/unity/makefile +35 -0
  387. data/vendor/unity/rakefile.rb +59 -0
  388. data/vendor/unity/rakefile_helper.rb +240 -0
  389. data/vendor/unity/release/version.info +1 -1
  390. data/vendor/unity/src/unity.c +1 -1
  391. data/vendor/unity/src/unity_internals.h +5 -5
  392. data/vendor/unity/targets/gcc_32.yml +44 -0
  393. data/vendor/unity/targets/hitech_picc18.yml +101 -0
  394. data/vendor/unity/targets/iar_arm_v4.yml +89 -0
  395. data/vendor/unity/targets/iar_arm_v5.yml +79 -0
  396. data/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  397. data/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  398. data/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  399. data/vendor/unity/targets/iar_msp430.yml +94 -0
  400. data/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  401. data/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  402. data/vendor/unity/test/expectdata/testsample_def.c +50 -0
  403. data/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  404. data/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  405. data/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  406. data/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  407. data/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  408. data/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  409. data/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  410. data/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  411. data/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  412. data/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  413. data/vendor/unity/test/expectdata/testsample_param.c +51 -0
  414. data/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  415. data/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  416. data/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  417. data/vendor/unity/test/test_generate_test_runner.rb +94 -0
  418. data/vendor/unity/test/testdata/mocksample.c +51 -0
  419. data/vendor/unity/test/testdata/sample.yml +9 -0
  420. data/vendor/unity/test/testdata/testsample.c +51 -0
  421. data/vendor/unity/test/testparameterized.c +101 -0
  422. data/vendor/unity/test/testunity.c +2559 -0
  423. metadata +464 -53
  424. data/.gitignore +0 -6
  425. data/.gitmodules +0 -9
  426. data/.rspec +0 -1
@@ -0,0 +1,87 @@
1
+ ---
2
+ :cmock:
3
+ :plugins:
4
+ - # none
5
+
6
+ :systest:
7
+ :types: |
8
+
9
+ :mockable: |
10
+ // no argument names
11
+ void foo(char const*, char* const, const char*);
12
+
13
+ // argument names
14
+ void bar(char const* param1, char* const param2, const char* param3);
15
+
16
+ :source:
17
+ :header: |
18
+ void exercise_const1(char const* param1, char* const param2, const char* param3);
19
+ void exercise_const2(char const* param1, char* const param2, const char* param3);
20
+
21
+ :code: |
22
+ char value1 = '1';
23
+ char value2 = '2';
24
+
25
+ const char* A = &value1;
26
+ char* const B = &value2;
27
+ const char* C = "C";
28
+ const char* D = "D";
29
+
30
+ void exercise_const1(char const* param1, char* const param2, const char* param3)
31
+ {
32
+ foo(param1, param2, param3);
33
+ }
34
+
35
+ void exercise_const2(char const* param1, char* const param2, const char* param3)
36
+ {
37
+ bar(param1, param2, param3);
38
+ }
39
+
40
+ :tests:
41
+ :common: |
42
+ extern const char* A;
43
+ extern char* const B;
44
+ extern const char* C;
45
+ extern const char* D;
46
+
47
+ void setUp(void) {}
48
+ void tearDown(void) {}
49
+ :units:
50
+ - :pass: TRUE
51
+ :should: 'successfully pass several const parameters'
52
+ :code: |
53
+ test()
54
+ {
55
+ foo_Expect( A, B, C );
56
+ exercise_const1( A, B, C );
57
+ }
58
+
59
+ - :pass: FALSE
60
+ :should: 'should fail upon wrong const arguments passed'
61
+ :code: |
62
+ test()
63
+ {
64
+ foo_Expect( A, B, C );
65
+ exercise_const1( (const char*)B, (char * const)A, C );
66
+ }
67
+
68
+ - :pass: FALSE
69
+ :should: 'should fail upon wrong const arguments passed'
70
+ :code: |
71
+ test()
72
+ {
73
+ foo_Expect( A, B, C );
74
+ exercise_const1( A, B, D );
75
+ }
76
+
77
+ - :pass: FALSE
78
+ :should: 'should fail upon wrong const arguments passed'
79
+ :code: |
80
+ test()
81
+ {
82
+ bar_Expect( A, B, C );
83
+ exercise_const2( A, (char * const)C, (const char *)B );
84
+ }
85
+
86
+
87
+ ...
@@ -0,0 +1,247 @@
1
+ ---
2
+ :cmock:
3
+ :enforce_strict_ordering: 1
4
+ :plugins:
5
+ - :ignore
6
+ - :cexception
7
+
8
+ :systest:
9
+ :types: |
10
+ #define UINT32 unsigned int
11
+
12
+ typedef signed int custom_type;
13
+
14
+ :mockable: |
15
+ #include "CException.h"
16
+ UINT32 foo(custom_type a);
17
+ UINT32 bar(custom_type b);
18
+ void baz(custom_type c);
19
+
20
+ :source:
21
+ :header: |
22
+ #include "CException.h"
23
+ UINT32 function_a(int a, int b);
24
+ void function_b(void);
25
+ void function_c(void);
26
+ void function_d(void);
27
+
28
+ :code: |
29
+ UINT32 function_a(int a, int b)
30
+ {
31
+ return foo((custom_type)a) + bar((custom_type)b);
32
+ }
33
+
34
+ void function_b(void)
35
+ {
36
+ baz((custom_type)1);
37
+ foo((custom_type)2);
38
+ bar((custom_type)3);
39
+ baz((custom_type)4);
40
+ foo((custom_type)5);
41
+ bar((custom_type)6);
42
+ baz((custom_type)7);
43
+ }
44
+
45
+ void function_c(void)
46
+ {
47
+ foo((custom_type)1);
48
+ foo((custom_type)2);
49
+ bar((custom_type)3);
50
+ bar((custom_type)4);
51
+ foo((custom_type)5);
52
+ }
53
+
54
+ void function_d(void)
55
+ {
56
+ CEXCEPTION_T e;
57
+ Try
58
+ {
59
+ foo((custom_type)1);
60
+ }
61
+ Catch(e) {}
62
+ Try
63
+ {
64
+ bar((custom_type)2);
65
+ }
66
+ Catch(e) {}
67
+ Try
68
+ {
69
+ foo((custom_type)3);
70
+ }
71
+ Catch(e) {}
72
+ }
73
+
74
+ :tests:
75
+ :common: |
76
+ #include "CException.h"
77
+ void setUp(void) {}
78
+ void tearDown(void) {}
79
+
80
+ :units:
81
+ - :pass: TRUE
82
+ :should: 'successfully exercise two simple ExpectAndReturn mock calls'
83
+ :code: |
84
+ test()
85
+ {
86
+ foo_ExpectAndReturn((custom_type)1, 10);
87
+ bar_ExpectAndReturn((custom_type)2, 20);
88
+ TEST_ASSERT_EQUAL(30, function_a(1, 2));
89
+ }
90
+
91
+ - :pass: FALSE
92
+ :should: 'fail because bar() is called but is not expected'
93
+ :verify_error: 'called more times than expected'
94
+ :code: |
95
+ test()
96
+ {
97
+ foo_ExpectAndReturn((custom_type)1, 10);
98
+ TEST_ASSERT_EQUAL(30, function_a(1, 2));
99
+ }
100
+
101
+ - :pass: FALSE
102
+ :should: 'fail because bar() is called twice but is expected once'
103
+ :verify_error: 'called less times than expected'
104
+ :code: |
105
+ test()
106
+ {
107
+ foo_ExpectAndReturn((custom_type)1, 10);
108
+ bar_ExpectAndReturn((custom_type)2, 20);
109
+ bar_ExpectAndReturn((custom_type)3, 30);
110
+ TEST_ASSERT_EQUAL(30, function_a(1, 2));
111
+ }
112
+
113
+ - :pass: FALSE
114
+ :should: 'fail because bar and foo called in reverse order'
115
+ :verify_error: 'called earlier than expected'
116
+ :code: |
117
+ test()
118
+ {
119
+ bar_ExpectAndReturn((custom_type)2, 20);
120
+ foo_ExpectAndReturn((custom_type)1, 10);
121
+ TEST_ASSERT_EQUAL(30, function_a(1, 2));
122
+ }
123
+
124
+ - :pass: TRUE
125
+ :should: 'pass because bar and foo called in order with multiple params'
126
+ :code: |
127
+ test()
128
+ {
129
+ foo_ExpectAndReturn((custom_type)1, 10);
130
+ foo_ExpectAndReturn((custom_type)2, 10);
131
+ bar_ExpectAndReturn((custom_type)3, 20);
132
+ bar_ExpectAndReturn((custom_type)4, 10);
133
+ foo_ExpectAndReturn((custom_type)5, 10);
134
+ function_c();
135
+ }
136
+
137
+ - :pass: FALSE
138
+ :should: 'fail because bar and foo called out of order at end'
139
+ :code: |
140
+ test()
141
+ {
142
+ foo_ExpectAndReturn((custom_type)1, 10);
143
+ foo_ExpectAndReturn((custom_type)2, 10);
144
+ bar_ExpectAndReturn((custom_type)3, 20);
145
+ foo_ExpectAndReturn((custom_type)5, 10);
146
+ bar_ExpectAndReturn((custom_type)4, 10);
147
+ function_c();
148
+ }
149
+
150
+ - :pass: FALSE
151
+ :should: 'fail because bar and foo called out of order at start'
152
+ :code: |
153
+ test()
154
+ {
155
+ foo_ExpectAndReturn((custom_type)2, 10);
156
+ foo_ExpectAndReturn((custom_type)1, 10);
157
+ bar_ExpectAndReturn((custom_type)3, 20);
158
+ bar_ExpectAndReturn((custom_type)4, 10);
159
+ foo_ExpectAndReturn((custom_type)5, 10);
160
+ function_c();
161
+ }
162
+
163
+ - :pass: TRUE
164
+ :should: 'pass because we are properly ignoring baz'
165
+ :code: |
166
+ test()
167
+ {
168
+ baz_Ignore();
169
+ foo_ExpectAndReturn((custom_type)2, 10);
170
+ bar_ExpectAndReturn((custom_type)3, 20);
171
+ foo_ExpectAndReturn((custom_type)5, 10);
172
+ bar_ExpectAndReturn((custom_type)6, 10);
173
+ function_b();
174
+ }
175
+
176
+ - :pass: FALSE
177
+ :should: 'fail because bar and foo out of order, even though baz is ignored'
178
+ :code: |
179
+ test()
180
+ {
181
+ baz_Ignore();
182
+ foo_ExpectAndReturn((custom_type)2, 10);
183
+ foo_ExpectAndReturn((custom_type)5, 10);
184
+ bar_ExpectAndReturn((custom_type)3, 20);
185
+ bar_ExpectAndReturn((custom_type)6, 10);
186
+ function_b();
187
+ }
188
+
189
+ - :pass: TRUE
190
+ :should: 'pass when using cexception, as long as the order is right'
191
+ :code: |
192
+ test()
193
+ {
194
+ foo_ExpectAndThrow((custom_type)1, 10);
195
+ bar_ExpectAndReturn((custom_type)2, 20);
196
+ foo_ExpectAndReturn((custom_type)3, 10);
197
+ function_d();
198
+ }
199
+
200
+ - :pass: FALSE
201
+ :should: 'fail when an throw call is made out of order'
202
+ :code: |
203
+ test()
204
+ {
205
+ bar_ExpectAndReturn((custom_type)2, 20);
206
+ foo_ExpectAndThrow((custom_type)1, 10);
207
+ foo_ExpectAndReturn((custom_type)3, 10);
208
+ function_d();
209
+ }
210
+
211
+ - :pass: TRUE
212
+ :should: 'successfully handle back to back ExpectAndReturn setup and mock calls'
213
+ :code: |
214
+ test()
215
+ {
216
+ foo_ExpectAndReturn((custom_type)1, 10);
217
+ bar_ExpectAndReturn((custom_type)2, 20);
218
+ TEST_ASSERT_EQUAL(30, function_a(1, 2));
219
+
220
+ foo_ExpectAndReturn((custom_type)3, 30);
221
+ bar_ExpectAndReturn((custom_type)4, 40);
222
+ TEST_ASSERT_EQUAL(70, function_a(3, 4));
223
+
224
+ foo_ExpectAndReturn((custom_type)1, 50);
225
+ bar_ExpectAndReturn((custom_type)9, 60);
226
+ TEST_ASSERT_EQUAL(110, function_a(1, 9));
227
+ }
228
+
229
+ - :pass: FALSE
230
+ :should: 'successfully catch errors during back to back ExpectAndReturn setup and mock calls'
231
+ :verify_error: 'called earlier than expected'
232
+ :code: |
233
+ test()
234
+ {
235
+ foo_ExpectAndReturn((custom_type)1, 10);
236
+ bar_ExpectAndReturn((custom_type)2, 20);
237
+ TEST_ASSERT_EQUAL(30, function_a(1, 2));
238
+
239
+ foo_ExpectAndReturn((custom_type)3, 30);
240
+ bar_ExpectAndReturn((custom_type)4, 40);
241
+ TEST_ASSERT_EQUAL(70, function_a(3, 4));
242
+
243
+ bar_ExpectAndReturn((custom_type)9, 60);
244
+ foo_ExpectAndReturn((custom_type)1, 50);
245
+ TEST_ASSERT_EQUAL(110, function_a(1, 9));
246
+ }
247
+ ...
@@ -0,0 +1,108 @@
1
+ ---
2
+ :cmock:
3
+ :plugins:
4
+ - # none
5
+ :memcmp_if_unknown: false
6
+
7
+ :systest:
8
+ :types: |
9
+ typedef struct _EXAMPLE_STRUCT_T { int x; int y; } EXAMPLE_STRUCT_T;
10
+
11
+ :mockable: |
12
+ EXAMPLE_STRUCT_T foo(EXAMPLE_STRUCT_T a);
13
+
14
+ :source:
15
+ :header: |
16
+ EXAMPLE_STRUCT_T function_a(EXAMPLE_STRUCT_T a, EXAMPLE_STRUCT_T b);
17
+ EXAMPLE_STRUCT_T function_b(EXAMPLE_STRUCT_T a, EXAMPLE_STRUCT_T b);
18
+
19
+ :code: |
20
+ EXAMPLE_STRUCT_T function_a(EXAMPLE_STRUCT_T a, EXAMPLE_STRUCT_T b)
21
+ {
22
+ EXAMPLE_STRUCT_T retval = foo(a);
23
+ retval.x += b.x;
24
+ retval.y += b.y;
25
+ return retval;
26
+ }
27
+
28
+ EXAMPLE_STRUCT_T function_b(EXAMPLE_STRUCT_T a, EXAMPLE_STRUCT_T b)
29
+ {
30
+ EXAMPLE_STRUCT_T retval = foo(b);
31
+ retval.x *= a.x;
32
+ retval.y *= a.y;
33
+ return retval;
34
+ }
35
+
36
+ :tests:
37
+ :common: |
38
+ #include "expect_and_return_custom_types_unity_helper.h"
39
+ void setUp(void) {}
40
+ void tearDown(void) {}
41
+
42
+ :units:
43
+ - :pass: TRUE
44
+ :should: 'successfully exercise simple ExpectAndReturn mock calls'
45
+ :code: |
46
+ test()
47
+ {
48
+ EXAMPLE_STRUCT_T c = {1,2};
49
+ EXAMPLE_STRUCT_T d = {3,4};
50
+ EXAMPLE_STRUCT_T e = {2,4};
51
+ EXAMPLE_STRUCT_T f = {5,8};
52
+ foo_ExpectAndReturn(c, e);
53
+ TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(f, function_a(c,d));
54
+ }
55
+
56
+ - :pass: FALSE
57
+ :should: 'fail because it is expecting to call foo with c not d'
58
+ :code: |
59
+ test()
60
+ {
61
+ EXAMPLE_STRUCT_T c = {1,2};
62
+ EXAMPLE_STRUCT_T d = {3,4};
63
+ EXAMPLE_STRUCT_T e = {2,4};
64
+ EXAMPLE_STRUCT_T f = {5,8};
65
+ foo_ExpectAndReturn(d, e);
66
+ TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(f, function_a(c,d));
67
+ }
68
+
69
+ - :pass: TRUE
70
+ :should: 'successfully exercise simple ExpectAndReturn mock calls on other function'
71
+ :code: |
72
+ test()
73
+ {
74
+ EXAMPLE_STRUCT_T c = {1,2};
75
+ EXAMPLE_STRUCT_T d = {3,4};
76
+ EXAMPLE_STRUCT_T e = {2,4};
77
+ EXAMPLE_STRUCT_T f = {2,8};
78
+ foo_ExpectAndReturn(d, e);
79
+ TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(f, function_b(c,d));
80
+ }
81
+
82
+ - :pass: FALSE
83
+ :should: 'fail because it is expecting to call foo with d not c'
84
+ :code: |
85
+ test()
86
+ {
87
+ EXAMPLE_STRUCT_T c = {1,2};
88
+ EXAMPLE_STRUCT_T d = {3,4};
89
+ EXAMPLE_STRUCT_T e = {2,4};
90
+ EXAMPLE_STRUCT_T f = {2,8};
91
+ foo_ExpectAndReturn(c, e);
92
+ TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(f, function_b(c,d));
93
+ }
94
+
95
+ :unity_helper:
96
+ :header: |
97
+ void AssertEqualExampleStruct(EXAMPLE_STRUCT_T expected, EXAMPLE_STRUCT_T actual, unsigned short line);
98
+ #define UNITY_TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual, line, message) {AssertEqualExampleStruct(expected, actual, line);}
99
+ #define TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual) UNITY_TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual, __LINE__, NULL);
100
+
101
+ :code: |
102
+ void AssertEqualExampleStruct(EXAMPLE_STRUCT_T expected, EXAMPLE_STRUCT_T actual, unsigned short line)
103
+ {
104
+ UNITY_TEST_ASSERT_EQUAL_INT(expected.x, actual.x, line, "Example Struct Failed For Field x");
105
+ UNITY_TEST_ASSERT_EQUAL_INT(expected.y, actual.y, line, "Example Struct Failed For Field y");
106
+ }
107
+
108
+ ...
@@ -0,0 +1,173 @@
1
+ ---
2
+ :cmock:
3
+ :plugins:
4
+ - # none
5
+ :treat_as:
6
+ MY_STRING: STRING
7
+ MY_INT: INT
8
+ PTR_INT: INT*
9
+ MY_HEX: HEX32
10
+
11
+ :systest:
12
+ :types: |
13
+ typedef char* MY_STRING;
14
+ typedef int MY_INT;
15
+ typedef unsigned int MY_HEX;
16
+ typedef int* PTR_INT;
17
+
18
+ :mockable: |
19
+ MY_INT foo(MY_HEX a);
20
+ MY_INT bar(MY_HEX b);
21
+ MY_STRING foo_char_strings(MY_STRING a, MY_STRING b);
22
+ float float_adder(float a, float b);
23
+ MY_INT* pointer_foo(MY_HEX* a);
24
+ void pointer_bar(PTR_INT a);
25
+
26
+ :source:
27
+ :header: |
28
+ MY_INT function_a(MY_INT a, MY_INT b);
29
+ MY_STRING function_b(MY_STRING a, MY_STRING b);
30
+ float function_c(float a, float b);
31
+ MY_INT function_d(MY_HEX a);
32
+ void function_e(PTR_INT a);
33
+
34
+ :code: |
35
+ MY_INT function_a(MY_INT a, MY_INT b)
36
+ {
37
+ return foo((MY_HEX)a) + bar((MY_HEX)b);
38
+ }
39
+
40
+ MY_STRING function_b(MY_STRING a, MY_STRING b)
41
+ {
42
+ return foo_char_strings(a, b);
43
+ }
44
+
45
+ float function_c(float a, float b)
46
+ {
47
+ return float_adder(b, a);
48
+ }
49
+
50
+ MY_INT function_d(MY_HEX a)
51
+ {
52
+ MY_HEX b = a;
53
+ MY_INT* c = pointer_foo(&b);
54
+ return *c;
55
+ }
56
+
57
+ void function_e(PTR_INT a)
58
+ {
59
+ pointer_bar(a);
60
+ }
61
+
62
+ :tests:
63
+ :common: |
64
+ void setUp(void) {}
65
+ void tearDown(void) {}
66
+
67
+ :units:
68
+ - :pass: TRUE
69
+ :should: 'successfully exercise two simple ExpectAndReturn mock calls'
70
+ :code: |
71
+ test()
72
+ {
73
+ foo_ExpectAndReturn((MY_HEX)1, 10);
74
+ bar_ExpectAndReturn((MY_HEX)2, 20);
75
+ TEST_ASSERT_EQUAL(30, function_a(1, 2));
76
+ }
77
+
78
+ - :pass: FALSE
79
+ :should: 'fail because bar() is expected but not called'
80
+ :code: |
81
+ test()
82
+ {
83
+ foo_ExpectAndReturn((MY_HEX)1, 10);
84
+ TEST_ASSERT_EQUAL(30, function_a(1, 2));
85
+ }
86
+
87
+ - :pass: FALSE
88
+ :should: 'fail because foo_char_strings() is called but is not expected'
89
+ :code: |
90
+ test()
91
+ {
92
+ foo_char_strings_ExpectAndReturn((MY_STRING)"jello", (MY_STRING)"jiggle", (MY_STRING)"boing!");
93
+ function_a(1,2);
94
+ }
95
+
96
+ - :pass: TRUE
97
+ :should: 'handle char strings'
98
+ :code: |
99
+ test()
100
+ {
101
+ foo_char_strings_ExpectAndReturn((MY_STRING)"jello", (MY_STRING)"jiggle", (MY_STRING)"boing!");
102
+ TEST_ASSERT_EQUAL_STRING("boing!", function_b((MY_STRING)"jello", (MY_STRING)"jiggle"));
103
+ }
104
+
105
+ - :pass: TRUE
106
+ :should: 'handle floating point numbers with Unity support: pass'
107
+ :code: |
108
+ test()
109
+ {
110
+ float_adder_ExpectAndReturn(1.2345, 6.7890, 8.0235);
111
+ TEST_ASSERT_EQUAL_FLOAT(8.0235, function_c(6.7890, 1.2345));
112
+ }
113
+
114
+ - :pass: FALSE
115
+ :should: 'handle floating point numbers with Unity support: fail'
116
+ :code: |
117
+ test()
118
+ {
119
+ float_adder_ExpectAndReturn(1.2345, 6.7892, 8.0235);
120
+ TEST_ASSERT_EQUAL_FLOAT(8.0235, function_c(6.7890, 1.2345));
121
+ }
122
+
123
+ - :pass: TRUE
124
+ :should: 'handle pointers to treat_as values just as cleanly as the treat_as itself for passes'
125
+ :code: |
126
+ test()
127
+ {
128
+ MY_HEX TestHex = (MY_HEX)45;
129
+ MY_INT TestInt = (MY_INT)33;
130
+ pointer_foo_ExpectAndReturn(&TestHex, &TestInt);
131
+ TEST_ASSERT_EQUAL_INT(33, function_d(45));
132
+ }
133
+
134
+ - :pass: FALSE
135
+ :should: 'handle pointers to treat_as values just as cleanly as the treat_as itself for failures'
136
+ :verify_error: 'Element 0 Expected 0x0000002D Was 0x0000002B'
137
+ :code: |
138
+ test()
139
+ {
140
+ MY_HEX TestHex = (MY_HEX)45;
141
+ MY_INT TestInt = (MY_INT)33;
142
+ pointer_foo_ExpectAndReturn(&TestHex, &TestInt);
143
+ TEST_ASSERT_EQUAL_INT(33, function_d(43));
144
+ }
145
+
146
+ - :pass: TRUE
147
+ :should: 'handle treat_as values containing pointers for passes'
148
+ :code: |
149
+ test()
150
+ {
151
+ MY_INT ExpInt = (MY_INT)33;
152
+ PTR_INT ExpPtr = (PTR_INT)(&ExpInt);
153
+ MY_INT ActInt = (MY_INT)33;
154
+ PTR_INT ActPtr = (PTR_INT)(&ActInt);
155
+ pointer_bar_Expect(ExpPtr);
156
+ function_e(ActPtr);
157
+ }
158
+
159
+ - :pass: FALSE
160
+ :should: 'handle treat_as values containing pointers for failures'
161
+ :verify_error: 'Element 0 Expected 33 Was 45'
162
+ :code: |
163
+ test()
164
+ {
165
+ MY_INT ExpInt = (MY_INT)33;
166
+ PTR_INT ExpPtr = (PTR_INT)(&ExpInt);
167
+ MY_INT ActInt = (MY_INT)45;
168
+ PTR_INT ActPtr = (PTR_INT)(&ActInt);
169
+ pointer_bar_Expect(ExpPtr);
170
+ function_e(ActPtr);
171
+ }
172
+
173
+ ...