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,452 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + "/../test_helper")
|
2
|
+
|
3
|
+
class TestUnitBeforeAfter < Test::Unit::TestCase
|
4
|
+
|
5
|
+
#
|
6
|
+
# after_teardown
|
7
|
+
#
|
8
|
+
|
9
|
+
it "adds TestCase.after_teardown hook for appending post-teardown actions" do
|
10
|
+
write_and_run_test :use_after_teardown => true
|
11
|
+
|
12
|
+
see_in_order "Loaded suite",
|
13
|
+
"THE SETUP",
|
14
|
+
"A TEST",
|
15
|
+
"THE TEARDOWN",
|
16
|
+
"1st after_teardown",
|
17
|
+
"2nd after_teardown",
|
18
|
+
"Finished in"
|
19
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 0
|
20
|
+
end
|
21
|
+
|
22
|
+
should "execute all after_teardowns, even if the main teardown flunks" do
|
23
|
+
write_and_run_test :use_after_teardown => true, :flunk_in_teardown => true
|
24
|
+
see_in_order "Loaded suite",
|
25
|
+
"THE SETUP",
|
26
|
+
"A TEST",
|
27
|
+
"F",
|
28
|
+
"1st after_teardown",
|
29
|
+
"2nd after_teardown",
|
30
|
+
"Finished in",
|
31
|
+
"1) Failure:",
|
32
|
+
"test_something(MyExampleTest) [_test_file_temp.rb:20]:",
|
33
|
+
"FLUNK IN TEARDOWN"
|
34
|
+
see_results :tests => 1, :assertions => 1, :failures => 1, :errors => 0
|
35
|
+
end
|
36
|
+
|
37
|
+
should "execute all after_teardowns, even if the main teardown explodes" do
|
38
|
+
write_and_run_test :use_after_teardown => true, :raise_in_teardown => true
|
39
|
+
see_in_order "Loaded suite",
|
40
|
+
"THE SETUP",
|
41
|
+
"A TEST",
|
42
|
+
"E",
|
43
|
+
"1st after_teardown",
|
44
|
+
"2nd after_teardown",
|
45
|
+
"Finished in",
|
46
|
+
"RuntimeError: ERROR IN TEARDOWN"
|
47
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 1
|
48
|
+
end
|
49
|
+
|
50
|
+
should "execute all after_teardowns, even if some of them flunk" do
|
51
|
+
write_and_run_test :use_after_teardown => true, :flunk_in_after_teardown => true
|
52
|
+
see_in_order "Loaded suite",
|
53
|
+
"THE SETUP",
|
54
|
+
"A TEST",
|
55
|
+
"THE TEARDOWN",
|
56
|
+
"1st after_teardown",
|
57
|
+
"F",
|
58
|
+
"2nd after_teardown",
|
59
|
+
"Finished in",
|
60
|
+
"1) Failure:",
|
61
|
+
"test_something(MyExampleTest) [_test_file_temp.rb:7]:",
|
62
|
+
"Flunk in first after_teardown",
|
63
|
+
"2) Failure:",
|
64
|
+
"test_something(MyExampleTest) [_test_file_temp.rb:10]:",
|
65
|
+
"Flunk in second after_teardown"
|
66
|
+
see_results :tests => 1, :assertions => 2, :failures => 2, :errors => 0
|
67
|
+
end
|
68
|
+
|
69
|
+
should "execute all after_teardowns, even if some of them explode" do
|
70
|
+
write_and_run_test :use_after_teardown => true, :raise_in_after_teardown => true
|
71
|
+
see_in_order "Loaded suite",
|
72
|
+
"THE SETUP",
|
73
|
+
"A TEST",
|
74
|
+
"THE TEARDOWN",
|
75
|
+
"1st after_teardown",
|
76
|
+
"E",
|
77
|
+
"2nd after_teardown",
|
78
|
+
"Finished in",
|
79
|
+
"RuntimeError: Error in first after_teardown",
|
80
|
+
"RuntimeError: Error in second after_teardown"
|
81
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 2
|
82
|
+
end
|
83
|
+
|
84
|
+
it "will run after_teardowns in the absence of a regular teardown" do
|
85
|
+
write_and_run_test :omit_teardown => true, :use_after_teardown => true
|
86
|
+
see_in_order "Loaded suite",
|
87
|
+
"THE SETUP",
|
88
|
+
"A TEST",
|
89
|
+
"1st after_teardown",
|
90
|
+
"2nd after_teardown",
|
91
|
+
"Finished in"
|
92
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 0
|
93
|
+
end
|
94
|
+
|
95
|
+
should "not interfere with normal test writing" do
|
96
|
+
write_and_run_test
|
97
|
+
see_in_order "Loaded suite",
|
98
|
+
"THE SETUP",
|
99
|
+
"A TEST",
|
100
|
+
"THE TEARDOWN",
|
101
|
+
"Finished in"
|
102
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 0
|
103
|
+
end
|
104
|
+
|
105
|
+
it "provides a cleaned-up backtrace" do
|
106
|
+
write_and_run_test :with_failure => true
|
107
|
+
see_in_order "Loaded suite",
|
108
|
+
"THE SETUP",
|
109
|
+
"A FAILING TEST",
|
110
|
+
"F", "THE TEARDOWN",
|
111
|
+
"Finished in",
|
112
|
+
"1) Failure:",
|
113
|
+
"test_something(MyExampleTest) [_test_file_temp.rb:17]:",
|
114
|
+
"Instrumented failure.",
|
115
|
+
"<false> is not true."
|
116
|
+
see_results :tests => 1, :assertions => 1, :failures => 1, :errors => 0
|
117
|
+
end
|
118
|
+
|
119
|
+
it "provides a cleaned-up backtrace, but not TOO cleaned up" do
|
120
|
+
write_and_run_test :with_failure => true, :use_helpers => true
|
121
|
+
see_in_order "Loaded suite",
|
122
|
+
"THE SETUP",
|
123
|
+
"A FAILING TEST",
|
124
|
+
"F", "THE TEARDOWN",
|
125
|
+
"Finished in",
|
126
|
+
"1) Failure:",
|
127
|
+
"test_something(MyExampleTest)\n",
|
128
|
+
"[_test_file_temp.rb:25:in `tripwire'",
|
129
|
+
"_test_file_temp.rb:21:in `my_helper'",
|
130
|
+
"_test_file_temp.rb:17:in `test_something']:",
|
131
|
+
"Instrumented failure.",
|
132
|
+
"<false> is not true."
|
133
|
+
see_results :tests => 1, :assertions => 1, :failures => 1, :errors => 0
|
134
|
+
end
|
135
|
+
|
136
|
+
should "not interfere with passthrough exception types" do
|
137
|
+
if is_modern_test_unit?
|
138
|
+
write_and_run_test :raise_nasty_in_test => true
|
139
|
+
see_in_no_particular_order "Loaded suite",
|
140
|
+
"THE TEARDOWN",
|
141
|
+
"_test_file_temp.rb:16:in `test_something': NASTY ERROR (NoMemoryError)"
|
142
|
+
see_no_results
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
#
|
147
|
+
# before_setup
|
148
|
+
#
|
149
|
+
|
150
|
+
it "adds TestCase.before_setup hook for prepending pre-setup actions" do
|
151
|
+
write_and_run_test :use_before_setup => true
|
152
|
+
see_in_order "Loaded suite",
|
153
|
+
"3rd before_setup",
|
154
|
+
"2nd before_setup",
|
155
|
+
"1st before_setup",
|
156
|
+
"THE SETUP",
|
157
|
+
"A TEST",
|
158
|
+
"THE TEARDOWN",
|
159
|
+
"Finished in"
|
160
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 0
|
161
|
+
end
|
162
|
+
|
163
|
+
should "stop executing the test on the first failure withing a before_setup action" do
|
164
|
+
write_and_run_test :use_before_setup => true, :flunk_in_before_setup => true
|
165
|
+
see_in_order "Loaded suite",
|
166
|
+
"3rd before_setup",
|
167
|
+
"2nd before_setup",
|
168
|
+
"FTHE TEARDOWN",
|
169
|
+
"1) Failure:",
|
170
|
+
"test_something(MyExampleTest) [_test_file_temp.rb:10]:",
|
171
|
+
"Flunk in 2nd before_setup."
|
172
|
+
see_results :tests => 1, :assertions => 1, :failures => 1, :errors => 0
|
173
|
+
end
|
174
|
+
|
175
|
+
should "stop executing the test on the first error within a before_setup action" do
|
176
|
+
write_and_run_test :use_before_setup => true, :raise_in_before_setup => true
|
177
|
+
see_in_order "Loaded suite",
|
178
|
+
"3rd before_setup",
|
179
|
+
"2nd before_setup",
|
180
|
+
"ETHE TEARDOWN",
|
181
|
+
"Finished in",
|
182
|
+
"test_something(MyExampleTest):",
|
183
|
+
"RuntimeError: Error in 2nd before_setup",
|
184
|
+
"_test_file_temp.rb:10",
|
185
|
+
"/hardmock/lib/test_unit_before_after.rb:", ":in `call'"
|
186
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 1
|
187
|
+
end
|
188
|
+
|
189
|
+
it "will run before_setup actions in the absence of a regular setup" do
|
190
|
+
write_and_run_test :omit_setup => true, :use_before_setup => true
|
191
|
+
see_in_order "Loaded suite",
|
192
|
+
"3rd before_setup",
|
193
|
+
"2nd before_setup",
|
194
|
+
"1st before_setup",
|
195
|
+
"A TEST",
|
196
|
+
"THE TEARDOWN",
|
197
|
+
"Finished in"
|
198
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 0
|
199
|
+
end
|
200
|
+
|
201
|
+
it "allows before_setup and after_teardown to be used at the same time" do
|
202
|
+
write_and_run_test :use_before_setup => true, :use_after_teardown => true
|
203
|
+
see_in_order "Loaded suite",
|
204
|
+
"3rd before_setup",
|
205
|
+
"2nd before_setup",
|
206
|
+
"1st before_setup",
|
207
|
+
"A TEST",
|
208
|
+
"THE TEARDOWN",
|
209
|
+
"1st after_teardown",
|
210
|
+
"2nd after_teardown",
|
211
|
+
"Finished in"
|
212
|
+
see_results :tests => 1, :assertions => 0, :failures => 0, :errors => 0
|
213
|
+
end
|
214
|
+
|
215
|
+
#
|
216
|
+
# HELPERS
|
217
|
+
#
|
218
|
+
|
219
|
+
def teardown
|
220
|
+
remove_test
|
221
|
+
end
|
222
|
+
|
223
|
+
def test_filename
|
224
|
+
"_test_file_temp.rb"
|
225
|
+
end
|
226
|
+
|
227
|
+
def remove_test
|
228
|
+
rm_f test_filename
|
229
|
+
end
|
230
|
+
|
231
|
+
def write_and_run_test(opts={})
|
232
|
+
write(test_filename, generate_test_code(opts))
|
233
|
+
run_test
|
234
|
+
end
|
235
|
+
|
236
|
+
def run_test
|
237
|
+
@output = `ruby #{test_filename} 2>&1`
|
238
|
+
end
|
239
|
+
|
240
|
+
|
241
|
+
def write(fname, code)
|
242
|
+
File.open(fname,"w") do |f|
|
243
|
+
f.print code
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
def show_output
|
248
|
+
puts "-- BEGIN TEST OUTPUT"
|
249
|
+
puts @output
|
250
|
+
puts "-- END TEST OUTPUT"
|
251
|
+
end
|
252
|
+
|
253
|
+
def see_in_order(*phrases)
|
254
|
+
idx = 0
|
255
|
+
phrases.each do |txt|
|
256
|
+
idx = @output.index(txt, idx)
|
257
|
+
if idx.nil?
|
258
|
+
if @output.index(txt)
|
259
|
+
flunk "Phrase '#{txt}' is out-of-order in test output:\n#{@output}"
|
260
|
+
else
|
261
|
+
flunk "Phrase '#{txt}' not found in test output:\n#{@output}"
|
262
|
+
end
|
263
|
+
end
|
264
|
+
end
|
265
|
+
end
|
266
|
+
|
267
|
+
def see_in_no_particular_order(*phrases)
|
268
|
+
phrases.each do |txt|
|
269
|
+
assert_not_nil @output.index(txt), "Didn't see '#{txt}' in test output:\n#{@output}"
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
def see_results(opts)
|
274
|
+
if @output =~ /(\d+) tests, (\d+) assertions, (\d+) failures, (\d+) errors/
|
275
|
+
tests, assertions, failures, errors = [ $1, $2, $3, $4 ]
|
276
|
+
[:tests, :assertions, :failures, :errors].each do |key|
|
277
|
+
eval %{assert_equal(opts[:#{key}].to_s, #{key}, "Wrong number of #{key} in report") if opts[:#{key}]}
|
278
|
+
end
|
279
|
+
else
|
280
|
+
flunk "Didn't see the test results report line"
|
281
|
+
end
|
282
|
+
end
|
283
|
+
|
284
|
+
def see_no_results
|
285
|
+
if @output =~ /\d+ tests, \d+ assertions, \d+ failures, \d+ errors/
|
286
|
+
flunk "Should not have had a results line:\n#{@output}"
|
287
|
+
end
|
288
|
+
end
|
289
|
+
|
290
|
+
def lib_dir
|
291
|
+
File.expand_path(File.dirname(__FILE__) + "/../../lib")
|
292
|
+
end
|
293
|
+
|
294
|
+
def generate_test_code(opts={})
|
295
|
+
|
296
|
+
if opts[:with_failure] or opts[:raise_nasty_in_test]
|
297
|
+
test_method_code = generate_failing_test("test_something", opts)
|
298
|
+
else
|
299
|
+
test_method_code = generate_passing_test("test_something")
|
300
|
+
end
|
301
|
+
|
302
|
+
|
303
|
+
requires_for_ext = ''
|
304
|
+
if opts[:use_before_setup] or opts[:use_after_teardown]
|
305
|
+
requires_for_ext =<<-RFE
|
306
|
+
$: << "#{lib_dir}"
|
307
|
+
require 'test_unit_before_after'
|
308
|
+
RFE
|
309
|
+
end
|
310
|
+
|
311
|
+
before_setups = ''
|
312
|
+
if opts[:use_before_setup]
|
313
|
+
add_on_two = ""
|
314
|
+
if opts[:flunk_in_before_setup]
|
315
|
+
add_on_two = %{; test.flunk "Flunk in 2nd before_setup"}
|
316
|
+
elsif opts[:raise_in_before_setup]
|
317
|
+
add_on_two = %{; raise "Error in 2nd before_setup"}
|
318
|
+
end
|
319
|
+
before_setups =<<-BSTS
|
320
|
+
Test::Unit::TestCase.before_setup do |test|
|
321
|
+
puts "1st before_setup"
|
322
|
+
end
|
323
|
+
Test::Unit::TestCase.before_setup do |test|
|
324
|
+
puts "2nd before_setup" #{add_on_two}
|
325
|
+
end
|
326
|
+
Test::Unit::TestCase.before_setup do |test|
|
327
|
+
puts "3rd before_setup"
|
328
|
+
end
|
329
|
+
|
330
|
+
BSTS
|
331
|
+
end
|
332
|
+
|
333
|
+
|
334
|
+
setup_code =<<-SC
|
335
|
+
def setup
|
336
|
+
puts "THE SETUP"
|
337
|
+
end
|
338
|
+
SC
|
339
|
+
if opts[:omit_setup]
|
340
|
+
setup_code = ""
|
341
|
+
end
|
342
|
+
|
343
|
+
after_teardowns = ''
|
344
|
+
if opts[:use_after_teardown]
|
345
|
+
add_on_one = ""
|
346
|
+
add_on_two = ""
|
347
|
+
if opts[:flunk_in_after_teardown]
|
348
|
+
add_on_one = %{; test.flunk "Flunk in first after_teardown"}
|
349
|
+
add_on_two = %{; test.flunk "Flunk in second after_teardown"}
|
350
|
+
elsif opts[:raise_in_after_teardown]
|
351
|
+
add_on_one = %{; raise "Error in first after_teardown"}
|
352
|
+
add_on_two = %{; raise "Error in second after_teardown"}
|
353
|
+
end
|
354
|
+
after_teardowns =<<-ATDS
|
355
|
+
Test::Unit::TestCase.after_teardown do |test|
|
356
|
+
puts "1st after_teardown" #{add_on_one}
|
357
|
+
end
|
358
|
+
Test::Unit::TestCase.after_teardown do |test|
|
359
|
+
puts "2nd after_teardown" #{add_on_two}
|
360
|
+
end
|
361
|
+
ATDS
|
362
|
+
end
|
363
|
+
|
364
|
+
teardown_code =<<-TDC
|
365
|
+
def teardown
|
366
|
+
puts "THE TEARDOWN"
|
367
|
+
end
|
368
|
+
TDC
|
369
|
+
if opts[:flunk_in_teardown]
|
370
|
+
teardown_code =<<-TDC
|
371
|
+
def teardown
|
372
|
+
flunk "FLUNK IN TEARDOWN"
|
373
|
+
end
|
374
|
+
TDC
|
375
|
+
elsif opts[:raise_in_teardown]
|
376
|
+
teardown_code =<<-TDC
|
377
|
+
def teardown
|
378
|
+
raise "ERROR IN TEARDOWN"
|
379
|
+
end
|
380
|
+
TDC
|
381
|
+
end
|
382
|
+
if opts[:omit_teardown]
|
383
|
+
teardown_code = ""
|
384
|
+
end
|
385
|
+
|
386
|
+
str = <<-TCODE
|
387
|
+
require 'test/unit'
|
388
|
+
#{requires_for_ext}
|
389
|
+
|
390
|
+
#{before_setups} #{after_teardowns}
|
391
|
+
|
392
|
+
class MyExampleTest < Test::Unit::TestCase
|
393
|
+
#{setup_code}
|
394
|
+
#{teardown_code}
|
395
|
+
#{test_method_code}
|
396
|
+
end
|
397
|
+
TCODE
|
398
|
+
end
|
399
|
+
|
400
|
+
def generate_passing_test(tname)
|
401
|
+
str = <<-TMETH
|
402
|
+
def #{tname}
|
403
|
+
puts "A TEST"
|
404
|
+
end
|
405
|
+
TMETH
|
406
|
+
end
|
407
|
+
|
408
|
+
def generate_failing_test(tname, opts={})
|
409
|
+
str = "NOT DEFINED?"
|
410
|
+
if opts[:raise_nasty_in_test]
|
411
|
+
str = <<-TMETH
|
412
|
+
def #{tname}
|
413
|
+
raise NoMemoryError, "NASTY ERROR"
|
414
|
+
end
|
415
|
+
TMETH
|
416
|
+
|
417
|
+
elsif opts[:use_helpers]
|
418
|
+
str = <<-TMETH
|
419
|
+
def #{tname}
|
420
|
+
puts "A FAILING TEST"
|
421
|
+
my_helper
|
422
|
+
end
|
423
|
+
|
424
|
+
def my_helper
|
425
|
+
tripwire
|
426
|
+
end
|
427
|
+
|
428
|
+
def tripwire
|
429
|
+
assert false, "Instrumented failure"
|
430
|
+
end
|
431
|
+
TMETH
|
432
|
+
else
|
433
|
+
str = <<-TMETH
|
434
|
+
def #{tname}
|
435
|
+
puts "A FAILING TEST"
|
436
|
+
assert false, "Instrumented failure"
|
437
|
+
end
|
438
|
+
TMETH
|
439
|
+
end
|
440
|
+
return str
|
441
|
+
end
|
442
|
+
|
443
|
+
def is_modern_test_unit?
|
444
|
+
begin
|
445
|
+
Test::Unit::TestCase::PASSTHROUGH_EXCEPTIONS
|
446
|
+
return true
|
447
|
+
rescue NameError
|
448
|
+
return false
|
449
|
+
end
|
450
|
+
end
|
451
|
+
|
452
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + "/../test_helper")
|
2
|
+
require 'hardmock/method_cleanout'
|
3
|
+
require 'hardmock/trapper'
|
4
|
+
|
5
|
+
class TrapperTest < Test::Unit::TestCase
|
6
|
+
include Hardmock
|
7
|
+
|
8
|
+
def setup
|
9
|
+
@mock = Object.new
|
10
|
+
@mock_control = MyControl.new
|
11
|
+
@builder = ExpBuilder.new
|
12
|
+
@trapper = Trapper.new(@mock, @mock_control, @builder)
|
13
|
+
end
|
14
|
+
|
15
|
+
#
|
16
|
+
# HELPERS
|
17
|
+
#
|
18
|
+
|
19
|
+
class MyControl
|
20
|
+
attr_reader :added
|
21
|
+
def add_expectation(expectation)
|
22
|
+
@added ||= []
|
23
|
+
@added << expectation
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
class ExpBuilder
|
28
|
+
attr_reader :options
|
29
|
+
def build_expectation(options)
|
30
|
+
@options = options
|
31
|
+
"dummy expectation"
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
#
|
36
|
+
# TESTS
|
37
|
+
#
|
38
|
+
|
39
|
+
def test_method_missing
|
40
|
+
|
41
|
+
output = @trapper.change(:less)
|
42
|
+
|
43
|
+
assert_same @mock, @builder.options[:mock]
|
44
|
+
assert_equal :change, @builder.options[:method]
|
45
|
+
assert_equal [:less], @builder.options[:arguments]
|
46
|
+
assert_not_nil @builder.options[:block]
|
47
|
+
assert @builder.options[:suppress_arguments_to_block], ":suppress_arguments_to_block should be set"
|
48
|
+
assert_equal [ "dummy expectation" ], @mock_control.added,
|
49
|
+
"Wrong expectation added to control"
|
50
|
+
|
51
|
+
assert_equal "dummy expectation", output, "Expectation should have been returned"
|
52
|
+
|
53
|
+
# Examine the block. It should take one argument and simply return
|
54
|
+
# that argument. because of the 'suppress arguments to block'
|
55
|
+
# setting, the argument can only end up being a block, in practice.
|
56
|
+
trapper_block = @builder.options[:block]
|
57
|
+
assert_equal "the argument", trapper_block.call("the argument"),
|
58
|
+
"The block should merely return the passed argument"
|
59
|
+
end
|
60
|
+
|
61
|
+
|
62
|
+
end
|