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.
- data/Gemfile.lock +32 -0
- data/README.md +8 -8
- data/assets/example_file.c +5 -0
- data/assets/example_file.h +6 -0
- data/assets/project_as_gem.yml +71 -0
- data/assets/{project.yml → project_with_guts.yml} +2 -0
- data/assets/rakefile_as_gem.rb +1 -0
- data/assets/{rakefile.rb → rakefile_with_guts.rb} +0 -0
- data/assets/test_example_file.c +13 -0
- data/bin/ceedling +55 -31
- data/ceedling-0.13.0.rc4.gem +0 -0
- data/ceedling.gemspec +13 -12
- data/ceedling.sublime-project +8 -0
- data/ceedling.sublime-workspace +365 -0
- data/examples/temp_sensor/project.yml +3 -4
- data/lib/ceedling.rb +13 -4
- data/lib/ceedling/version.rb +3 -3
- data/lib/project_file_loader.rb +1 -1
- data/lib/rakefile.rb +14 -1
- data/lib/target_loader.rb +38 -0
- data/plugins/bullseye/{template.erb → assets/template.erb} +0 -0
- data/plugins/bullseye/{defaults.yml → config/defaults.yml} +0 -0
- data/plugins/bullseye/{bullseye.rb → lib/bullseye.rb} +9 -10
- data/spec/spec_system_helper.rb +192 -0
- data/spec/system/deployment_spec.rb +116 -0
- data/tags +977 -0
- data/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
- data/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
- data/vendor/c_exception/docs/license.txt +30 -0
- data/vendor/c_exception/docs/readme.txt +242 -0
- data/vendor/c_exception/makefile +24 -0
- data/vendor/c_exception/rakefile.rb +41 -0
- data/vendor/c_exception/test/CExceptionConfig.h +44 -0
- data/vendor/c_exception/test/TestException.c +328 -0
- data/vendor/c_exception/test/TestException_Runner.c +57 -0
- data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
- data/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
- data/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
- data/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
- data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +313 -0
- data/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
- data/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +139 -0
- data/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
- data/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
- data/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
- data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/vendor/c_exception/vendor/unity/examples/makefile +40 -0
- data/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
- data/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +256 -0
- data/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
- data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +31 -0
- data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/vendor/c_exception/vendor/unity/makefile +35 -0
- data/vendor/c_exception/vendor/unity/rakefile.rb +59 -0
- data/vendor/c_exception/vendor/unity/rakefile_helper.rb +240 -0
- data/vendor/c_exception/vendor/unity/release/build.info +2 -0
- data/vendor/c_exception/vendor/unity/release/version.info +2 -0
- data/vendor/c_exception/vendor/unity/src/unity.c +979 -0
- data/vendor/c_exception/vendor/unity/src/unity.h +232 -0
- data/vendor/c_exception/vendor/unity/src/unity_internals.h +424 -0
- data/vendor/c_exception/vendor/unity/targets/gcc.yml +43 -0
- data/vendor/c_exception/vendor/unity/targets/gcc_64.yml +44 -0
- data/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
- data/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
- data/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
- data/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
- data/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
- data/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
- data/vendor/c_exception/vendor/unity/test/testunity.c +2024 -0
- data/vendor/cmock/docs/CMock Summary.odt +0 -0
- data/vendor/cmock/docs/CMock Summary.pdf +0 -0
- data/vendor/cmock/docs/CMock_Summary.md +356 -0
- data/vendor/cmock/docs/license.txt +31 -0
- data/vendor/cmock/examples/gcc.yml +43 -0
- data/vendor/cmock/examples/iar_v4.yml +91 -0
- data/vendor/cmock/examples/iar_v5.yml +80 -0
- data/vendor/cmock/examples/rakefile.rb +32 -0
- data/vendor/cmock/examples/rakefile_helper.rb +270 -0
- data/vendor/cmock/examples/src/AT91SAM7X256.h +2556 -0
- data/vendor/cmock/examples/src/AdcConductor.c +42 -0
- data/vendor/cmock/examples/src/AdcConductor.h +11 -0
- data/vendor/cmock/examples/src/AdcHardware.c +27 -0
- data/vendor/cmock/examples/src/AdcHardware.h +9 -0
- data/vendor/cmock/examples/src/AdcHardwareConfigurator.c +18 -0
- data/vendor/cmock/examples/src/AdcHardwareConfigurator.h +10 -0
- data/vendor/cmock/examples/src/AdcModel.c +33 -0
- data/vendor/cmock/examples/src/AdcModel.h +13 -0
- data/vendor/cmock/examples/src/AdcTemperatureSensor.c +51 -0
- data/vendor/cmock/examples/src/AdcTemperatureSensor.h +10 -0
- data/vendor/cmock/examples/src/Executor.c +25 -0
- data/vendor/cmock/examples/src/Executor.h +9 -0
- data/vendor/cmock/examples/src/IntrinsicsWrapper.c +18 -0
- data/vendor/cmock/examples/src/IntrinsicsWrapper.h +7 -0
- data/vendor/cmock/examples/src/Main.c +46 -0
- data/vendor/cmock/examples/src/Main.h +7 -0
- data/vendor/cmock/examples/src/Model.c +10 -0
- data/vendor/cmock/examples/src/Model.h +8 -0
- data/vendor/cmock/examples/src/ModelConfig.h +7 -0
- data/vendor/cmock/examples/src/TaskScheduler.c +72 -0
- data/vendor/cmock/examples/src/TaskScheduler.h +11 -0
- data/vendor/cmock/examples/src/TemperatureCalculator.c +27 -0
- data/vendor/cmock/examples/src/TemperatureCalculator.h +6 -0
- data/vendor/cmock/examples/src/TemperatureFilter.c +39 -0
- data/vendor/cmock/examples/src/TemperatureFilter.h +10 -0
- data/vendor/cmock/examples/src/TimerConductor.c +15 -0
- data/vendor/cmock/examples/src/TimerConductor.h +9 -0
- data/vendor/cmock/examples/src/TimerConfigurator.c +51 -0
- data/vendor/cmock/examples/src/TimerConfigurator.h +15 -0
- data/vendor/cmock/examples/src/TimerHardware.c +15 -0
- data/vendor/cmock/examples/src/TimerHardware.h +8 -0
- data/vendor/cmock/examples/src/TimerInterruptConfigurator.c +55 -0
- data/vendor/cmock/examples/src/TimerInterruptConfigurator.h +13 -0
- data/vendor/cmock/examples/src/TimerInterruptHandler.c +25 -0
- data/vendor/cmock/examples/src/TimerInterruptHandler.h +10 -0
- data/vendor/cmock/examples/src/TimerModel.c +9 -0
- data/vendor/cmock/examples/src/TimerModel.h +8 -0
- data/vendor/cmock/examples/src/Types.h +103 -0
- data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +18 -0
- data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.h +6 -0
- data/vendor/cmock/examples/src/UsartConductor.c +21 -0
- data/vendor/cmock/examples/src/UsartConductor.h +7 -0
- data/vendor/cmock/examples/src/UsartConfigurator.c +39 -0
- data/vendor/cmock/examples/src/UsartConfigurator.h +13 -0
- data/vendor/cmock/examples/src/UsartHardware.c +22 -0
- data/vendor/cmock/examples/src/UsartHardware.h +9 -0
- data/vendor/cmock/examples/src/UsartModel.c +34 -0
- data/vendor/cmock/examples/src/UsartModel.h +10 -0
- data/vendor/cmock/examples/src/UsartPutChar.c +16 -0
- data/vendor/cmock/examples/src/UsartPutChar.h +8 -0
- data/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +7 -0
- data/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +8 -0
- data/vendor/cmock/examples/test/TestAdcConductor.c +121 -0
- data/vendor/cmock/examples/test/TestAdcHardware.c +44 -0
- data/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c +43 -0
- data/vendor/cmock/examples/test/TestAdcModel.c +33 -0
- data/vendor/cmock/examples/test/TestAdcTemperatureSensor.c +47 -0
- data/vendor/cmock/examples/test/TestExecutor.c +36 -0
- data/vendor/cmock/examples/test/TestMain.c +24 -0
- data/vendor/cmock/examples/test/TestModel.c +20 -0
- data/vendor/cmock/examples/test/TestTaskScheduler.c +104 -0
- data/vendor/cmock/examples/test/TestTemperatureCalculator.c +33 -0
- data/vendor/cmock/examples/test/TestTemperatureFilter.c +69 -0
- data/vendor/cmock/examples/test/TestTimerConductor.c +32 -0
- data/vendor/cmock/examples/test/TestTimerConfigurator.c +112 -0
- data/vendor/cmock/examples/test/TestTimerHardware.c +26 -0
- data/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c +78 -0
- data/vendor/cmock/examples/test/TestTimerInterruptHandler.c +66 -0
- data/vendor/cmock/examples/test/TestTimerModel.c +18 -0
- data/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +21 -0
- data/vendor/cmock/examples/test/TestUsartConductor.c +40 -0
- data/vendor/cmock/examples/test/TestUsartConfigurator.c +77 -0
- data/vendor/cmock/examples/test/TestUsartHardware.c +37 -0
- data/vendor/cmock/examples/test/TestUsartModel.c +40 -0
- data/vendor/cmock/examples/test/TestUsartPutChar.c +43 -0
- data/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c +22 -0
- data/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +71 -0
- data/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +94 -0
- data/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +67 -0
- data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -0
- data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -0
- data/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -0
- data/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -0
- data/vendor/cmock/iar/iar_v4/cmock_demo.ewd +1696 -0
- data/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -0
- data/vendor/cmock/iar/iar_v4/cmock_demo.eww +10 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -0
- data/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -0
- data/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -0
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -0
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +86 -0
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +42 -0
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +76 -0
- data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +266 -0
- data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -0
- data/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +71 -0
- data/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +94 -0
- data/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +67 -0
- data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -0
- data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -0
- data/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -0
- data/vendor/cmock/iar/iar_v5/cmock_demo.ewd +1906 -0
- data/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -0
- data/vendor/cmock/iar/iar_v5/cmock_demo.eww +26 -0
- data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -0
- data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -0
- data/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -0
- data/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +5 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +18 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +74 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +85 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +44 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +73 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -0
- data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -0
- data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -0
- data/vendor/cmock/rakefile.rb +111 -0
- data/vendor/cmock/rakefile_helper.rb +381 -0
- data/vendor/cmock/targets/gcc.yml +53 -0
- data/vendor/cmock/targets/iar_arm_v4.yml +108 -0
- data/vendor/cmock/targets/iar_arm_v5.yml +93 -0
- data/vendor/cmock/test/c/TestCMockC.c +280 -0
- data/vendor/cmock/test/c/TestCMockC.yml +12 -0
- data/vendor/cmock/test/c/TestCMockCDynamic.c +186 -0
- data/vendor/cmock/test/c/TestCMockCDynamic.yml +12 -0
- data/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +35 -0
- data/vendor/cmock/test/c/TestCMockC_Runner.c +37 -0
- data/vendor/cmock/test/spec/cmock_file_writer_spec.rb +25 -0
- data/vendor/cmock/test/spec/spec_helper.rb +12 -0
- data/vendor/cmock/test/system/systest_generator.rb +178 -0
- data/vendor/cmock/test/system/test_compilation/callingconv.h +11 -0
- data/vendor/cmock/test/system/test_compilation/config.yml +9 -0
- data/vendor/cmock/test/system/test_compilation/const.h +15 -0
- data/vendor/cmock/test/system/test_compilation/osek.h +275 -0
- data/vendor/cmock/test/system/test_compilation/parsing.h +47 -0
- data/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +341 -0
- data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +382 -0
- data/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +382 -0
- data/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +123 -0
- data/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +87 -0
- data/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +247 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +108 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +173 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +170 -0
- data/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +208 -0
- data/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +82 -0
- data/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +153 -0
- data/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +52 -0
- data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +91 -0
- data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +59 -0
- data/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +222 -0
- data/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +277 -0
- data/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +221 -0
- data/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +77 -0
- data/vendor/cmock/test/system/test_interactions/unity_ignores.yml +139 -0
- data/vendor/cmock/test/test_helper.rb +44 -0
- data/vendor/cmock/test/unit/cmock_config_test.rb +121 -0
- data/vendor/cmock/test/unit/cmock_config_test.yml +5 -0
- data/vendor/cmock/test/unit/cmock_file_writer_test.rb +30 -0
- data/vendor/cmock/test/unit/cmock_generator_main_test.rb +413 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +114 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +190 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +94 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +206 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +168 -0
- data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +291 -0
- data/vendor/cmock/test/unit/cmock_header_parser_test.rb +1247 -0
- data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +85 -0
- data/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -0
- data/vendor/cmock/vendor/behaviors/Manifest.txt +9 -0
- data/vendor/cmock/vendor/behaviors/Rakefile +19 -0
- data/vendor/cmock/vendor/behaviors/lib/behaviors.rb +76 -0
- data/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
- data/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
- data/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +50 -0
- data/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +19 -0
- data/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
- data/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
- data/vendor/cmock/vendor/hardmock/CHANGES +78 -0
- data/vendor/cmock/vendor/hardmock/LICENSE +7 -0
- data/vendor/cmock/vendor/hardmock/README +70 -0
- data/vendor/cmock/vendor/hardmock/Rakefile +8 -0
- data/vendor/cmock/vendor/hardmock/config/environment.rb +12 -0
- data/vendor/cmock/vendor/hardmock/lib/assert_error.rb +23 -0
- data/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +14 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock.rb +86 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +22 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +26 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +180 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +9 -0
- data/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
- data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
- data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
- data/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +22 -0
- data/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
- data/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
- data/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
- data/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
- data/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
- data/vendor/cmock/vendor/hardmock/test/test_helper.rb +43 -0
- data/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
- data/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +372 -0
- data/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +57 -0
- data/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
- data/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
- data/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +279 -0
- data/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
- data/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +62 -0
- data/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
- data/vendor/unity/auto/generate_config.yml +36 -0
- data/vendor/unity/auto/unity_test_summary.rb +2 -2
- data/vendor/unity/docs/Unity Summary.odt +0 -0
- data/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/vendor/unity/docs/Unity Summary.txt +216 -0
- data/vendor/unity/docs/license.txt +31 -0
- data/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/vendor/unity/examples/makefile +40 -0
- data/vendor/unity/examples/rakefile.rb +32 -0
- data/vendor/unity/examples/rakefile_helper.rb +256 -0
- data/vendor/unity/examples/readme.txt +18 -0
- data/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/vendor/unity/examples/test/TestProductionCode2.c +31 -0
- data/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
- data/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
- data/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/vendor/unity/extras/fixture/readme.txt +9 -0
- data/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
- data/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
- data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
- data/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
- data/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/vendor/unity/makefile +35 -0
- data/vendor/unity/rakefile.rb +59 -0
- data/vendor/unity/rakefile_helper.rb +240 -0
- data/vendor/unity/release/version.info +1 -1
- data/vendor/unity/src/unity.c +1 -1
- data/vendor/unity/src/unity_internals.h +5 -5
- data/vendor/unity/targets/gcc_32.yml +44 -0
- data/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/vendor/unity/targets/iar_msp430.yml +94 -0
- data/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
- data/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/vendor/unity/test/test_generate_test_runner.rb +94 -0
- data/vendor/unity/test/testdata/mocksample.c +51 -0
- data/vendor/unity/test/testdata/sample.yml +9 -0
- data/vendor/unity/test/testdata/testsample.c +51 -0
- data/vendor/unity/test/testparameterized.c +101 -0
- data/vendor/unity/test/testunity.c +2559 -0
- metadata +464 -53
- data/.gitignore +0 -6
- data/.gitmodules +0 -9
- data/.rspec +0 -1
@@ -0,0 +1,47 @@
|
|
1
|
+
/* ==========================================
|
2
|
+
CMock Project - Automatic Mock Generation for C
|
3
|
+
Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
4
|
+
[Released under MIT License. Please refer to license.txt for details]
|
5
|
+
========================================== */
|
6
|
+
|
7
|
+
typedef unsigned short U16;
|
8
|
+
typedef signed int int32_t;
|
9
|
+
|
10
|
+
typedef struct _POINT_T
|
11
|
+
{
|
12
|
+
int x;
|
13
|
+
int y;
|
14
|
+
} POINT_T;
|
15
|
+
|
16
|
+
// typedef edge case;
|
17
|
+
// not ANSI C but it has been done and will break cmock if not handled
|
18
|
+
typedef void VOID_TYPE_CRAZINESS;
|
19
|
+
|
20
|
+
/* fun parsing & mock generation cases */
|
21
|
+
|
22
|
+
void var_args1(int a, ...);
|
23
|
+
void var_args2(int a, int b, ...);
|
24
|
+
|
25
|
+
VOID_TYPE_CRAZINESS void_type_craziness1(int, float, double, char, short, long, long int, long long, void*);
|
26
|
+
int void_type_craziness2( VOID_TYPE_CRAZINESS );
|
27
|
+
|
28
|
+
void crazy_whitespace ( int lint, double shot , short stack ) ;
|
29
|
+
|
30
|
+
char
|
31
|
+
crazy_multiline
|
32
|
+
(
|
33
|
+
int a,
|
34
|
+
unsigned int b);
|
35
|
+
|
36
|
+
U16 *ptr_return1(int a);
|
37
|
+
U16* ptr_return2(int a);
|
38
|
+
U16 * ptr_return3(int a);
|
39
|
+
|
40
|
+
unsigned int** ptr_ptr_return1(unsigned int** a);
|
41
|
+
unsigned int* *ptr_ptr_return2(unsigned int* *a);
|
42
|
+
unsigned int **ptr_ptr_return3(unsigned int **a);
|
43
|
+
unsigned int ** ptr_ptr_return4(unsigned int ** a);
|
44
|
+
|
45
|
+
extern unsigned long int incredible_descriptors(register const unsigned short a);
|
46
|
+
|
47
|
+
int32_t example_c99_type(int32_t param1);
|
@@ -0,0 +1,341 @@
|
|
1
|
+
---
|
2
|
+
#this test is different than all_plugins_coexist primarily because of these options
|
3
|
+
:cmock:
|
4
|
+
:enforce_strict_ordering: 1
|
5
|
+
:treat_externs: :include
|
6
|
+
:ignore: :args_only
|
7
|
+
:plugins:
|
8
|
+
- :array
|
9
|
+
- :cexception
|
10
|
+
- :ignore
|
11
|
+
- :callback
|
12
|
+
|
13
|
+
:systest:
|
14
|
+
:types: |
|
15
|
+
typedef struct _POINT_T {
|
16
|
+
int x;
|
17
|
+
int y;
|
18
|
+
} POINT_T;
|
19
|
+
|
20
|
+
:mockable: |
|
21
|
+
#include "CException.h"
|
22
|
+
void foo(POINT_T* a);
|
23
|
+
POINT_T* bar(void);
|
24
|
+
void fooa(POINT_T a[]);
|
25
|
+
void foos(const char * a);
|
26
|
+
extern const char * bars(void);
|
27
|
+
void no_pointers(int a, char* b);
|
28
|
+
int mixed(int a, int* b, int c);
|
29
|
+
void no_args(void);
|
30
|
+
|
31
|
+
:source:
|
32
|
+
:header: |
|
33
|
+
#include "CException.h"
|
34
|
+
void function_a(void);
|
35
|
+
void function_b(void);
|
36
|
+
void function_c(void);
|
37
|
+
int function_d(void);
|
38
|
+
void function_e(void);
|
39
|
+
|
40
|
+
:code: |
|
41
|
+
void function_a(void)
|
42
|
+
{
|
43
|
+
foo(bar());
|
44
|
+
}
|
45
|
+
|
46
|
+
void function_b(void) {
|
47
|
+
fooa(bar());
|
48
|
+
}
|
49
|
+
|
50
|
+
void function_c(void) {
|
51
|
+
CEXCEPTION_T e;
|
52
|
+
Try {
|
53
|
+
foos(bars());
|
54
|
+
} Catch(e) { foos("err"); }
|
55
|
+
}
|
56
|
+
|
57
|
+
int function_d(void) {
|
58
|
+
int test_list[] = { 1, 2, 3, 4, 5 };
|
59
|
+
no_pointers(1, "silly");
|
60
|
+
return mixed(6, test_list, 7);
|
61
|
+
}
|
62
|
+
|
63
|
+
void function_e(void) {
|
64
|
+
foos("Hello");
|
65
|
+
foos("Tuna");
|
66
|
+
foos("Oranges");
|
67
|
+
}
|
68
|
+
|
69
|
+
:tests:
|
70
|
+
:common: |
|
71
|
+
#include "CException.h"
|
72
|
+
void setUp(void) {}
|
73
|
+
void tearDown(void) {}
|
74
|
+
|
75
|
+
:units:
|
76
|
+
- :pass: TRUE
|
77
|
+
:should: 'handle the situation where we pass nulls to pointers'
|
78
|
+
:code: |
|
79
|
+
test()
|
80
|
+
{
|
81
|
+
bar_ExpectAndReturn(NULL);
|
82
|
+
foo_Expect(NULL);
|
83
|
+
|
84
|
+
function_a();
|
85
|
+
}
|
86
|
+
|
87
|
+
- :pass: FALSE
|
88
|
+
:should: 'handle the situation where we expected nulls to pointers but did not get that'
|
89
|
+
:code: |
|
90
|
+
test()
|
91
|
+
{
|
92
|
+
POINT_T pt = {1, 2};
|
93
|
+
bar_ExpectAndReturn(&pt);
|
94
|
+
foo_Expect(NULL);
|
95
|
+
|
96
|
+
function_a();
|
97
|
+
}
|
98
|
+
|
99
|
+
- :pass: FALSE
|
100
|
+
:should: 'handle the situation where we did not expect nulls to pointers but got null'
|
101
|
+
:code: |
|
102
|
+
test()
|
103
|
+
{
|
104
|
+
POINT_T ex = {1, 2};
|
105
|
+
bar_ExpectAndReturn(NULL);
|
106
|
+
foo_Expect(&ex);
|
107
|
+
|
108
|
+
function_a();
|
109
|
+
}
|
110
|
+
|
111
|
+
- :pass: FALSE
|
112
|
+
:should: 'handle the situation where we pass single object with expect and it is wrong'
|
113
|
+
:code: |
|
114
|
+
test()
|
115
|
+
{
|
116
|
+
POINT_T pt = {1, 2};
|
117
|
+
POINT_T ex = {1, 3};
|
118
|
+
bar_ExpectAndReturn(&pt);
|
119
|
+
foo_Expect(&ex);
|
120
|
+
|
121
|
+
function_a();
|
122
|
+
}
|
123
|
+
|
124
|
+
- :pass: TRUE
|
125
|
+
:should: 'handle the situation where we pass single object with expect and use array handler'
|
126
|
+
:code: |
|
127
|
+
test()
|
128
|
+
{
|
129
|
+
POINT_T pt = {1, 2};
|
130
|
+
POINT_T ex = {1, 2};
|
131
|
+
bar_ExpectAndReturn(&pt);
|
132
|
+
foo_ExpectWithArray(&ex, 1);
|
133
|
+
|
134
|
+
function_a();
|
135
|
+
}
|
136
|
+
|
137
|
+
- :pass: FALSE
|
138
|
+
:should: 'handle the situation where we pass single object with expect and use array handler and it is wrong'
|
139
|
+
:code: |
|
140
|
+
test()
|
141
|
+
{
|
142
|
+
POINT_T pt = {1, 2};
|
143
|
+
POINT_T ex = {1, 3};
|
144
|
+
bar_ExpectAndReturn(&pt);
|
145
|
+
foo_ExpectWithArray(&ex, 1);
|
146
|
+
|
147
|
+
function_a();
|
148
|
+
}
|
149
|
+
|
150
|
+
- :pass: TRUE
|
151
|
+
:should: 'handle the situation where we pass multiple objects with expect and use array handler'
|
152
|
+
:code: |
|
153
|
+
test()
|
154
|
+
{
|
155
|
+
POINT_T pt[] = {{1, 2}, {3, 4}, {5, 6}};
|
156
|
+
POINT_T ex[] = {{1, 2}, {3, 4}, {5, 6}};
|
157
|
+
bar_ExpectAndReturn(pt);
|
158
|
+
foo_ExpectWithArray(ex, 3);
|
159
|
+
|
160
|
+
function_a();
|
161
|
+
}
|
162
|
+
|
163
|
+
- :pass: FALSE
|
164
|
+
:should: 'handle the situation where we pass multiple objects with expect and use array handler and it is wrong at end'
|
165
|
+
:code: |
|
166
|
+
test()
|
167
|
+
{
|
168
|
+
POINT_T pt[] = {{1, 2}, {3, 4}, {5, 6}};
|
169
|
+
POINT_T ex[] = {{1, 2}, {3, 4}, {5, 9}};
|
170
|
+
bar_ExpectAndReturn(pt);
|
171
|
+
foo_ExpectWithArray(ex, 3);
|
172
|
+
|
173
|
+
function_a();
|
174
|
+
}
|
175
|
+
|
176
|
+
- :pass: TRUE
|
177
|
+
:should: 'handle the situation where we pass single array element with expect'
|
178
|
+
:code: |
|
179
|
+
test()
|
180
|
+
{
|
181
|
+
POINT_T pt = {1, 2};
|
182
|
+
POINT_T ex = {1, 2};
|
183
|
+
bar_ExpectAndReturn(&pt);
|
184
|
+
fooa_Expect(&ex);
|
185
|
+
|
186
|
+
function_b();
|
187
|
+
}
|
188
|
+
|
189
|
+
- :pass: TRUE
|
190
|
+
:should: 'handle standard c string as null terminated and not do crappy memory compares of a byte, passing'
|
191
|
+
:code: |
|
192
|
+
test()
|
193
|
+
{
|
194
|
+
bars_ExpectAndReturn("This is a\0 silly string");
|
195
|
+
foos_Expect("This is a\0 wacky string");
|
196
|
+
|
197
|
+
function_c();
|
198
|
+
}
|
199
|
+
|
200
|
+
- :pass: FALSE
|
201
|
+
:should: 'handle standard c string as null terminated and not do crappy memory compares of a byte, finding failures'
|
202
|
+
:code: |
|
203
|
+
test()
|
204
|
+
{
|
205
|
+
bars_ExpectAndReturn("This is a silly string");
|
206
|
+
foos_Expect("This is a wacky string");
|
207
|
+
|
208
|
+
function_c();
|
209
|
+
}
|
210
|
+
|
211
|
+
- :pass: TRUE
|
212
|
+
:should: 'handle creating array expects when we have mixed arguments for single object'
|
213
|
+
:code: |
|
214
|
+
test()
|
215
|
+
{
|
216
|
+
int expect_list[] = { 1, 9 };
|
217
|
+
no_pointers_Expect(1, "silly");
|
218
|
+
mixed_ExpectAndReturn(6, expect_list, 7, 13);
|
219
|
+
|
220
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
221
|
+
}
|
222
|
+
|
223
|
+
- :pass: FALSE
|
224
|
+
:should: 'handle creating array expects when we have mixed arguments and handle failures for single object'
|
225
|
+
:code: |
|
226
|
+
test()
|
227
|
+
{
|
228
|
+
int expect_list[] = { 9, 1 };
|
229
|
+
no_pointers_Expect(1, "silly");
|
230
|
+
mixed_ExpectAndReturn(6, expect_list, 7, 13);
|
231
|
+
|
232
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
233
|
+
}
|
234
|
+
|
235
|
+
- :pass: TRUE
|
236
|
+
:should: 'handle creating array expects when we have mixed arguments for multiple objects'
|
237
|
+
:code: |
|
238
|
+
test()
|
239
|
+
{
|
240
|
+
int expect_list[] = { 1, 2, 3, 4, 6 };
|
241
|
+
no_pointers_Expect(1, "silly");
|
242
|
+
mixed_ExpectWithArrayAndReturn(6, expect_list, 4, 7, 13);
|
243
|
+
|
244
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
245
|
+
}
|
246
|
+
|
247
|
+
- :pass: FALSE
|
248
|
+
:should: 'handle creating array expects when we have mixed arguments and handle failures for multiple objects'
|
249
|
+
:code: |
|
250
|
+
test()
|
251
|
+
{
|
252
|
+
int expect_list[] = { 1, 2, 3, 4, 6 };
|
253
|
+
no_pointers_Expect(1, "silly");
|
254
|
+
mixed_ExpectWithArrayAndReturn(6, expect_list, 5, 7, 13);
|
255
|
+
|
256
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
257
|
+
}
|
258
|
+
|
259
|
+
- :pass: TRUE
|
260
|
+
:should: 'handle an exception being caught'
|
261
|
+
:code: |
|
262
|
+
test()
|
263
|
+
{
|
264
|
+
bars_ExpectAndReturn("This is a\0 silly string");
|
265
|
+
foos_ExpectAndThrow("This is a\0 wacky string", 55);
|
266
|
+
foos_Expect("err");
|
267
|
+
|
268
|
+
function_c();
|
269
|
+
}
|
270
|
+
|
271
|
+
- :pass: FALSE
|
272
|
+
:should: 'handle an exception being caught but still catch following errors'
|
273
|
+
:code: |
|
274
|
+
test()
|
275
|
+
{
|
276
|
+
bars_ExpectAndReturn("This is a\0 silly string");
|
277
|
+
foos_ExpectAndThrow("This is a\0 wacky string", 55);
|
278
|
+
foos_Expect("wrong error");
|
279
|
+
|
280
|
+
function_c();
|
281
|
+
}
|
282
|
+
|
283
|
+
- :pass: FALSE
|
284
|
+
:should: 'fail strict ordering problems even though we would otherwise have passed'
|
285
|
+
:code: |
|
286
|
+
test()
|
287
|
+
{
|
288
|
+
int expect_list[] = { 1, 2, 3, 4, 6 };
|
289
|
+
mixed_ExpectWithArrayAndReturn(6, expect_list, 4, 7, 13);
|
290
|
+
no_pointers_Expect(1, "silly");
|
291
|
+
|
292
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
293
|
+
}
|
294
|
+
|
295
|
+
- :pass: TRUE
|
296
|
+
:should: 'properly ignore first function but the other will work properly'
|
297
|
+
:code: |
|
298
|
+
test()
|
299
|
+
{
|
300
|
+
int expect_list[] = { 1, 2, 3, 4, 6 };
|
301
|
+
no_pointers_Ignore();
|
302
|
+
mixed_ExpectWithArrayAndReturn(6, expect_list, 4, 7, 13);
|
303
|
+
|
304
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
305
|
+
}
|
306
|
+
|
307
|
+
- :pass: TRUE
|
308
|
+
:should: 'properly ignore last function but the other will work properly'
|
309
|
+
:code: |
|
310
|
+
test()
|
311
|
+
{
|
312
|
+
no_pointers_Expect(1, "silly");
|
313
|
+
mixed_IgnoreAndReturn(13);
|
314
|
+
|
315
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
316
|
+
}
|
317
|
+
|
318
|
+
- :pass: TRUE
|
319
|
+
:should: 'be ok if we ignore a call each because we are counting calls'
|
320
|
+
:code: |
|
321
|
+
test()
|
322
|
+
{
|
323
|
+
foos_Ignore();
|
324
|
+
foos_Ignore();
|
325
|
+
foos_Ignore();
|
326
|
+
|
327
|
+
function_e();
|
328
|
+
}
|
329
|
+
|
330
|
+
- :pass: FALSE
|
331
|
+
:should: 'fail if we do not ignore a call once because we are counting calls'
|
332
|
+
:code: |
|
333
|
+
test()
|
334
|
+
{
|
335
|
+
foos_Ignore();
|
336
|
+
foos_Ignore();
|
337
|
+
|
338
|
+
function_e();
|
339
|
+
}
|
340
|
+
|
341
|
+
...
|
@@ -0,0 +1,382 @@
|
|
1
|
+
---
|
2
|
+
:cmock:
|
3
|
+
:enforce_strict_ordering: 1
|
4
|
+
:plugins:
|
5
|
+
- :array
|
6
|
+
- :cexception
|
7
|
+
- :ignore
|
8
|
+
- :callback
|
9
|
+
:callback_after_arg_check: true
|
10
|
+
:callback_include_count: false
|
11
|
+
:treat_externs: :include
|
12
|
+
|
13
|
+
:systest:
|
14
|
+
:types: |
|
15
|
+
typedef struct _POINT_T {
|
16
|
+
int x;
|
17
|
+
int y;
|
18
|
+
} POINT_T;
|
19
|
+
|
20
|
+
:mockable: |
|
21
|
+
#include "CException.h"
|
22
|
+
extern void foo(POINT_T* a);
|
23
|
+
POINT_T* bar(void);
|
24
|
+
void fooa(POINT_T a[]);
|
25
|
+
void foos(const char * a);
|
26
|
+
const char * bars(void);
|
27
|
+
void no_pointers(int a, char* b);
|
28
|
+
int mixed(int a, int* b, int c);
|
29
|
+
void no_args(void);
|
30
|
+
|
31
|
+
:source:
|
32
|
+
:header: |
|
33
|
+
#include "CException.h"
|
34
|
+
void function_a(void);
|
35
|
+
void function_b(void);
|
36
|
+
void function_c(void);
|
37
|
+
int function_d(void);
|
38
|
+
void function_e(void);
|
39
|
+
|
40
|
+
:code: |
|
41
|
+
void function_a(void)
|
42
|
+
{
|
43
|
+
foo(bar());
|
44
|
+
}
|
45
|
+
|
46
|
+
void function_b(void) {
|
47
|
+
fooa(bar());
|
48
|
+
}
|
49
|
+
|
50
|
+
void function_c(void) {
|
51
|
+
CEXCEPTION_T e;
|
52
|
+
Try {
|
53
|
+
foos(bars());
|
54
|
+
} Catch(e) { foos("err"); }
|
55
|
+
}
|
56
|
+
|
57
|
+
int function_d(void) {
|
58
|
+
int test_list[] = { 1, 2, 3, 4, 5 };
|
59
|
+
no_pointers(1, "silly");
|
60
|
+
return mixed(6, test_list, 7);
|
61
|
+
}
|
62
|
+
|
63
|
+
void function_e(void) {
|
64
|
+
foos("Hello");
|
65
|
+
foos("Tuna");
|
66
|
+
foos("Oranges");
|
67
|
+
}
|
68
|
+
|
69
|
+
:tests:
|
70
|
+
:common: |
|
71
|
+
#include "CException.h"
|
72
|
+
void setUp(void) {}
|
73
|
+
void tearDown(void) {}
|
74
|
+
void my_foo_callback(POINT_T* a) { TEST_ASSERT_EQUAL_INT(2, a->x); }
|
75
|
+
|
76
|
+
:units:
|
77
|
+
- :pass: TRUE
|
78
|
+
:should: 'handle the situation where we pass nulls to pointers'
|
79
|
+
:code: |
|
80
|
+
test()
|
81
|
+
{
|
82
|
+
bar_ExpectAndReturn(NULL);
|
83
|
+
foo_Expect(NULL);
|
84
|
+
|
85
|
+
function_a();
|
86
|
+
}
|
87
|
+
|
88
|
+
- :pass: FALSE
|
89
|
+
:should: 'handle the situation where we expected nulls to pointers but did not get that'
|
90
|
+
:code: |
|
91
|
+
test()
|
92
|
+
{
|
93
|
+
POINT_T pt = {1, 2};
|
94
|
+
bar_ExpectAndReturn(&pt);
|
95
|
+
foo_Expect(NULL);
|
96
|
+
|
97
|
+
function_a();
|
98
|
+
}
|
99
|
+
|
100
|
+
- :pass: FALSE
|
101
|
+
:should: 'handle the situation where we did not expect nulls to pointers but got null'
|
102
|
+
:code: |
|
103
|
+
test()
|
104
|
+
{
|
105
|
+
POINT_T ex = {1, 2};
|
106
|
+
bar_ExpectAndReturn(NULL);
|
107
|
+
foo_Expect(&ex);
|
108
|
+
|
109
|
+
function_a();
|
110
|
+
}
|
111
|
+
|
112
|
+
- :pass: FALSE
|
113
|
+
:should: 'handle the situation where we pass single object with expect and it is wrong'
|
114
|
+
:code: |
|
115
|
+
test()
|
116
|
+
{
|
117
|
+
POINT_T pt = {1, 2};
|
118
|
+
POINT_T ex = {1, 3};
|
119
|
+
bar_ExpectAndReturn(&pt);
|
120
|
+
foo_Expect(&ex);
|
121
|
+
|
122
|
+
function_a();
|
123
|
+
}
|
124
|
+
|
125
|
+
- :pass: TRUE
|
126
|
+
:should: 'handle the situation where we pass single object with expect and use array handler'
|
127
|
+
:code: |
|
128
|
+
test()
|
129
|
+
{
|
130
|
+
POINT_T pt = {1, 2};
|
131
|
+
POINT_T ex = {1, 2};
|
132
|
+
bar_ExpectAndReturn(&pt);
|
133
|
+
foo_ExpectWithArray(&ex, 1);
|
134
|
+
|
135
|
+
function_a();
|
136
|
+
}
|
137
|
+
|
138
|
+
- :pass: FALSE
|
139
|
+
:should: 'handle the situation where we pass single object with expect and use array handler and it is wrong'
|
140
|
+
:code: |
|
141
|
+
test()
|
142
|
+
{
|
143
|
+
POINT_T pt = {1, 2};
|
144
|
+
POINT_T ex = {1, 3};
|
145
|
+
bar_ExpectAndReturn(&pt);
|
146
|
+
foo_ExpectWithArray(&ex, 1);
|
147
|
+
|
148
|
+
function_a();
|
149
|
+
}
|
150
|
+
|
151
|
+
- :pass: TRUE
|
152
|
+
:should: 'handle the situation where we pass multiple objects with expect and use array handler'
|
153
|
+
:code: |
|
154
|
+
test()
|
155
|
+
{
|
156
|
+
POINT_T pt[] = {{1, 2}, {3, 4}, {5, 6}};
|
157
|
+
POINT_T ex[] = {{1, 2}, {3, 4}, {5, 6}};
|
158
|
+
bar_ExpectAndReturn(pt);
|
159
|
+
foo_ExpectWithArray(ex, 3);
|
160
|
+
|
161
|
+
function_a();
|
162
|
+
}
|
163
|
+
|
164
|
+
- :pass: FALSE
|
165
|
+
:should: 'handle the situation where we pass multiple objects with expect and use array handler and it is wrong at end'
|
166
|
+
:code: |
|
167
|
+
test()
|
168
|
+
{
|
169
|
+
POINT_T pt[] = {{1, 2}, {3, 4}, {5, 6}};
|
170
|
+
POINT_T ex[] = {{1, 2}, {3, 4}, {5, 9}};
|
171
|
+
bar_ExpectAndReturn(pt);
|
172
|
+
foo_ExpectWithArray(ex, 3);
|
173
|
+
|
174
|
+
function_a();
|
175
|
+
}
|
176
|
+
|
177
|
+
- :pass: TRUE
|
178
|
+
:should: 'handle the situation where we pass single array element with expect'
|
179
|
+
:code: |
|
180
|
+
test()
|
181
|
+
{
|
182
|
+
POINT_T pt = {1, 2};
|
183
|
+
POINT_T ex = {1, 2};
|
184
|
+
bar_ExpectAndReturn(&pt);
|
185
|
+
fooa_Expect(&ex);
|
186
|
+
|
187
|
+
function_b();
|
188
|
+
}
|
189
|
+
|
190
|
+
- :pass: TRUE
|
191
|
+
:should: 'handle standard c string as null terminated and not do crappy memory compares of a byte, passing'
|
192
|
+
:code: |
|
193
|
+
test()
|
194
|
+
{
|
195
|
+
bars_ExpectAndReturn("This is a\0 silly string");
|
196
|
+
foos_Expect("This is a\0 wacky string");
|
197
|
+
|
198
|
+
function_c();
|
199
|
+
}
|
200
|
+
|
201
|
+
- :pass: FALSE
|
202
|
+
:should: 'handle standard c string as null terminated and not do crappy memory compares of a byte, finding failures'
|
203
|
+
:code: |
|
204
|
+
test()
|
205
|
+
{
|
206
|
+
bars_ExpectAndReturn("This is a silly string");
|
207
|
+
foos_Expect("This is a wacky string");
|
208
|
+
|
209
|
+
function_c();
|
210
|
+
}
|
211
|
+
|
212
|
+
- :pass: TRUE
|
213
|
+
:should: 'handle creating array expects when we have mixed arguments for single object'
|
214
|
+
:code: |
|
215
|
+
test()
|
216
|
+
{
|
217
|
+
int expect_list[] = { 1, 9 };
|
218
|
+
no_pointers_Expect(1, "silly");
|
219
|
+
mixed_ExpectAndReturn(6, expect_list, 7, 13);
|
220
|
+
|
221
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
222
|
+
}
|
223
|
+
|
224
|
+
- :pass: FALSE
|
225
|
+
:should: 'handle creating array expects when we have mixed arguments and handle failures for single object'
|
226
|
+
:code: |
|
227
|
+
test()
|
228
|
+
{
|
229
|
+
int expect_list[] = { 9, 1 };
|
230
|
+
no_pointers_Expect(1, "silly");
|
231
|
+
mixed_ExpectAndReturn(6, expect_list, 7, 13);
|
232
|
+
|
233
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
234
|
+
}
|
235
|
+
|
236
|
+
- :pass: TRUE
|
237
|
+
:should: 'handle creating array expects when we have mixed arguments for multiple objects'
|
238
|
+
:code: |
|
239
|
+
test()
|
240
|
+
{
|
241
|
+
int expect_list[] = { 1, 2, 3, 4, 6 };
|
242
|
+
no_pointers_Expect(1, "silly");
|
243
|
+
mixed_ExpectWithArrayAndReturn(6, expect_list, 4, 7, 13);
|
244
|
+
|
245
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
246
|
+
}
|
247
|
+
|
248
|
+
- :pass: FALSE
|
249
|
+
:should: 'handle creating array expects when we have mixed arguments and handle failures for multiple objects'
|
250
|
+
:code: |
|
251
|
+
test()
|
252
|
+
{
|
253
|
+
int expect_list[] = { 1, 2, 3, 4, 6 };
|
254
|
+
no_pointers_Expect(1, "silly");
|
255
|
+
mixed_ExpectWithArrayAndReturn(6, expect_list, 5, 7, 13);
|
256
|
+
|
257
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
258
|
+
}
|
259
|
+
|
260
|
+
- :pass: TRUE
|
261
|
+
:should: 'handle an exception being caught'
|
262
|
+
:code: |
|
263
|
+
test()
|
264
|
+
{
|
265
|
+
bars_ExpectAndReturn("This is a\0 silly string");
|
266
|
+
foos_ExpectAndThrow("This is a\0 wacky string", 55);
|
267
|
+
foos_Expect("err");
|
268
|
+
|
269
|
+
function_c();
|
270
|
+
}
|
271
|
+
|
272
|
+
- :pass: FALSE
|
273
|
+
:should: 'handle an exception being caught but still catch following errors'
|
274
|
+
:code: |
|
275
|
+
test()
|
276
|
+
{
|
277
|
+
bars_ExpectAndReturn("This is a\0 silly string");
|
278
|
+
foos_ExpectAndThrow("This is a\0 wacky string", 55);
|
279
|
+
foos_Expect("wrong error");
|
280
|
+
|
281
|
+
function_c();
|
282
|
+
}
|
283
|
+
|
284
|
+
- :pass: FALSE
|
285
|
+
:should: 'fail strict ordering problems even though we would otherwise have passed'
|
286
|
+
:code: |
|
287
|
+
test()
|
288
|
+
{
|
289
|
+
int expect_list[] = { 1, 2, 3, 4, 6 };
|
290
|
+
mixed_ExpectWithArrayAndReturn(6, expect_list, 4, 7, 13);
|
291
|
+
no_pointers_Expect(1, "silly");
|
292
|
+
|
293
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
294
|
+
}
|
295
|
+
|
296
|
+
- :pass: TRUE
|
297
|
+
:should: 'that we can properly ignore last function but the other will work properly'
|
298
|
+
:code: |
|
299
|
+
test()
|
300
|
+
{
|
301
|
+
int expect_list[] = { 1, 2, 3, 4, 6 };
|
302
|
+
mixed_ExpectWithArrayAndReturn(6, expect_list, 4, 7, 13);
|
303
|
+
no_pointers_Ignore();
|
304
|
+
|
305
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
306
|
+
}
|
307
|
+
|
308
|
+
- :pass: TRUE
|
309
|
+
:should: 'that we can properly ignore first function but the other will work properly'
|
310
|
+
:code: |
|
311
|
+
test()
|
312
|
+
{
|
313
|
+
mixed_IgnoreAndReturn(13);
|
314
|
+
no_pointers_Expect(1, "silly");
|
315
|
+
|
316
|
+
TEST_ASSERT_EQUAL(13, function_d());
|
317
|
+
}
|
318
|
+
|
319
|
+
- :pass: TRUE
|
320
|
+
:should: 'that we just have to ignore a call once because we are not counting calls'
|
321
|
+
:code: |
|
322
|
+
test()
|
323
|
+
{
|
324
|
+
foos_Ignore();
|
325
|
+
|
326
|
+
function_e();
|
327
|
+
}
|
328
|
+
|
329
|
+
- :pass: TRUE
|
330
|
+
:should: 'that we can use a callback and an expect'
|
331
|
+
:code: |
|
332
|
+
test()
|
333
|
+
{
|
334
|
+
POINT_T pt1 = {2, 3};
|
335
|
+
POINT_T pt2 = {2, 3};
|
336
|
+
bar_ExpectAndReturn(&pt1);
|
337
|
+
foo_Expect(&pt2);
|
338
|
+
foo_StubWithCallback((CMOCK_foo_CALLBACK)my_foo_callback);
|
339
|
+
|
340
|
+
function_a();
|
341
|
+
}
|
342
|
+
|
343
|
+
- :pass: FALSE
|
344
|
+
:should: 'that we can fail even when using a callback if we want to expect call but did not and we are checking that'
|
345
|
+
:code: |
|
346
|
+
test()
|
347
|
+
{
|
348
|
+
POINT_T pt = {2, 3};
|
349
|
+
bar_ExpectAndReturn(&pt);
|
350
|
+
foo_StubWithCallback((CMOCK_foo_CALLBACK)my_foo_callback);
|
351
|
+
|
352
|
+
function_a();
|
353
|
+
}
|
354
|
+
|
355
|
+
- :pass: FALSE
|
356
|
+
:should: 'that we can fail even when using a callback if args are wrong and we are checking those'
|
357
|
+
:code: |
|
358
|
+
test()
|
359
|
+
{
|
360
|
+
POINT_T pt1 = {2, 3};
|
361
|
+
POINT_T pt2 = {1, 3};
|
362
|
+
bar_ExpectAndReturn(&pt1);
|
363
|
+
foo_Expect(&pt2);
|
364
|
+
foo_StubWithCallback((CMOCK_foo_CALLBACK)my_foo_callback);
|
365
|
+
|
366
|
+
function_a();
|
367
|
+
}
|
368
|
+
|
369
|
+
- :pass: FALSE
|
370
|
+
:should: 'that we can fail from the callback itself'
|
371
|
+
:code: |
|
372
|
+
test()
|
373
|
+
{
|
374
|
+
POINT_T pt = {3, 3};
|
375
|
+
bar_ExpectAndReturn(&pt);
|
376
|
+
foo_Expect(&pt);
|
377
|
+
foo_StubWithCallback((CMOCK_foo_CALLBACK)my_foo_callback);
|
378
|
+
|
379
|
+
function_a();
|
380
|
+
}
|
381
|
+
|
382
|
+
...
|