hammer_cli 0.19.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/hammer-complete +28 -0
- data/config/cli_config.template.yml +2 -0
- data/config/hammer.completion +5 -0
- data/doc/commands_extension.md +12 -0
- data/doc/creating_commands.md +100 -0
- data/doc/installation.md +47 -4
- data/doc/release_notes.md +32 -5
- data/lib/hammer_cli.rb +1 -0
- data/lib/hammer_cli/abstract.rb +61 -4
- data/lib/hammer_cli/apipie/api_connection.rb +5 -1
- data/lib/hammer_cli/apipie/command.rb +3 -2
- data/lib/hammer_cli/apipie/option_builder.rb +15 -13
- data/lib/hammer_cli/apipie/option_definition.rb +9 -7
- data/lib/hammer_cli/bash.rb +2 -0
- data/lib/hammer_cli/bash/completion.rb +159 -0
- data/lib/hammer_cli/bash/prebuild_command.rb +21 -0
- data/lib/hammer_cli/command_extensions.rb +21 -1
- data/lib/hammer_cli/connection.rb +4 -0
- data/lib/hammer_cli/exception_handler.rb +11 -2
- data/lib/hammer_cli/full_help.rb +8 -1
- data/lib/hammer_cli/help/builder.rb +29 -3
- data/lib/hammer_cli/logger_watch.rb +1 -1
- data/lib/hammer_cli/main.rb +5 -3
- data/lib/hammer_cli/options/normalizers.rb +7 -3
- data/lib/hammer_cli/options/option_definition.rb +26 -6
- data/lib/hammer_cli/options/option_family.rb +114 -0
- data/lib/hammer_cli/options/predefined.rb +1 -1
- data/lib/hammer_cli/output.rb +1 -1
- data/lib/hammer_cli/output/adapter/abstract.rb +1 -5
- data/lib/hammer_cli/output/adapter/base.rb +1 -1
- data/lib/hammer_cli/output/adapter/csv.rb +3 -2
- data/lib/hammer_cli/output/adapter/json.rb +14 -3
- data/lib/hammer_cli/output/adapter/silent.rb +1 -1
- data/lib/hammer_cli/output/adapter/table.rb +30 -80
- data/lib/hammer_cli/output/adapter/yaml.rb +6 -3
- data/lib/hammer_cli/output/definition.rb +11 -56
- data/lib/hammer_cli/output/generators.rb +1 -0
- data/lib/hammer_cli/output/generators/table.rb +121 -0
- data/lib/hammer_cli/output/output.rb +2 -4
- data/lib/hammer_cli/settings.rb +2 -1
- data/lib/hammer_cli/subcommand.rb +25 -1
- data/lib/hammer_cli/testing/command_assertions.rb +2 -2
- data/lib/hammer_cli/utils.rb +22 -0
- data/lib/hammer_cli/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/de/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/en/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/es/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/fr/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/it/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ja/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ko/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/ru/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/hammer-cli.mo +0 -0
- data/man/hammer.1.gz +0 -0
- data/test/unit/abstract_test.rb +23 -2
- data/test/unit/apipie/api_connection_test.rb +1 -0
- data/test/unit/apipie/option_builder_test.rb +8 -0
- data/test/unit/bash_test.rb +138 -0
- data/test/unit/command_extensions_test.rb +67 -49
- data/test/unit/exception_handler_test.rb +44 -0
- data/test/unit/help/builder_test.rb +22 -0
- data/test/unit/options/option_family_test.rb +48 -0
- data/test/unit/output/adapter/base_test.rb +58 -0
- data/test/unit/output/adapter/csv_test.rb +63 -1
- data/test/unit/output/adapter/json_test.rb +61 -0
- data/test/unit/output/adapter/table_test.rb +70 -1
- data/test/unit/output/adapter/yaml_test.rb +59 -0
- data/test/unit/output/definition_test.rb +7 -7
- data/test/unit/output/output_test.rb +3 -3
- metadata +83 -345
- data/hammer_cli_complete +0 -13
- data/test/reports/TEST-Fields-ContainerField-display-.xml +0 -7
- data/test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml +0 -15
- data/test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml +0 -15
- data/test/reports/TEST-Fields-ContainerField.xml +0 -7
- data/test/reports/TEST-Fields-Field-display-.xml +0 -7
- data/test/reports/TEST-Fields-Field-display-blank-is-allowed.xml +0 -11
- data/test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml +0 -11
- data/test/reports/TEST-Fields-Field-hide-blank-.xml +0 -11
- data/test/reports/TEST-Fields-Field-parameters.xml +0 -9
- data/test/reports/TEST-Fields-Field.xml +0 -13
- data/test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml +0 -15
- data/test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml +0 -13
- data/test/reports/TEST-HammerCLI-AbstractCommand-logging.xml +0 -21
- data/test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml +0 -11
- data/test/reports/TEST-HammerCLI-AbstractCommand-options.xml +0 -11
- data/test/reports/TEST-HammerCLI-AbstractCommand-output.xml +0 -19
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml +0 -11
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml +0 -13
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml +0 -11
- data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml +0 -7
- data/test/reports/TEST-HammerCLI-AbstractCommand.xml +0 -11
- data/test/reports/TEST-HammerCLI-Apipie-Command-options.xml +0 -11
- data/test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml +0 -9
- data/test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml +0 -19
- data/test/reports/TEST-HammerCLI-Apipie-Command.xml +0 -9
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml +0 -13
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml +0 -15
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml +0 -11
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml +0 -9
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml +0 -11
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml +0 -15
- data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml +0 -7
- data/test/reports/TEST-HammerCLI-Completer-command-completion.xml +0 -29
- data/test/reports/TEST-HammerCLI-Completer-option-value-completion.xml +0 -17
- data/test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml +0 -19
- data/test/reports/TEST-HammerCLI-Completer.xml +0 -7
- data/test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml +0 -25
- data/test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml +0 -29
- data/test/reports/TEST-HammerCLI-CompleterLine.xml +0 -7
- data/test/reports/TEST-HammerCLI-CompleterWord-complete-.xml +0 -23
- data/test/reports/TEST-HammerCLI-CompleterWord-quote.xml +0 -15
- data/test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml +0 -13
- data/test/reports/TEST-HammerCLI-CompleterWord.xml +0 -7
- data/test/reports/TEST-HammerCLI-Connection.xml +0 -21
- data/test/reports/TEST-HammerCLI-ExceptionHandler.xml +0 -21
- data/test/reports/TEST-HammerCLI-I18n.xml +0 -11
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml +0 -11
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml +0 -11
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml +0 -9
- data/test/reports/TEST-HammerCLI-MainCommand-loading-context.xml +0 -7
- data/test/reports/TEST-HammerCLI-MainCommand.xml +0 -7
- data/test/reports/TEST-HammerCLI-Modules-find-by-name.xml +0 -13
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml +0 -13
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml +0 -13
- data/test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml +0 -15
- data/test/reports/TEST-HammerCLI-Modules-load-a-module.xml +0 -7
- data/test/reports/TEST-HammerCLI-Modules-load-all-modules.xml +0 -9
- data/test/reports/TEST-HammerCLI-Modules-names.xml +0 -13
- data/test/reports/TEST-HammerCLI-Modules.xml +0 -7
- data/test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml +0 -7
- data/test/reports/TEST-HammerCLI-OptionBuilderContainer.xml +0 -11
- data/test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml +0 -9
- data/test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml +0 -31
- data/test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml +0 -17
- data/test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml +0 -15
- data/test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml +0 -21
- data/test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml +0 -15
- data/test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml +0 -17
- data/test/reports/TEST-HammerCLI-Options-Normalizers-list.xml +0 -15
- data/test/reports/TEST-HammerCLI-Options-Normalizers.xml +0 -7
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml +0 -9
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml +0 -11
- data/test/reports/TEST-HammerCLI-Options-OptionDefinition.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml +0 -17
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml +0 -27
- data/test/reports/TEST-HammerCLI-Output-Adapter-Base.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Adapter-Table.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-Definition-empty-.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Definition.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Dsl-collection.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Dsl-fields.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Dsl-label.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Dsl.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-FieldFilter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml +0 -11
- data/test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml +0 -13
- data/test/reports/TEST-HammerCLI-Output-Output-adapters.xml +0 -17
- data/test/reports/TEST-HammerCLI-Output-Output-data.xml +0 -15
- data/test/reports/TEST-HammerCLI-Output-Output-formatters.xml +0 -9
- data/test/reports/TEST-HammerCLI-Output-Output-messages.xml +0 -19
- data/test/reports/TEST-HammerCLI-Output-Output.xml +0 -7
- data/test/reports/TEST-HammerCLI-Output-RecordCollection.xml +0 -13
- data/test/reports/TEST-HammerCLI-Settings-load-from-paths.xml +0 -15
- data/test/reports/TEST-HammerCLI-Settings.xml +0 -25
- data/test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml +0 -11
- data/test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml +0 -15
- data/test/reports/TEST-HammerCLI-ShellHistory.xml +0 -7
- data/test/reports/TEST-MiniTest-Spec.xml +0 -7
- data/test/reports/TEST-String-camelize.xml +0 -11
- data/test/reports/TEST-String-formatting.xml +0 -17
- data/test/reports/TEST-String-indent.xml +0 -11
- data/test/reports/TEST-String-interactive-.xml +0 -13
- data/test/reports/TEST-String.xml +0 -7
- data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml +0 -13
- data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml +0 -7
- data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml +0 -13
- data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml +0 -7
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml +0 -9
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml +0 -13
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml +0 -13
- data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml +0 -7
- data/test/reports/TEST-constraints.xml +0 -7
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Adapter::Table::print_collection" tests="2" time="0.001247105" failures="0" errors="0" skipped="0" assertions="6">
|
3
|
-
<testcase name="test_0001_should print column name " time="0.000552378" assertions="3">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should print field value" time="0.000470992" assertions="3">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Definition::empty?" tests="2" time="0.000342718" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
-
<testcase name="test_0002_returns false for definition with fields" time="8.793e-05" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_returns true for empty definition" time="4.5147e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Definition" tests="2" time="0.000403606" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0001_should be able to add field" time="0.000109946" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_append should allow to add data from another definition" time="6.2187e-05" assertions="2">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Dsl::collection" tests="3" time="0.000484859" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0003_sets correct path to subfields" time="0.000132862" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_allows to define subfields with dsl" time="8.7726e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_creates field of type Collection" time="5.9207e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Dsl::custom fields" tests="2" time="0.000357896" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
-
<testcase name="test_0001_it creates field of a desired type" time="0.000123079" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_passes all options to the field instance" time="5.6043e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,15 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Dsl::fields" tests="4" time="0.000523115" failures="0" errors="0" skipped="0" assertions="6">
|
3
|
-
<testcase name="test_0002_should create field of desired type" time="0.000121347" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_should create Field as default field type" time="5.6673e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_should store all field details" time="6.8223e-05" assertions="3">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0004_can define multiple fields" time="5.0459e-05" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<system-out>
|
12
|
-
</system-out>
|
13
|
-
<system-err>
|
14
|
-
</system-err>
|
15
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Dsl::label" tests="3" time="0.000493603" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0003_sets correct path to subfields" time="0.00014981" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_allows to define subfields with dsl" time="8.6046e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_creates field of type Label" time="6.1688e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Dsl::path definition" tests="3" time="0.000418823" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
-
<testcase name="test_0003_from can be nested" time="0.000100516" assertions="2">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_path can be nil to handle the parent structure" time="5.6098e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_from appends to path" time="6.3831e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,9 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Dsl" tests="1" time="0.000279375" failures="0" errors="0" skipped="0" assertions="1">
|
3
|
-
<testcase name="test_0001_should be empty after initialization" time="0.000114708" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<system-out>
|
6
|
-
</system-out>
|
7
|
-
<system-err>
|
8
|
-
</system-err>
|
9
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::FieldFilter" tests="3" time="0.000408181" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0002_filters fields by class" time="9.5542e-05" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_lets all fields go by default" time="5.988e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_filters fields by superclass" time="5.3417e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::BooleanFormatter" tests="2" time="0.000326909" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
-
<testcase name="test_0001_says yes for true like objects" time="8.2173e-05" assertions="2">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_says no for false and nil and empty string" time="5.8887e-05" assertions="3">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,9 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::ColorFormatter" tests="1" time="0.000268288" failures="0" errors="0" skipped="0" assertions="1">
|
3
|
-
<testcase name="test_0001_colorizes the value" time="8.8793e-05" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<system-out>
|
6
|
-
</system-out>
|
7
|
-
<system-err>
|
8
|
-
</system-err>
|
9
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::DateFormatter" tests="2" time="0.000375058" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
-
<testcase name="test_0001_formats the date" time="0.000128822" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_returns empty string on wrong value" time="6.7009e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::FieldFormatter" tests="3" time="0.000620169" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
-
<testcase name="test_0003_should know if it has matching tags" time="0.000334795" assertions="2">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_has tags" time="5.8395e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_has format method" time="4.3034e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::FormatterContainer" tests="3" time="0.000351543" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0003_can add formatter to instance" time="7.6278e-05" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_accepts formatter" time="5.7379e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0002_has format method" time="3.5748e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::FormatterLibrary" tests="2" time="0.000312338" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
-
<testcase name="test_0001_accepts formatter" time="8.0831e-05" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_can add formatter to instance" time="4.4535e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::KeyValueFormatter" tests="3" time="0.000349305" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0002_returns empty string when the input is nil" time="7.1121e-05" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_serializes the value" time="5.0924e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_returns empty string value when the input is not a hash" time="3.7348e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::ListFormatter" tests="3" time="0.000348473" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0002_returns empty string when the input is nil" time="7.1874e-05" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_serializes the value" time="5.3042e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_returns string value when the input is not a list" time="3.5575e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Formatters::LongTextFormatter" tests="3" time="0.000562593" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0001_prepends new line" time="0.000137138" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0003_enables to switch indentation off" time="4.2838e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0002_accepts nil" time="6.0941e-05" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Output::adapters" tests="5" time="0.001059704" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
-
<testcase name="test_0002_should return required default adapter" time="0.00015289" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0003_should use adapter form context" time="7.4609e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0004_should prioritize adapter from the context" time="0.000100567" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0005_should use base adapter if the requested default was not found" time="0.00047733" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0001_should register adapter" time="5.583e-05" assertions="1">
|
12
|
-
</testcase>
|
13
|
-
<system-out>
|
14
|
-
</system-out>
|
15
|
-
<system-err>
|
16
|
-
</system-err>
|
17
|
-
</testsuite>
|
@@ -1,15 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Output::data" tests="4" time="0.001649414" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
-
<testcase name="test_0004_prints recordset" time="0.000419794" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_prints single resource as collection" time="0.000317483" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_prints single resource" time="0.000328909" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0003_prints array of resources" time="0.000357613" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<system-out>
|
12
|
-
</system-out>
|
13
|
-
<system-err>
|
14
|
-
</system-err>
|
15
|
-
</testsuite>
|
@@ -1,9 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Output::formatters" tests="1" time="0.000287264" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
-
<testcase name="test_0001_should register formatter" time="0.000116158" assertions="2">
|
4
|
-
</testcase>
|
5
|
-
<system-out>
|
6
|
-
</system-out>
|
7
|
-
<system-err>
|
8
|
-
</system-err>
|
9
|
-
</testsuite>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::Output::messages" tests="6" time="0.002233059" failures="0" errors="0" skipped="0" assertions="6">
|
3
|
-
<testcase name="test_0004_prints error message via adapter with arguments" time="0.00035277" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0005_prints error message with details via adapter" time="0.000359567" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_prints info message via adapter" time="0.000336722" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0003_prints error message via adapter" time="0.000313239" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0002_prints info message via adapter with arguments" time="0.000310076" assertions="1">
|
12
|
-
</testcase>
|
13
|
-
<testcase name="test_0006_prints error message from exception via adapter" time="0.000339844" assertions="1">
|
14
|
-
</testcase>
|
15
|
-
<system-out>
|
16
|
-
</system-out>
|
17
|
-
<system-err>
|
18
|
-
</system-err>
|
19
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Output::RecordCollection" tests="3" time="0.000482859" failures="0" errors="0" skipped="0" assertions="12">
|
3
|
-
<testcase name="test_0001_should keep records and its meta data" time="0.000143524" assertions="9">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should wrap the data into list" time="6.5332e-05" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_sould accept MetaData as option" time="7.748e-05" assertions="2">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,15 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Settings::load from paths" tests="4" time="0.002082013" failures="0" errors="0" skipped="0" assertions="8">
|
3
|
-
<testcase name="test_0004_loads settings from dir" time="0.001015615" assertions="4">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_clears path history on clear invokation" time="0.000203806" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_store config path history" time="0.000329641" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0001_loads settings from file" time="0.000327472" assertions="2">
|
10
|
-
</testcase>
|
11
|
-
<system-out>
|
12
|
-
</system-out>
|
13
|
-
<system-err>
|
14
|
-
</system-err>
|
15
|
-
</testsuite>
|
@@ -1,25 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::Settings" tests="9" time="0.000795377" failures="0" errors="0" skipped="0" assertions="19">
|
3
|
-
<testcase name="test_0001_returns nil when nothing is loaded" time="0.000118872" assertions="2">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0006_loads all settings" time="6.3553e-05" assertions="2">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0004_takes both strings and symbols" time="5.5445e-05" assertions="2">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0005_finds nested settings" time="5.7768e-05" assertions="3">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0003_returns correct value" time="5.8495e-05" assertions="1">
|
12
|
-
</testcase>
|
13
|
-
<testcase name="test_0007_dumps all settings" time="5.6246e-05" assertions="1">
|
14
|
-
</testcase>
|
15
|
-
<testcase name="test_0009_clear wipes all settings" time="4.9296e-05" assertions="2">
|
16
|
-
</testcase>
|
17
|
-
<testcase name="test_0008_merges settings on second load" time="7.0802e-05" assertions="5">
|
18
|
-
</testcase>
|
19
|
-
<testcase name="test_0002_returns nil on unknown key" time="4.4578e-05" assertions="1">
|
20
|
-
</testcase>
|
21
|
-
<system-out>
|
22
|
-
</system-out>
|
23
|
-
<system-err>
|
24
|
-
</system-err>
|
25
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::ShellHistory::loading old history" tests="2" time="0.000591805" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
-
<testcase name="test_0001_skips loading if the file does not exist" time="0.000228018" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_preseeds readline's history" time="0.000185292" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,15 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLI::ShellHistory::saving history" tests="4" time="0.000956469" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
-
<testcase name="test_0001_creates history file if it does not exist" time="0.00022899" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0003_appends to readline's history" time="0.000185984" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0002_appends history to the given file" time="0.000169983" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0004_doesn't save exit command" time="0.000154798" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<system-out>
|
12
|
-
</system-out>
|
13
|
-
<system-err>
|
14
|
-
</system-err>
|
15
|
-
</testsuite>
|