hammer_cli 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/bin/hammer +6 -0
- data/config/cli_config.template.yml +3 -0
- data/doc/creating_commands.md +19 -0
- data/doc/i18n.md +15 -0
- data/doc/installation.md +1 -1
- data/doc/release_notes.md +61 -0
- data/lib/hammer_cli/abstract.rb +10 -37
- data/lib/hammer_cli/apipie/command.rb +10 -6
- data/lib/hammer_cli/apipie/option_builder.rb +26 -13
- data/lib/hammer_cli/apipie/options.rb +12 -10
- data/lib/hammer_cli/completer.rb +2 -2
- data/lib/hammer_cli/exception_handler.rb +5 -4
- data/lib/hammer_cli/exceptions.rb +1 -0
- data/lib/hammer_cli/i18n.rb +41 -0
- data/lib/hammer_cli/main.rb +2 -2
- data/lib/hammer_cli/options/normalizers.rb +31 -0
- data/lib/hammer_cli/output/adapter/abstract.rb +5 -1
- data/lib/hammer_cli/output/adapter/csv.rb +140 -12
- data/lib/hammer_cli/shell.rb +6 -6
- data/lib/hammer_cli/subcommand.rb +82 -0
- data/lib/hammer_cli/utils.rb +13 -0
- data/lib/hammer_cli/version.rb +1 -1
- data/locale/Makefile +11 -10
- data/locale/README.md +18 -0
- data/locale/en/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/en/hammer-cli.po +227 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/en_GB/hammer-cli.po +274 -0
- data/locale/es/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/es/hammer-cli.po +275 -0
- data/locale/fr/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/fr/hammer-cli.po +276 -0
- data/locale/hammer-cli.pot +158 -93
- data/test/reports/TEST-Fields-ContainerField-display-.xml +7 -0
- data/test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml +15 -0
- data/test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml +15 -0
- data/test/reports/TEST-Fields-ContainerField.xml +7 -0
- data/test/reports/TEST-Fields-Field-display-.xml +7 -0
- data/test/reports/TEST-Fields-Field-display-blank-is-allowed.xml +11 -0
- data/test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml +11 -0
- data/test/reports/TEST-Fields-Field-hide-blank-.xml +11 -0
- data/test/reports/TEST-Fields-Field-parameters.xml +9 -0
- data/test/reports/TEST-Fields-Field.xml +13 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml +15 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml +13 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-logging.xml +21 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml +11 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-options.xml +11 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-output.xml +19 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml +11 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml +13 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml +11 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml +7 -0
- data/test/reports/TEST-HammerCLI-AbstractCommand.xml +11 -0
- data/test/reports/TEST-HammerCLI-Apipie-Command-options.xml +11 -0
- data/test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml +9 -0
- data/test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml +19 -0
- data/test/reports/TEST-HammerCLI-Apipie-Command.xml +9 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml +13 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml +15 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml +11 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml +9 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml +11 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml +15 -0
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml +7 -0
- data/test/reports/TEST-HammerCLI-Completer-command-completion.xml +29 -0
- data/test/reports/TEST-HammerCLI-Completer-option-value-completion.xml +17 -0
- data/test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml +19 -0
- data/test/reports/TEST-HammerCLI-Completer.xml +7 -0
- data/test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml +25 -0
- data/test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml +29 -0
- data/test/reports/TEST-HammerCLI-CompleterLine.xml +7 -0
- data/test/reports/TEST-HammerCLI-CompleterWord-complete-.xml +23 -0
- data/test/reports/TEST-HammerCLI-CompleterWord-quote.xml +15 -0
- data/test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml +13 -0
- data/test/reports/TEST-HammerCLI-CompleterWord.xml +7 -0
- data/test/reports/TEST-HammerCLI-Connection.xml +21 -0
- data/test/reports/TEST-HammerCLI-ExceptionHandler.xml +21 -0
- data/test/reports/TEST-HammerCLI-I18n.xml +11 -0
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml +11 -0
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml +11 -0
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml +9 -0
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context.xml +7 -0
- data/test/reports/TEST-HammerCLI-MainCommand.xml +7 -0
- data/test/reports/TEST-HammerCLI-Modules-find-by-name.xml +13 -0
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml +13 -0
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml +13 -0
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml +15 -0
- data/test/reports/TEST-HammerCLI-Modules-load-a-module.xml +7 -0
- data/test/reports/TEST-HammerCLI-Modules-load-all-modules.xml +9 -0
- data/test/reports/TEST-HammerCLI-Modules-names.xml +13 -0
- data/test/reports/TEST-HammerCLI-Modules.xml +7 -0
- data/test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml +7 -0
- data/test/reports/TEST-HammerCLI-OptionBuilderContainer.xml +11 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml +9 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml +31 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml +17 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml +15 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml +21 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml +15 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml +17 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers-list.xml +15 -0
- data/test/reports/TEST-HammerCLI-Options-Normalizers.xml +7 -0
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml +9 -0
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml +11 -0
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml +17 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml +27 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-Definition-empty-.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Definition.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-collection.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-fields.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-label.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Dsl.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-FieldFilter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml +11 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml +13 -0
- data/test/reports/TEST-HammerCLI-Output-Output-adapters.xml +17 -0
- data/test/reports/TEST-HammerCLI-Output-Output-data.xml +15 -0
- data/test/reports/TEST-HammerCLI-Output-Output-formatters.xml +9 -0
- data/test/reports/TEST-HammerCLI-Output-Output-messages.xml +19 -0
- data/test/reports/TEST-HammerCLI-Output-Output.xml +7 -0
- data/test/reports/TEST-HammerCLI-Output-RecordCollection.xml +13 -0
- data/test/reports/TEST-HammerCLI-Settings-load-from-paths.xml +15 -0
- data/test/reports/TEST-HammerCLI-Settings.xml +25 -0
- data/test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml +11 -0
- data/test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml +15 -0
- data/test/reports/TEST-HammerCLI-ShellHistory.xml +7 -0
- data/test/reports/TEST-MiniTest-Spec.xml +7 -0
- data/test/reports/TEST-String-camelize.xml +11 -0
- data/test/reports/TEST-String-formatting.xml +17 -0
- data/test/reports/TEST-String-indent.xml +11 -0
- data/test/reports/TEST-String-interactive-.xml +13 -0
- data/test/reports/TEST-String.xml +7 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml +13 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml +7 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml +13 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml +7 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml +9 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml +13 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml +13 -0
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml +7 -0
- data/test/reports/TEST-constraints.xml +7 -0
- data/test/unit/abstract_test.rb +15 -11
- data/test/unit/apipie/command_test.rb +29 -1
- data/test/unit/apipie/option_builder_test.rb +22 -0
- data/test/unit/fixtures/apipie/documented.json +44 -0
- data/test/unit/options/normalizers_test.rb +35 -0
- data/test/unit/output/adapter/csv_test.rb +104 -4
- data/test/unit/utils_test.rb +58 -0
- metadata +292 -6
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::I18n" tests="2" time="0.000800348" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
+
<testcase name="test_0002_skips registering domains that are not available" time="0.000318734" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0001_registers available domains at gettext" time="0.000303375" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::MainCommand::loading context::password" tests="2" time="0.001452791" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
+
<testcase name="test_0001_should prioritize parameter" time="0.000871465" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should prioritize parameter" time="0.000406156" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::MainCommand::loading context::username" tests="2" time="0.001070002" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
+
<testcase name="test_0001_should prioritize parameter" time="0.000485506" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should prioritize parameter 2" time="0.000408575" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::MainCommand::loading context::verbose" tests="1" time="0.000634118" failures="0" errors="0" skipped="0" assertions="1">
|
3
|
+
<testcase name="test_0001_stores into context" time="0.000473927" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Modules::find by name" tests="3" time="0.000500333" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
+
<testcase name="test_0001_must return nil if the module does not exist" time="0.000148306" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_must must find the module" time="9.2178e-05" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0003_must find the module with capital CLI in it's name" time="7.5642e-05" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Modules::load a module::module not found" tests="3" time="0.002275562" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
+
<testcase name="test_0003_must return false when load fails" time="0.000903382" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_must log an error if the load fails" time="0.000573514" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0001_must log an error if the load! fails" time="0.000613563" assertions="2">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Modules::load a module::module runtime exception" tests="3" time="0.002033201" failures="0" errors="0" skipped="0" assertions="8">
|
3
|
+
<testcase name="test_0002_must log an error if the load fails" time="0.000609038" assertions="3">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0001_must log an error if the load! fails" time="0.000609581" assertions="2">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0003_must return false when load fails" time="0.000601264" assertions="3">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Modules::load a module::success" tests="4" time="0.001758857" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
+
<testcase name="test_0001_must require a module" time="0.000457135" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_must log module's name and version" time="0.000403093" assertions="2">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0004_must return true when load! succeeds" time="0.000350713" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0003_must return true when load succeeds" time="0.000343274" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<system-out>
|
12
|
+
</system-out>
|
13
|
+
<system-err>
|
14
|
+
</system-err>
|
15
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Modules::load all modules" tests="1" time="0.000569077" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
+
<testcase name="test_0001_must call load for each module" time="0.000378001" assertions="2">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Modules::names" tests="3" time="0.000531474" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
+
<testcase name="test_0001_must return list of modules" time="0.000143005" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_must return empty array by default" time="8.3332e-05" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0003_must work with old modules config" time="0.000113264" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::OptionBuilderContainer" tests="2" time="0.000633393" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
+
<testcase name="test_0001_collects options from contained builders" time="0.000240595" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_passes build parameters from contained builders" time="0.000194387" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::Normalizers::abstract" tests="1" time="0.000253015" failures="0" errors="0" skipped="0" assertions="1">
|
3
|
+
<testcase name="test_0001_should raise exception on format" time="9.301e-05" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::Normalizers::bool" tests="12" time="0.000919283" failures="0" errors="0" skipped="0" assertions="20">
|
3
|
+
<testcase name="test_0007_should return false on f" time="0.000112739" assertions="2">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0009_should return false on n" time="5.8519e-05" assertions="2">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0004_should return true on y" time="5.0497e-05" assertions="2">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0001_should return true on true" time="4.9458e-05" assertions="2">
|
10
|
+
</testcase>
|
11
|
+
<testcase name="test_0002_should return true on t" time="4.6859e-05" assertions="2">
|
12
|
+
</testcase>
|
13
|
+
<testcase name="test_0010_should return false on 0" time="4.2037e-05" assertions="1">
|
14
|
+
</testcase>
|
15
|
+
<testcase name="test_0012_should raise exception on other values" time="6.0655e-05" assertions="1">
|
16
|
+
</testcase>
|
17
|
+
<testcase name="test_0006_should return false on false" time="4.7529e-05" assertions="2">
|
18
|
+
</testcase>
|
19
|
+
<testcase name="test_0008_should return false on no" time="4.6603e-05" assertions="2">
|
20
|
+
</testcase>
|
21
|
+
<testcase name="test_0003_should return true on yes" time="4.6822e-05" assertions="2">
|
22
|
+
</testcase>
|
23
|
+
<testcase name="test_0011_should raise exception on nil" time="6.4342e-05" assertions="1">
|
24
|
+
</testcase>
|
25
|
+
<testcase name="test_0005_should return true on 1" time="5.4586e-05" assertions="1">
|
26
|
+
</testcase>
|
27
|
+
<system-out>
|
28
|
+
</system-out>
|
29
|
+
<system-err>
|
30
|
+
</system-err>
|
31
|
+
</testsuite>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::Normalizers::datetime" tests="5" time="0.001920779" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
+
<testcase name="test_0001_should raise argument error when the value is nil" time="9.7358e-05" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0005_should accept and parse YYYY/MM/DD HH:MM:SS" time="0.000981991" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0004_should accept and parse YYYY-MM-DD HH:MM:SS" time="0.000103806" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0002_should raise argument error when the value is not a date" time="0.000192408" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<testcase name="test_0003_should accept and parse iso8601" time="0.000342706" assertions="1">
|
12
|
+
</testcase>
|
13
|
+
<system-out>
|
14
|
+
</system-out>
|
15
|
+
<system-err>
|
16
|
+
</system-err>
|
17
|
+
</testsuite>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::Normalizers::enum" tests="4" time="0.00043588" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
+
<testcase name="test_0001_should return return value when in the list" time="8.0928e-05" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should rise argument error when the value is nil" time="7.1243e-05" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0003_should rise argument error when the value is not in the list" time="5.349e-05" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0004_should list allowed values in description" time="4.5973e-05" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<system-out>
|
12
|
+
</system-out>
|
13
|
+
<system-err>
|
14
|
+
</system-err>
|
15
|
+
</testsuite>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::Normalizers::enumlist" tests="7" time="0.000603916" failures="0" errors="0" skipped="0" assertions="8">
|
3
|
+
<testcase name="test_0002_should raise argument error when any of the values isn't in the list" time="0.000124048" assertions="2">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0003_should remove duplicate values" time="5.6632e-05" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0001_should return array of values when the values are allowed" time="4.8733e-05" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0006_should return empty array on empty string" time="4.2973e-05" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<testcase name="test_0007_should list allowed values in description" time="4.6412e-05" assertions="1">
|
12
|
+
</testcase>
|
13
|
+
<testcase name="test_0005_should return empty array on nil" time="4.0454e-05" assertions="1">
|
14
|
+
</testcase>
|
15
|
+
<testcase name="test_0004_should not change order of the values" time="4.6263e-05" assertions="1">
|
16
|
+
</testcase>
|
17
|
+
<system-out>
|
18
|
+
</system-out>
|
19
|
+
<system-err>
|
20
|
+
</system-err>
|
21
|
+
</testsuite>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::Normalizers::json input" tests="4" time="0.000587797" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
+
<testcase name="test_0003_should return a hash on valid json string" time="0.000110815" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should raise exception on invalid json file contents" time="0.000105156" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0001_should return a hash on valid json file" time="0.000117277" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0004_should raise exception on invalid json string" time="7.2411e-05" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<system-out>
|
12
|
+
</system-out>
|
13
|
+
<system-err>
|
14
|
+
</system-err>
|
15
|
+
</testsuite>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::Normalizers::key_value_list" tests="5" time="0.000501368" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
+
<testcase name="test_0003_should parse a string" time="9.3859e-05" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0004_should parse a comma separated string" time="6.4111e-05" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0005_should parse a comma separated string 2" time="6.4639e-05" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0002_should return empty array on empty string" time="4.2745e-05" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<testcase name="test_0001_should return empty array on nil" time="3.9525e-05" assertions="1">
|
12
|
+
</testcase>
|
13
|
+
<system-out>
|
14
|
+
</system-out>
|
15
|
+
<system-err>
|
16
|
+
</system-err>
|
17
|
+
</testsuite>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::Normalizers::list" tests="4" time="0.000425501" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
+
<testcase name="test_0001_should return empty array on nil" time="9.0196e-05" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should return empty array on empty string" time="4.7754e-05" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0003_should parse a string" time="4.3796e-05" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0004_should parse a comma separated string" time="4.1718e-05" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<system-out>
|
12
|
+
</system-out>
|
13
|
+
<system-err>
|
14
|
+
</system-err>
|
15
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::OptionDefinition::context" tests="1" time="0.000755624" failures="0" errors="0" skipped="0" assertions="1">
|
3
|
+
<testcase name="test_0001_should save option to context" time="0.000583284" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Options::OptionDefinition::formatters" tests="2" time="0.000345511" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
+
<testcase name="test_0002_should use formatter as a conversion block" time="0.000112646" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0001_should use formatter to format a default value" time="6.3393e-05" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::Abstract::error messages" tests="4" time="0.001247685" failures="0" errors="0" skipped="0" assertions="9">
|
3
|
+
<testcase name="test_0004_should print formatted message with parameters" time="0.000367432" assertions="2">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0003_should print string details of error to stderr" time="0.000234009" assertions="2">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0001_should print error message to stderr" time="0.000232757" assertions="3">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0002_should print list details of error to stderr" time="0.000221498" assertions="2">
|
10
|
+
</testcase>
|
11
|
+
<system-out>
|
12
|
+
</system-out>
|
13
|
+
<system-err>
|
14
|
+
</system-err>
|
15
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::Abstract::messages" tests="2" time="0.000717306" failures="0" errors="0" skipped="0" assertions="6">
|
3
|
+
<testcase name="test_0001_should print message to stdout" time="0.000291653" assertions="3">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should print formatted message with parameters" time="0.000250974" assertions="3">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::Abstract::test data_for_field" tests="4" time="0.000462768" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
+
<testcase name="test_0003_returns nil, if the data does not exist for the field" time="0.000119489" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_returns nil if the record is not a hash" time="6.5318e-05" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0004_returns the value, if data exists for the field" time="4.6135e-05" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0001_returns nil if the record is nil" time="4.3095e-05" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<system-out>
|
12
|
+
</system-out>
|
13
|
+
<system-err>
|
14
|
+
</system-err>
|
15
|
+
</testsuite>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::Abstract" tests="5" time="0.001875442" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
+
<testcase name="test_0001_should have tags" time="8.5609e-05" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0004_should put serializers first" time="0.000800429" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0005_should raise not implemented on print_collection" time="8.4393e-05" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0002_should filter formatters with incompatible tags" time="0.00026059" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<testcase name="test_0003_should keep compatible formatters" time="0.000450116" assertions="1">
|
12
|
+
</testcase>
|
13
|
+
<system-out>
|
14
|
+
</system-out>
|
15
|
+
<system-err>
|
16
|
+
</system-err>
|
17
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::Base::print_collection::show ids" tests="1" time="0.000520405" failures="0" errors="0" skipped="0" assertions="1">
|
3
|
+
<testcase name="test_0001_shows ids if it's required in the context" time="0.000350487" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::Base::print_collection" tests="10" time="0.003472686" failures="0" errors="0" skipped="0" assertions="10">
|
3
|
+
<testcase name="test_0009_skips blank values" time="0.000352332" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0003_aligns multiple fields" time="0.00035921" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0010_should print key -> value" time="0.00033891" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0006_should print collection" time="0.000334085" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<testcase name="test_0007_should print unnumbered collection" time="0.000372625" assertions="1">
|
12
|
+
</testcase>
|
13
|
+
<testcase name="test_0004_should field with nested data" time="0.000273375" assertions="1">
|
14
|
+
</testcase>
|
15
|
+
<testcase name="test_0008_hides ids by default" time="0.000274323" assertions="1">
|
16
|
+
</testcase>
|
17
|
+
<testcase name="test_0005_should print labeled fields" time="0.000367995" assertions="1">
|
18
|
+
</testcase>
|
19
|
+
<testcase name="test_0002_doesn't print label when it's nil" time="0.000273541" assertions="1">
|
20
|
+
</testcase>
|
21
|
+
<testcase name="test_0001_should print one field" time="0.000284066" assertions="1">
|
22
|
+
</testcase>
|
23
|
+
<system-out>
|
24
|
+
</system-out>
|
25
|
+
<system-err>
|
26
|
+
</system-err>
|
27
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection::formatters" tests="2" time="0.001033824" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
+
<testcase name="test_0002_should not replace nil with empty string before it applies formatters" time="0.000416477" assertions="2">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0001_should apply formatters" time="0.000426118" assertions="2">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection::handle fields with collections" tests="3" time="0.001664601" failures="0" errors="0" skipped="0" assertions="10">
|
3
|
+
<testcase name="test_0001_should print collection column name" time="0.000619312" assertions="3">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0003_should handle empty collection" time="0.000327641" assertions="3">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0002_should print collection data" time="0.000510544" assertions="4">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection::handle fields with containers" tests="2" time="0.001160963" failures="0" errors="0" skipped="0" assertions="8">
|
3
|
+
<testcase name="test_0002_should print data" time="0.000523402" assertions="4">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0001_should print column names" time="0.000455281" assertions="4">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection::handle ids" tests="2" time="0.001007739" failures="0" errors="0" skipped="0" assertions="6">
|
3
|
+
<testcase name="test_0001_should ommit column of type Id by default" time="0.000464742" assertions="4">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should print column of type Id when --show-ids is set" time="0.000366296" assertions="2">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection" tests="2" time="0.001008951" failures="0" errors="0" skipped="0" assertions="8">
|
3
|
+
<testcase name="test_0001_should print column name" time="0.000454847" assertions="4">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should print field value" time="0.000351916" assertions="4">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::CSValues::print message" tests="2" time="0.000902934" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
+
<testcase name="test_0001_shoud print a message" time="0.000388101" assertions="2">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_should print message, id and name of created/updated record" time="0.000330587" assertions="2">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="HammerCLI::Output::Adapter::Table::print_collection::column width" tests="4" time="0.00247111" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
+
<testcase name="test_0001_truncates string when it exceeds maximum width" time="0.000565188" assertions="1">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="test_0002_truncates string when it exceeds width" time="0.000551994" assertions="1">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="test_0003_sets certain width" time="0.000561764" assertions="1">
|
8
|
+
</testcase>
|
9
|
+
<testcase name="test_0004_gives preference to width over maximal width" time="0.000574865" assertions="1">
|
10
|
+
</testcase>
|
11
|
+
<system-out>
|
12
|
+
</system-out>
|
13
|
+
<system-err>
|
14
|
+
</system-err>
|
15
|
+
</testsuite>
|