ceedling 0.28.2 → 0.28.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/ceedling +3 -0
- data/assets/ceedling.cmd +1 -0
- data/assets/default_gitignore +5 -0
- data/assets/project_with_guts.yml +1 -0
- data/assets/project_with_guts_gcov.yml +3 -0
- data/assets/test_example_file_verbose.c +12 -0
- data/bin/ceedling +30 -6
- data/docs/CeedlingPacket.md +135 -23
- data/docs/CeedlingPacket.odt +0 -0
- data/examples/blinky/rakefile.rb +2 -1
- data/lib/ceedling/configurator.rb +7 -5
- data/lib/ceedling/configurator_builder.rb +10 -7
- data/lib/ceedling/configurator_plugins.rb +29 -24
- data/lib/ceedling/configurator_setup.rb +0 -1
- data/lib/ceedling/defaults.rb +7 -2
- data/lib/ceedling/dependinator.rb +10 -2
- data/lib/ceedling/file_finder.rb +57 -49
- data/lib/ceedling/file_path_utils.rb +12 -4
- data/lib/ceedling/file_wrapper.rb +4 -0
- data/lib/ceedling/generator.rb +4 -3
- data/lib/ceedling/generator_test_results.rb +15 -13
- data/lib/ceedling/plugin_manager.rb +18 -18
- data/lib/ceedling/plugin_reportinator.rb +3 -2
- data/lib/ceedling/plugin_reportinator_helper.rb +2 -3
- data/lib/ceedling/preprocessinator_extractor.rb +2 -2
- data/lib/ceedling/preprocessinator_includes_handler.rb +5 -0
- data/lib/ceedling/rakefile.rb +1 -0
- data/lib/ceedling/release_invoker_helper.rb +5 -2
- data/lib/ceedling/rules_release.rake +2 -1
- data/lib/ceedling/rules_tests.rake +18 -9
- data/lib/ceedling/rules_tests_deep_dependencies.rake +2 -2
- data/lib/ceedling/task_invoker.rb +15 -3
- data/lib/ceedling/tasks_vendor.rake +3 -3
- data/lib/ceedling/test_invoker.rb +39 -12
- data/lib/ceedling/test_invoker_helper.rb +5 -1
- data/lib/ceedling/tool_executor.rb +8 -4
- data/lib/ceedling/version.rb +1 -1
- data/out.fail +21 -0
- data/plugins/beep/README.md +22 -0
- data/plugins/beep/lib/beep.rb +40 -0
- data/plugins/bullseye/bullseye.rake +43 -36
- data/plugins/bullseye/config/defaults.yml +4 -0
- data/plugins/bullseye/lib/bullseye.rb +27 -5
- data/plugins/command_hooks/lib/command_hooks.rb +3 -0
- data/plugins/gcov/README.md +34 -1
- data/plugins/gcov/config/defaults.yml +3 -3
- data/plugins/gcov/gcov.rake +7 -5
- data/plugins/gcov/lib/gcov.rb +3 -1
- data/plugins/gcov/lib/gcov_constants.rb +2 -0
- data/plugins/junit_tests_report/lib/junit_tests_report.rb +12 -9
- data/plugins/module_generator/lib/module_generator.rb +14 -1
- data/plugins/module_generator/module_generator.rake +21 -4
- data/plugins/raw_output_report/lib/raw_output_report.rb +41 -0
- data/spec/gcov/gcov_deployment_spec.rb +1 -1
- data/spec/gcov/gcov_test_cases_spec.rb +2 -2
- data/spec/generator_test_results_spec.rb +5 -0
- data/spec/preprocessinator_includes_handler_spec.rb +1 -0
- data/spec/spec_system_helper.rb +178 -4
- data/spec/support/test_example.fail +1 -0
- data/spec/support/test_example.pass +1 -0
- data/spec/support/test_example_empty.pass +1 -0
- data/spec/support/test_example_ignore.pass +1 -0
- data/spec/support/test_example_mangled.pass +1 -0
- data/spec/support/test_example_with_time.pass +22 -0
- data/spec/system/deployment_spec.rb +33 -0
- data/vendor/cmock/README.md +4 -3
- data/vendor/cmock/docs/CMock_Summary.md +1 -1
- data/vendor/cmock/lib/cmock_config.rb +4 -0
- data/vendor/cmock/lib/cmock_generator.rb +5 -2
- data/vendor/cmock/lib/cmock_generator_plugin_array.rb +4 -4
- data/vendor/cmock/lib/cmock_generator_plugin_callback.rb +9 -11
- data/vendor/cmock/lib/cmock_generator_plugin_cexception.rb +0 -1
- data/vendor/cmock/lib/cmock_generator_plugin_ignore.rb +2 -3
- data/vendor/cmock/lib/cmock_generator_plugin_ignore_arg.rb +2 -4
- data/vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb +0 -2
- data/vendor/cmock/lib/cmock_generator_utils.rb +16 -3
- data/vendor/cmock/lib/cmock_header_parser.rb +59 -34
- data/vendor/cmock/release/build.info +1 -1
- data/vendor/cmock/release/version.info +1 -1
- data/vendor/cmock/scripts/create_makefile.rb +17 -2
- data/vendor/cmock/src/cmock.c +13 -7
- data/vendor/cmock/test/test_helper.rb +11 -10
- data/vendor/cmock/test/unit/cmock_config_test.rb +4 -2
- data/vendor/cmock/test/unit/cmock_generator_main_test.rb +10 -4
- data/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +20 -12
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_a_test.rb +2 -2
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_b_test.rb +2 -2
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_arg_test.rb +3 -3
- data/vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb +8 -6
- data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +27 -10
- data/vendor/cmock/test/unit/cmock_header_parser_test.rb +108 -20
- data/vendor/cmock/vendor/c_exception/Gemfile +4 -0
- data/vendor/cmock/vendor/c_exception/Gemfile.lock +12 -0
- data/vendor/cmock/vendor/c_exception/LICENSE.txt +30 -0
- data/vendor/cmock/vendor/c_exception/README.md +162 -0
- data/vendor/cmock/vendor/c_exception/Rakefile +42 -0
- data/vendor/cmock/vendor/c_exception/docs/CException.md +292 -0
- data/vendor/cmock/vendor/c_exception/docs/ThrowTheSwitchCodingStandard.md +207 -0
- data/vendor/cmock/vendor/c_exception/lib/CException.c +46 -0
- data/vendor/cmock/vendor/c_exception/lib/CException.h +110 -0
- data/vendor/cmock/vendor/c_exception/makefile +24 -0
- data/vendor/cmock/vendor/c_exception/release/build.info +2 -0
- data/vendor/cmock/vendor/c_exception/release/version.info +2 -0
- data/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +46 -0
- data/vendor/cmock/vendor/c_exception/test/TestException.c +391 -0
- data/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +67 -0
- data/vendor/cmock/vendor/unity/README.md +231 -0
- data/vendor/cmock/vendor/unity/auto/colour_prompt.rb +118 -0
- data/vendor/cmock/vendor/unity/auto/colour_reporter.rb +39 -0
- data/vendor/cmock/vendor/unity/auto/generate_config.yml +36 -0
- data/vendor/cmock/vendor/unity/auto/generate_module.rb +308 -0
- data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +457 -0
- data/vendor/cmock/vendor/unity/auto/parse_output.rb +323 -0
- data/vendor/cmock/vendor/unity/auto/stylize_as_junit.rb +252 -0
- data/vendor/cmock/vendor/unity/auto/test_file_filter.rb +25 -0
- data/vendor/cmock/vendor/unity/auto/type_sanitizer.rb +6 -0
- data/vendor/cmock/vendor/unity/auto/unity_test_summary.py +139 -0
- data/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +136 -0
- data/vendor/cmock/vendor/unity/auto/unity_to_junit.py +146 -0
- data/vendor/cmock/vendor/unity/docs/ThrowTheSwitchCodingStandard.md +206 -0
- data/vendor/cmock/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
- data/vendor/cmock/vendor/unity/docs/UnityAssertionsReference.md +779 -0
- data/vendor/cmock/vendor/unity/docs/UnityConfigurationGuide.md +433 -0
- data/vendor/cmock/vendor/unity/docs/UnityGettingStartedGuide.md +192 -0
- data/vendor/cmock/vendor/unity/docs/UnityHelperScriptsGuide.md +260 -0
- data/vendor/cmock/vendor/unity/docs/license.txt +21 -0
- data/vendor/cmock/vendor/unity/examples/example_1/makefile +71 -0
- data/vendor/cmock/vendor/unity/examples/example_1/readme.txt +5 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.c +11 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode.c +62 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode2.c +31 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +53 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +57 -0
- data/vendor/cmock/vendor/unity/examples/example_2/makefile +70 -0
- data/vendor/cmock/vendor/unity/examples/example_2/readme.txt +5 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode2.c +11 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/TestProductionCode.c +64 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/TestProductionCode2.c +33 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +9 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +11 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/all_tests.c +12 -0
- data/vendor/cmock/vendor/unity/examples/example_3/helper/UnityHelper.c +10 -0
- data/vendor/cmock/vendor/unity/examples/example_3/helper/UnityHelper.h +12 -0
- data/vendor/cmock/vendor/unity/examples/example_3/rakefile.rb +43 -0
- data/vendor/cmock/vendor/unity/examples/example_3/rakefile_helper.rb +249 -0
- data/vendor/cmock/vendor/unity/examples/example_3/readme.txt +13 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode2.c +11 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/unity/examples/example_3/target_gcc_32.yml +46 -0
- data/vendor/cmock/vendor/unity/examples/example_3/test/TestProductionCode.c +62 -0
- data/vendor/cmock/vendor/unity/examples/example_3/test/TestProductionCode2.c +31 -0
- data/vendor/cmock/vendor/unity/examples/unity_config.h +247 -0
- data/vendor/cmock/vendor/unity/extras/eclipse/error_parsers.txt +26 -0
- data/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +48 -0
- data/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/vendor/cmock/vendor/unity/extras/fixture/readme.txt +9 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +436 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +83 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +51 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +47 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/Makefile +75 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +22 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/template_fixture_tests.c +39 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +543 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +57 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +57 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/vendor/cmock/vendor/unity/release/build.info +2 -0
- data/vendor/cmock/vendor/unity/release/version.info +2 -0
- data/vendor/cmock/vendor/unity/src/unity.c +1572 -0
- data/vendor/cmock/vendor/unity/src/unity.h +503 -0
- data/vendor/cmock/vendor/unity/src/unity_internals.h +924 -0
- data/vendor/cmock/vendor/unity/test/Makefile +68 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +61 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +57 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_head1.c +55 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_head1.h +15 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +80 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +76 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_head1.c +75 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_head1.h +13 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +89 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +89 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +77 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +89 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +89 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +90 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +67 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +70 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +58 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +67 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +70 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +71 -0
- data/vendor/cmock/vendor/unity/test/rakefile +125 -0
- data/vendor/cmock/vendor/unity/test/rakefile_helper.rb +260 -0
- data/vendor/cmock/vendor/unity/test/spec/generate_module_existing_file_spec.rb +158 -0
- data/vendor/cmock/vendor/unity/test/targets/clang_file.yml +78 -0
- data/vendor/cmock/vendor/unity/test/targets/clang_strict.yml +78 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_32.yml +49 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_64.yml +50 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_auto_limits.yml +47 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_auto_stdint.yml +59 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_manual_math.yml +47 -0
- data/vendor/cmock/vendor/unity/test/targets/hitech_picc18.yml +101 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v4.yml +90 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v5.yml +80 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v5_3.yml +80 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +94 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_cortexm3_v5.yml +84 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_msp430.yml +95 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_sh2a_v6.yml +86 -0
- data/vendor/cmock/vendor/unity/test/testdata/CException.h +11 -0
- data/vendor/cmock/vendor/unity/test/testdata/Defs.h +8 -0
- data/vendor/cmock/vendor/unity/test/testdata/cmock.h +14 -0
- data/vendor/cmock/vendor/unity/test/testdata/mockMock.h +13 -0
- data/vendor/cmock/vendor/unity/test/testdata/testRunnerGenerator.c +186 -0
- data/vendor/cmock/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +70 -0
- data/vendor/cmock/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +195 -0
- data/vendor/cmock/vendor/unity/test/tests/test_generate_test_runner.rb +1252 -0
- data/vendor/cmock/vendor/unity/test/tests/testparameterized.c +113 -0
- data/vendor/cmock/vendor/unity/test/tests/testunity.c +5371 -0
- data/vendor/unity/auto/generate_test_runner.rb +30 -10
- data/vendor/unity/auto/parse_output.rb +212 -109
- data/vendor/unity/docs/ThrowTheSwitchCodingStandard.md +9 -10
- data/vendor/unity/docs/UnityAssertionsReference.md +11 -2
- data/vendor/unity/docs/UnityConfigurationGuide.md +90 -55
- data/vendor/unity/docs/UnityGettingStartedGuide.md +6 -5
- data/vendor/unity/docs/UnityHelperScriptsGuide.md +23 -5
- data/vendor/unity/examples/unity_config.h +8 -0
- data/vendor/unity/extras/fixture/src/unity_fixture.c +4 -0
- data/vendor/unity/extras/fixture/src/unity_fixture.h +1 -1
- data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +2 -2
- data/vendor/unity/release/build.info +1 -1
- data/vendor/unity/release/version.info +1 -1
- data/vendor/unity/src/unity.c +64 -57
- data/vendor/unity/src/unity.h +111 -7
- data/vendor/unity/src/unity_internals.h +173 -73
- data/vendor/unity/test/Makefile +5 -1
- data/vendor/unity/test/testdata/testRunnerGenerator.c +4 -1
- data/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +4 -1
- data/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +4 -1
- data/vendor/unity/test/tests/testparameterized.c +5 -2
- data/vendor/unity/test/tests/testunity.c +34 -0
- metadata +150 -2
@@ -0,0 +1,67 @@
|
|
1
|
+
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
2
|
+
|
3
|
+
//=======Test Runner Used To Run Each Test Below=====
|
4
|
+
#define RUN_TEST(TestFunc, TestLineNum) \
|
5
|
+
{ \
|
6
|
+
Unity.CurrentTestName = #TestFunc; \
|
7
|
+
Unity.CurrentTestLineNumber = TestLineNum; \
|
8
|
+
Unity.NumberOfTests++; \
|
9
|
+
if (TEST_PROTECT()) \
|
10
|
+
{ \
|
11
|
+
setUp(); \
|
12
|
+
TestFunc(); \
|
13
|
+
} \
|
14
|
+
if (TEST_PROTECT() && !TEST_IS_IGNORED) \
|
15
|
+
{ \
|
16
|
+
tearDown(); \
|
17
|
+
} \
|
18
|
+
UnityConcludeTest(); \
|
19
|
+
}
|
20
|
+
|
21
|
+
//=======Automagically Detected Files To Include=====
|
22
|
+
#include "unity.h"
|
23
|
+
#include <setjmp.h>
|
24
|
+
#include <stdio.h>
|
25
|
+
|
26
|
+
//=======External Functions This Runner Calls=====
|
27
|
+
extern void setUp(void);
|
28
|
+
extern void tearDown(void);
|
29
|
+
extern void test_BasicTryDoesNothingIfNoThrow(void);
|
30
|
+
extern void test_BasicThrowAndCatch(void);
|
31
|
+
extern void test_BasicThrowAndCatch_WithMiniSyntax(void);
|
32
|
+
extern void test_VerifyVolatilesSurviveThrowAndCatch(void);
|
33
|
+
extern void test_ThrowFromASubFunctionAndCatchInRootFunc(void);
|
34
|
+
extern void test_ThrowAndCatchFromASubFunctionAndRethrowToCatchInRootFunc(void);
|
35
|
+
extern void test_ThrowAndCatchFromASubFunctionAndNoRethrowToCatchInRootFunc(void);
|
36
|
+
extern void test_ThrowAnErrorThenEnterATryBlockFromWithinCatch_VerifyThisDoesntCorruptExceptionId(void);
|
37
|
+
extern void test_ThrowAnErrorThenEnterATryBlockFromWithinCatch_VerifyThatEachExceptionIdIndependent(void);
|
38
|
+
extern void test_CanHaveMultipleTryBlocksInASingleFunction(void);
|
39
|
+
extern void test_CanHaveNestedTryBlocksInASingleFunction_ThrowInside(void);
|
40
|
+
extern void test_CanHaveNestedTryBlocksInASingleFunction_ThrowOutside(void);
|
41
|
+
extern void test_AThrowWithoutATryCatchWillUseDefaultHandlerIfSpecified(void);
|
42
|
+
extern void test_AThrowWithoutOutsideATryCatchWillUseDefaultHandlerEvenAfterTryCatch(void);
|
43
|
+
extern void test_AbilityToExitTryWithoutThrowingAnError(void);
|
44
|
+
extern void test_AbilityToExitTryWillOnlyExitOneLevel(void);
|
45
|
+
|
46
|
+
//=======MAIN=====
|
47
|
+
int main(void)
|
48
|
+
{
|
49
|
+
UnityBegin("TestException.c");
|
50
|
+
RUN_TEST(test_BasicTryDoesNothingIfNoThrow, 16);
|
51
|
+
RUN_TEST(test_BasicThrowAndCatch, 37);
|
52
|
+
RUN_TEST(test_BasicThrowAndCatch_WithMiniSyntax, 56);
|
53
|
+
RUN_TEST(test_VerifyVolatilesSurviveThrowAndCatch, 76);
|
54
|
+
RUN_TEST(test_ThrowFromASubFunctionAndCatchInRootFunc, 105);
|
55
|
+
RUN_TEST(test_ThrowAndCatchFromASubFunctionAndRethrowToCatchInRootFunc, 148);
|
56
|
+
RUN_TEST(test_ThrowAndCatchFromASubFunctionAndNoRethrowToCatchInRootFunc, 167);
|
57
|
+
RUN_TEST(test_ThrowAnErrorThenEnterATryBlockFromWithinCatch_VerifyThisDoesntCorruptExceptionId, 184);
|
58
|
+
RUN_TEST(test_ThrowAnErrorThenEnterATryBlockFromWithinCatch_VerifyThatEachExceptionIdIndependent, 202);
|
59
|
+
RUN_TEST(test_CanHaveMultipleTryBlocksInASingleFunction, 229);
|
60
|
+
RUN_TEST(test_CanHaveNestedTryBlocksInASingleFunction_ThrowInside, 254);
|
61
|
+
RUN_TEST(test_CanHaveNestedTryBlocksInASingleFunction_ThrowOutside, 281);
|
62
|
+
RUN_TEST(test_AThrowWithoutATryCatchWillUseDefaultHandlerIfSpecified, 308);
|
63
|
+
RUN_TEST(test_AThrowWithoutOutsideATryCatchWillUseDefaultHandlerEvenAfterTryCatch, 319);
|
64
|
+
RUN_TEST(test_AbilityToExitTryWithoutThrowingAnError, 344);
|
65
|
+
RUN_TEST(test_AbilityToExitTryWillOnlyExitOneLevel, 363);
|
66
|
+
return (UnityEnd());
|
67
|
+
}
|
@@ -0,0 +1,231 @@
|
|
1
|
+
Unity Test API
|
2
|
+
==============
|
3
|
+
|
4
|
+
[![Unity Build Status](https://api.travis-ci.org/ThrowTheSwitch/Unity.png?branch=master)](https://travis-ci.org/ThrowTheSwitch/Unity)
|
5
|
+
__Copyright (c) 2007 - 2017 Unity Project by Mike Karlesky, Mark VanderVoord, and Greg Williams__
|
6
|
+
|
7
|
+
Running Tests
|
8
|
+
-------------
|
9
|
+
|
10
|
+
RUN_TEST(func, linenum)
|
11
|
+
|
12
|
+
Each Test is run within the macro `RUN_TEST`. This macro performs necessary setup before the test is called and handles cleanup and result tabulation afterwards.
|
13
|
+
|
14
|
+
Ignoring Tests
|
15
|
+
--------------
|
16
|
+
|
17
|
+
There are times when a test is incomplete or not valid for some reason. At these times, TEST_IGNORE can be called. Control will immediately be returned to the caller of the test, and no failures will be returned.
|
18
|
+
|
19
|
+
TEST_IGNORE()
|
20
|
+
|
21
|
+
Ignore this test and return immediately
|
22
|
+
|
23
|
+
TEST_IGNORE_MESSAGE (message)
|
24
|
+
|
25
|
+
Ignore this test and return immediately. Output a message stating why the test was ignored.
|
26
|
+
|
27
|
+
Aborting Tests
|
28
|
+
--------------
|
29
|
+
|
30
|
+
There are times when a test will contain an infinite loop on error conditions, or there may be reason to escape from the test early without executing the rest of the test. A pair of macros support this functionality in Unity. The first `TEST_PROTECT` sets up the feature, and handles emergency abort cases. `TEST_ABORT` can then be used at any time within the tests to return to the last `TEST_PROTECT` call.
|
31
|
+
|
32
|
+
TEST_PROTECT()
|
33
|
+
|
34
|
+
Setup and Catch macro
|
35
|
+
|
36
|
+
TEST_ABORT()
|
37
|
+
|
38
|
+
Abort Test macro
|
39
|
+
|
40
|
+
Example:
|
41
|
+
|
42
|
+
main()
|
43
|
+
{
|
44
|
+
if (TEST_PROTECT())
|
45
|
+
{
|
46
|
+
MyTest();
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
If MyTest calls `TEST_ABORT`, program control will immediately return to `TEST_PROTECT` with a return value of zero.
|
51
|
+
|
52
|
+
|
53
|
+
Unity Assertion Summary
|
54
|
+
=======================
|
55
|
+
|
56
|
+
Basic Validity Tests
|
57
|
+
--------------------
|
58
|
+
|
59
|
+
TEST_ASSERT_TRUE(condition)
|
60
|
+
|
61
|
+
Evaluates whatever code is in condition and fails if it evaluates to false
|
62
|
+
|
63
|
+
TEST_ASSERT_FALSE(condition)
|
64
|
+
|
65
|
+
Evaluates whatever code is in condition and fails if it evaluates to true
|
66
|
+
|
67
|
+
TEST_ASSERT(condition)
|
68
|
+
|
69
|
+
Another way of calling `TEST_ASSERT_TRUE`
|
70
|
+
|
71
|
+
TEST_ASSERT_UNLESS(condition)
|
72
|
+
|
73
|
+
Another way of calling `TEST_ASSERT_FALSE`
|
74
|
+
|
75
|
+
TEST_FAIL()
|
76
|
+
TEST_FAIL_MESSAGE(message)
|
77
|
+
|
78
|
+
This test is automatically marked as a failure. The message is output stating why.
|
79
|
+
|
80
|
+
Numerical Assertions: Integers
|
81
|
+
------------------------------
|
82
|
+
|
83
|
+
TEST_ASSERT_EQUAL_INT(expected, actual)
|
84
|
+
TEST_ASSERT_EQUAL_INT8(expected, actual)
|
85
|
+
TEST_ASSERT_EQUAL_INT16(expected, actual)
|
86
|
+
TEST_ASSERT_EQUAL_INT32(expected, actual)
|
87
|
+
TEST_ASSERT_EQUAL_INT64(expected, actual)
|
88
|
+
|
89
|
+
Compare two integers for equality and display errors as signed integers. A cast will be performed
|
90
|
+
to your natural integer size so often this can just be used. When you need to specify the exact size,
|
91
|
+
like when comparing arrays, you can use a specific version:
|
92
|
+
|
93
|
+
TEST_ASSERT_EQUAL_UINT(expected, actual)
|
94
|
+
TEST_ASSERT_EQUAL_UINT8(expected, actual)
|
95
|
+
TEST_ASSERT_EQUAL_UINT16(expected, actual)
|
96
|
+
TEST_ASSERT_EQUAL_UINT32(expected, actual)
|
97
|
+
TEST_ASSERT_EQUAL_UINT64(expected, actual)
|
98
|
+
|
99
|
+
Compare two integers for equality and display errors as unsigned integers. Like INT, there are
|
100
|
+
variants for different sizes also.
|
101
|
+
|
102
|
+
TEST_ASSERT_EQUAL_HEX(expected, actual)
|
103
|
+
TEST_ASSERT_EQUAL_HEX8(expected, actual)
|
104
|
+
TEST_ASSERT_EQUAL_HEX16(expected, actual)
|
105
|
+
TEST_ASSERT_EQUAL_HEX32(expected, actual)
|
106
|
+
TEST_ASSERT_EQUAL_HEX64(expected, actual)
|
107
|
+
|
108
|
+
Compares two integers for equality and display errors as hexadecimal. Like the other integer comparisons,
|
109
|
+
you can specify the size... here the size will also effect how many nibbles are shown (for example, `HEX16`
|
110
|
+
will show 4 nibbles).
|
111
|
+
|
112
|
+
TEST_ASSERT_EQUAL(expected, actual)
|
113
|
+
|
114
|
+
Another way of calling TEST_ASSERT_EQUAL_INT
|
115
|
+
|
116
|
+
TEST_ASSERT_INT_WITHIN(delta, expected, actual)
|
117
|
+
|
118
|
+
Asserts that the actual value is within plus or minus delta of the expected value. This also comes in
|
119
|
+
size specific variants.
|
120
|
+
|
121
|
+
|
122
|
+
TEST_ASSERT_GREATER_THAN(threshold, actual)
|
123
|
+
|
124
|
+
Asserts that the actual value is greater than the threshold. This also comes in size specific variants.
|
125
|
+
|
126
|
+
|
127
|
+
TEST_ASSERT_LESS_THAN(threshold, actual)
|
128
|
+
|
129
|
+
Asserts that the actual value is less than the threshold. This also comes in size specific variants.
|
130
|
+
|
131
|
+
|
132
|
+
Arrays
|
133
|
+
------
|
134
|
+
|
135
|
+
_ARRAY
|
136
|
+
|
137
|
+
You can append `_ARRAY` to any of these macros to make an array comparison of that type. Here you will
|
138
|
+
need to care a bit more about the actual size of the value being checked. You will also specify an
|
139
|
+
additional argument which is the number of elements to compare. For example:
|
140
|
+
|
141
|
+
TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, elements)
|
142
|
+
|
143
|
+
_EACH_EQUAL
|
144
|
+
|
145
|
+
Another array comparison option is to check that EVERY element of an array is equal to a single expected
|
146
|
+
value. You do this by specifying the EACH_EQUAL macro. For example:
|
147
|
+
|
148
|
+
TEST_ASSERT_EACH_EQUAL_INT32(expected, actual, elements)
|
149
|
+
|
150
|
+
Numerical Assertions: Bitwise
|
151
|
+
-----------------------------
|
152
|
+
|
153
|
+
TEST_ASSERT_BITS(mask, expected, actual)
|
154
|
+
|
155
|
+
Use an integer mask to specify which bits should be compared between two other integers. High bits in the mask are compared, low bits ignored.
|
156
|
+
|
157
|
+
TEST_ASSERT_BITS_HIGH(mask, actual)
|
158
|
+
|
159
|
+
Use an integer mask to specify which bits should be inspected to determine if they are all set high. High bits in the mask are compared, low bits ignored.
|
160
|
+
|
161
|
+
TEST_ASSERT_BITS_LOW(mask, actual)
|
162
|
+
|
163
|
+
Use an integer mask to specify which bits should be inspected to determine if they are all set low. High bits in the mask are compared, low bits ignored.
|
164
|
+
|
165
|
+
TEST_ASSERT_BIT_HIGH(bit, actual)
|
166
|
+
|
167
|
+
Test a single bit and verify that it is high. The bit is specified 0-31 for a 32-bit integer.
|
168
|
+
|
169
|
+
TEST_ASSERT_BIT_LOW(bit, actual)
|
170
|
+
|
171
|
+
Test a single bit and verify that it is low. The bit is specified 0-31 for a 32-bit integer.
|
172
|
+
|
173
|
+
Numerical Assertions: Floats
|
174
|
+
----------------------------
|
175
|
+
|
176
|
+
TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual)
|
177
|
+
|
178
|
+
Asserts that the actual value is within plus or minus delta of the expected value.
|
179
|
+
|
180
|
+
TEST_ASSERT_EQUAL_FLOAT(expected, actual)
|
181
|
+
TEST_ASSERT_EQUAL_DOUBLE(expected, actual)
|
182
|
+
|
183
|
+
Asserts that two floating point values are "equal" within a small % delta of the expected value.
|
184
|
+
|
185
|
+
String Assertions
|
186
|
+
-----------------
|
187
|
+
|
188
|
+
TEST_ASSERT_EQUAL_STRING(expected, actual)
|
189
|
+
|
190
|
+
Compare two null-terminate strings. Fail if any character is different or if the lengths are different.
|
191
|
+
|
192
|
+
TEST_ASSERT_EQUAL_STRING_LEN(expected, actual, len)
|
193
|
+
|
194
|
+
Compare two strings. Fail if any character is different, stop comparing after len characters.
|
195
|
+
|
196
|
+
TEST_ASSERT_EQUAL_STRING_MESSAGE(expected, actual, message)
|
197
|
+
|
198
|
+
Compare two null-terminate strings. Fail if any character is different or if the lengths are different. Output a custom message on failure.
|
199
|
+
|
200
|
+
TEST_ASSERT_EQUAL_STRING_LEN_MESSAGE(expected, actual, len, message)
|
201
|
+
|
202
|
+
Compare two strings. Fail if any character is different, stop comparing after len characters. Output a custom message on failure.
|
203
|
+
|
204
|
+
Pointer Assertions
|
205
|
+
------------------
|
206
|
+
|
207
|
+
Most pointer operations can be performed by simply using the integer comparisons above. However, a couple of special cases are added for clarity.
|
208
|
+
|
209
|
+
TEST_ASSERT_NULL(pointer)
|
210
|
+
|
211
|
+
Fails if the pointer is not equal to NULL
|
212
|
+
|
213
|
+
TEST_ASSERT_NOT_NULL(pointer)
|
214
|
+
|
215
|
+
Fails if the pointer is equal to NULL
|
216
|
+
|
217
|
+
Memory Assertions
|
218
|
+
-----------------
|
219
|
+
|
220
|
+
TEST_ASSERT_EQUAL_MEMORY(expected, actual, len)
|
221
|
+
|
222
|
+
Compare two blocks of memory. This is a good generic assertion for types that can't be coerced into acting like
|
223
|
+
standard types... but since it's a memory compare, you have to be careful that your data types are packed.
|
224
|
+
|
225
|
+
_MESSAGE
|
226
|
+
--------
|
227
|
+
|
228
|
+
you can append _MESSAGE to any of the macros to make them take an additional argument. This argument
|
229
|
+
is a string that will be printed at the end of the failure strings. This is useful for specifying more
|
230
|
+
information about the problem.
|
231
|
+
|
@@ -0,0 +1,118 @@
|
|
1
|
+
# ==========================================
|
2
|
+
# Unity Project - A Test Framework 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
|
+
if RUBY_PLATFORM =~ /(win|w)32$/
|
8
|
+
begin
|
9
|
+
require 'Win32API'
|
10
|
+
rescue LoadError
|
11
|
+
puts 'ERROR! "Win32API" library not found'
|
12
|
+
puts '"Win32API" is required for colour on a windows machine'
|
13
|
+
puts ' try => "gem install Win32API" on the command line'
|
14
|
+
puts
|
15
|
+
end
|
16
|
+
# puts
|
17
|
+
# puts 'Windows Environment Detected...'
|
18
|
+
# puts 'Win32API Library Found.'
|
19
|
+
# puts
|
20
|
+
end
|
21
|
+
|
22
|
+
class ColourCommandLine
|
23
|
+
def initialize
|
24
|
+
return unless RUBY_PLATFORM =~ /(win|w)32$/
|
25
|
+
get_std_handle = Win32API.new('kernel32', 'GetStdHandle', ['L'], 'L')
|
26
|
+
@set_console_txt_attrb =
|
27
|
+
Win32API.new('kernel32', 'SetConsoleTextAttribute', %w(L N), 'I')
|
28
|
+
@hout = get_std_handle.call(-11)
|
29
|
+
end
|
30
|
+
|
31
|
+
def change_to(new_colour)
|
32
|
+
if RUBY_PLATFORM =~ /(win|w)32$/
|
33
|
+
@set_console_txt_attrb.call(@hout, win32_colour(new_colour))
|
34
|
+
else
|
35
|
+
"\033[30;#{posix_colour(new_colour)};22m"
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def win32_colour(colour)
|
40
|
+
case colour
|
41
|
+
when :black then 0
|
42
|
+
when :dark_blue then 1
|
43
|
+
when :dark_green then 2
|
44
|
+
when :dark_cyan then 3
|
45
|
+
when :dark_red then 4
|
46
|
+
when :dark_purple then 5
|
47
|
+
when :dark_yellow, :narrative then 6
|
48
|
+
when :default_white, :default, :dark_white then 7
|
49
|
+
when :silver then 8
|
50
|
+
when :blue then 9
|
51
|
+
when :green, :success then 10
|
52
|
+
when :cyan, :output then 11
|
53
|
+
when :red, :failure then 12
|
54
|
+
when :purple then 13
|
55
|
+
when :yellow then 14
|
56
|
+
when :white then 15
|
57
|
+
else
|
58
|
+
0
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def posix_colour(colour)
|
63
|
+
# ANSI Escape Codes - Foreground colors
|
64
|
+
# | Code | Color |
|
65
|
+
# | 39 | Default foreground color |
|
66
|
+
# | 30 | Black |
|
67
|
+
# | 31 | Red |
|
68
|
+
# | 32 | Green |
|
69
|
+
# | 33 | Yellow |
|
70
|
+
# | 34 | Blue |
|
71
|
+
# | 35 | Magenta |
|
72
|
+
# | 36 | Cyan |
|
73
|
+
# | 37 | Light gray |
|
74
|
+
# | 90 | Dark gray |
|
75
|
+
# | 91 | Light red |
|
76
|
+
# | 92 | Light green |
|
77
|
+
# | 93 | Light yellow |
|
78
|
+
# | 94 | Light blue |
|
79
|
+
# | 95 | Light magenta |
|
80
|
+
# | 96 | Light cyan |
|
81
|
+
# | 97 | White |
|
82
|
+
|
83
|
+
case colour
|
84
|
+
when :black then 30
|
85
|
+
when :red, :failure then 31
|
86
|
+
when :green, :success then 32
|
87
|
+
when :yellow then 33
|
88
|
+
when :blue, :narrative then 34
|
89
|
+
when :purple, :magenta then 35
|
90
|
+
when :cyan, :output then 36
|
91
|
+
when :white, :default_white then 37
|
92
|
+
when :default then 39
|
93
|
+
else
|
94
|
+
39
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
def out_c(mode, colour, str)
|
99
|
+
case RUBY_PLATFORM
|
100
|
+
when /(win|w)32$/
|
101
|
+
change_to(colour)
|
102
|
+
$stdout.puts str if mode == :puts
|
103
|
+
$stdout.print str if mode == :print
|
104
|
+
change_to(:default_white)
|
105
|
+
else
|
106
|
+
$stdout.puts("#{change_to(colour)}#{str}\033[0m") if mode == :puts
|
107
|
+
$stdout.print("#{change_to(colour)}#{str}\033[0m") if mode == :print
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end # ColourCommandLine
|
111
|
+
|
112
|
+
def colour_puts(role, str)
|
113
|
+
ColourCommandLine.new.out_c(:puts, role, str)
|
114
|
+
end
|
115
|
+
|
116
|
+
def colour_print(role, str)
|
117
|
+
ColourCommandLine.new.out_c(:print, role, str)
|
118
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# ==========================================
|
2
|
+
# Unity Project - A Test Framework 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
|
+
require "#{File.expand_path(File.dirname(__FILE__))}/colour_prompt"
|
8
|
+
|
9
|
+
$colour_output = true
|
10
|
+
|
11
|
+
def report(message)
|
12
|
+
if !$colour_output
|
13
|
+
$stdout.puts(message)
|
14
|
+
else
|
15
|
+
message = message.join('\n') if message.class == Array
|
16
|
+
message.each_line do |line|
|
17
|
+
line.chomp!
|
18
|
+
colour = case line
|
19
|
+
when /(?:total\s+)?tests:?\s+(\d+)\s+(?:total\s+)?failures:?\s+\d+\s+Ignored:?/i
|
20
|
+
Regexp.last_match(1).to_i.zero? ? :green : :red
|
21
|
+
when /PASS/
|
22
|
+
:green
|
23
|
+
when /^OK$/
|
24
|
+
:green
|
25
|
+
when /(?:FAIL|ERROR)/
|
26
|
+
:red
|
27
|
+
when /IGNORE/
|
28
|
+
:yellow
|
29
|
+
when /^(?:Creating|Compiling|Linking)/
|
30
|
+
:white
|
31
|
+
else
|
32
|
+
:silver
|
33
|
+
end
|
34
|
+
colour_puts(colour, line)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
$stdout.flush
|
38
|
+
$stderr.flush
|
39
|
+
end
|