facter 2.5.7 → 3.9.6.cfacter.20180606
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ext/facter/Makefile.erb +31 -0
- data/ext/facter/cpp-hocon/CMakeLists.txt +67 -0
- data/ext/facter/cpp-hocon/CONTRIBUTING.md +9 -0
- data/ext/facter/cpp-hocon/LICENSE +17 -0
- data/ext/facter/cpp-hocon/MAINTAINERS +33 -0
- data/ext/facter/cpp-hocon/README.md +74 -0
- data/ext/facter/cpp-hocon/acceptance/Gemfile +18 -0
- data/ext/facter/cpp-hocon/acceptance/Rakefile +7 -0
- data/ext/{debian/lintian-overrides → facter/cpp-hocon/acceptance/tests/fake.rb} +0 -0
- data/ext/facter/cpp-hocon/appveyor.yml +41 -0
- data/ext/facter/cpp-hocon/lib/CMakeLists.txt +94 -0
- data/ext/facter/cpp-hocon/lib/Doxyfile.in +2312 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config.hpp +734 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_exception.hpp +184 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_include_context.hpp +51 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_includer.hpp +53 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_includer_file.hpp +30 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_list.hpp +51 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_mergeable.hpp +72 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_object.hpp +81 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_origin.hpp +98 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_parse_options.hpp +139 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_parseable.hpp +47 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_render_options.hpp +128 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_resolve_options.hpp +83 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_syntax.hpp +24 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_value.hpp +267 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/config_value_factory.hpp +48 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/functional_list.hpp +318 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/parser/config_document.hpp +95 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/parser/config_document_factory.hpp +39 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/parser/config_node.hpp +32 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/path.hpp +60 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/program_options.hpp +84 -0
- data/ext/facter/cpp-hocon/lib/inc/hocon/types.hpp +57 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/config_document_parser.hpp +83 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/config_parser.hpp +55 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/config_util.hpp +17 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/container.hpp +28 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/default_transformer.hpp +12 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/full_includer.hpp +13 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/abstract_config_node.hpp +16 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/abstract_config_node_value.hpp +12 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_array.hpp +17 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_comment.hpp +14 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_complex_value.hpp +25 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_concatenation.hpp +16 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_field.hpp +29 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_include.hpp +26 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_object.hpp +45 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_path.hpp +25 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_root.hpp +24 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_simple_value.hpp +21 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/nodes/config_node_single_token.hpp +20 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/parseable.hpp +128 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/path_builder.hpp +20 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/path_parser.hpp +55 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/replaceable_merge_stack.hpp +14 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/resolve_context.hpp +53 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/resolve_result.hpp +21 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/resolve_source.hpp +55 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/simple_config_document.hpp +28 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/simple_config_origin.hpp +67 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/simple_include_context.hpp +22 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/simple_includer.hpp +79 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/substitution_expression.hpp +28 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/token.hpp +45 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/tokenizer.hpp +143 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/tokens.hpp +135 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/unmergeable.hpp +20 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_boolean.hpp +26 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_concatenation.hpp +59 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_delayed_merge.hpp +53 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_delayed_merge_object.hpp +57 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_double.hpp +28 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_int.hpp +25 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_long.hpp +28 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_null.hpp +33 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_number.hpp +38 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_reference.hpp +38 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/config_string.hpp +32 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/simple_config_list.hpp +75 -0
- data/ext/facter/cpp-hocon/lib/inc/internal/values/simple_config_object.hpp +107 -0
- data/ext/facter/cpp-hocon/lib/namespaces.dox.in +6 -0
- data/ext/facter/cpp-hocon/lib/src/config.cc +573 -0
- data/ext/facter/cpp-hocon/lib/src/config_document_factory.cc +24 -0
- data/ext/facter/cpp-hocon/lib/src/config_document_parser.cc +620 -0
- data/ext/facter/cpp-hocon/lib/src/config_parse_options.cc +101 -0
- data/ext/facter/cpp-hocon/lib/src/config_parser.cc +399 -0
- data/ext/facter/cpp-hocon/lib/src/config_render_options.cc +44 -0
- data/ext/facter/cpp-hocon/lib/src/config_resolve_options.cc +24 -0
- data/ext/facter/cpp-hocon/lib/src/config_util.cc +95 -0
- data/ext/facter/cpp-hocon/lib/src/config_value_factory.cc +68 -0
- data/ext/facter/cpp-hocon/lib/src/default_transformer.cc +94 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/abstract_config_node.cc +19 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_array.cc +13 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_comment.cc +15 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_complex_value.cc +50 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_concatenation.cc +14 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_field.cc +80 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_include.cc +38 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_object.cc +318 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_path.cc +47 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_root.cc +70 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_simple_value.cc +50 -0
- data/ext/facter/cpp-hocon/lib/src/nodes/config_node_single_token.cc +18 -0
- data/ext/facter/cpp-hocon/lib/src/parseable.cc +325 -0
- data/ext/facter/cpp-hocon/lib/src/path.cc +219 -0
- data/ext/facter/cpp-hocon/lib/src/path_builder.cc +38 -0
- data/ext/facter/cpp-hocon/lib/src/path_parser.cc +253 -0
- data/ext/facter/cpp-hocon/lib/src/resolve_context.cc +139 -0
- data/ext/facter/cpp-hocon/lib/src/resolve_source.cc +216 -0
- data/ext/facter/cpp-hocon/lib/src/simple_config_document.cc +69 -0
- data/ext/facter/cpp-hocon/lib/src/simple_config_origin.cc +246 -0
- data/ext/facter/cpp-hocon/lib/src/simple_include_context.cc +18 -0
- data/ext/facter/cpp-hocon/lib/src/simple_includer.cc +186 -0
- data/ext/facter/cpp-hocon/lib/src/substitution_expression.cc +35 -0
- data/ext/facter/cpp-hocon/lib/src/token.cc +52 -0
- data/ext/facter/cpp-hocon/lib/src/tokenizer.cc +568 -0
- data/ext/facter/cpp-hocon/lib/src/tokens.cc +257 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_boolean.cc +34 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_concatenation.cc +260 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_delayed_merge.cc +223 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_delayed_merge_object.cc +180 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_double.cc +35 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_int.cc +35 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_long.cc +35 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_null.cc +35 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_number.cc +78 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_object.cc +97 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_reference.cc +85 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_string.cc +47 -0
- data/ext/facter/cpp-hocon/lib/src/values/config_value.cc +289 -0
- data/ext/facter/cpp-hocon/lib/src/values/simple_config_list.cc +219 -0
- data/ext/facter/cpp-hocon/lib/src/values/simple_config_object.cc +515 -0
- data/ext/facter/cpp-hocon/lib/tests/CMakeLists.txt +42 -0
- data/ext/facter/cpp-hocon/lib/tests/concatenation_test.cc +401 -0
- data/ext/facter/cpp-hocon/lib/tests/conf_parser_test.cc +715 -0
- data/ext/facter/cpp-hocon/lib/tests/config_document_parser_test.cc +208 -0
- data/ext/facter/cpp-hocon/lib/tests/config_document_tests.cc +110 -0
- data/ext/facter/cpp-hocon/lib/tests/config_node_test.cc +338 -0
- data/ext/facter/cpp-hocon/lib/tests/config_substitution_test.cc +897 -0
- data/ext/facter/cpp-hocon/lib/tests/config_test.cc +151 -0
- data/ext/facter/cpp-hocon/lib/tests/config_value_factory_test.cc +60 -0
- data/ext/facter/cpp-hocon/lib/tests/config_value_test.cc +111 -0
- data/ext/facter/cpp-hocon/lib/tests/fixtures.hpp.in +3 -0
- data/ext/facter/cpp-hocon/lib/tests/fixtures/test01.conf +91 -0
- data/ext/facter/cpp-hocon/lib/tests/fixtures/test01.json +4 -0
- data/ext/facter/cpp-hocon/lib/tests/main.cc +8 -0
- data/ext/facter/cpp-hocon/lib/tests/path_test.cc +129 -0
- data/ext/facter/cpp-hocon/lib/tests/program_options.cc +63 -0
- data/ext/facter/cpp-hocon/lib/tests/test.conf +1 -0
- data/ext/facter/cpp-hocon/lib/tests/test_utils.cc +452 -0
- data/ext/facter/cpp-hocon/lib/tests/test_utils.hpp +139 -0
- data/ext/facter/cpp-hocon/lib/tests/token_test.cc +108 -0
- data/ext/facter/cpp-hocon/lib/tests/tokenizer_test.cc +694 -0
- data/ext/facter/cpp-hocon/lib/version.h.in +28 -0
- data/ext/facter/cpp-hocon/locales/CMakeLists.txt +4 -0
- data/ext/facter/cpp-hocon/locales/cpp-hocon.pot +767 -0
- data/ext/facter/extconf.rb +22 -0
- data/ext/facter/facter/CMakeLists.txt +183 -0
- data/ext/facter/facter/CONTRIBUTING.md +99 -0
- data/ext/facter/facter/Extensibility.md +133 -0
- data/ext/facter/facter/LICENSE +17 -0
- data/ext/facter/facter/MAINTAINERS +28 -0
- data/ext/facter/facter/README.md +295 -0
- data/ext/facter/facter/Rakefile +42 -0
- data/ext/facter/facter/acceptance/Gemfile +22 -0
- data/ext/facter/facter/acceptance/Rakefile +2 -0
- data/ext/facter/facter/acceptance/bin/ci-bootstrap-from-artifacts.sh +55 -0
- data/ext/facter/facter/acceptance/config/aio/options.rb +3 -0
- data/ext/facter/facter/acceptance/config/git/options.rb +3 -0
- data/ext/facter/facter/acceptance/config/nodes/aix-53-power.yaml +7 -0
- data/ext/facter/facter/acceptance/config/nodes/aix-61-power.yaml +7 -0
- data/ext/facter/facter/acceptance/config/nodes/aix-71-power.yaml +7 -0
- data/ext/facter/facter/acceptance/config/nodes/huaweios-6-powerpc.yaml +7 -0
- data/ext/facter/facter/acceptance/config/nodes/solaris-10-sparc.yaml +9 -0
- data/ext/facter/facter/acceptance/config/nodes/solaris-11-sparc.yaml +9 -0
- data/ext/facter/facter/acceptance/lib/facter/acceptance/base_fact_utils.rb +563 -0
- data/ext/facter/facter/acceptance/lib/facter/acceptance/user_fact_utils.rb +132 -0
- data/ext/facter/facter/acceptance/lib/helper.rb +1 -0
- data/ext/facter/facter/acceptance/lib/puppet/acceptance/common_utils.rb +10 -0
- data/ext/facter/facter/acceptance/lib/puppet/acceptance/git_utils.rb +19 -0
- data/ext/facter/facter/acceptance/lib/puppet/acceptance/install_utils.rb +58 -0
- data/ext/facter/facter/acceptance/tests/custom_facts/custom_fact_with_10001_weight_overrides_external_fact.rb +30 -0
- data/ext/facter/facter/acceptance/tests/custom_facts/having_multiple_facts_in_one_file.rb +40 -0
- data/ext/facter/facter/acceptance/tests/custom_facts/using_win32ole_should_not_hang.rb +33 -0
- data/ext/facter/facter/acceptance/tests/external_facts/env_var_overrides_external_fact.rb +46 -0
- data/ext/facter/facter/acceptance/tests/external_facts/external_dir_overrides_default_external_fact.rb +34 -0
- data/ext/facter/facter/acceptance/tests/external_facts/external_fact_overrides_custom_fact.rb +29 -0
- data/ext/facter/facter/acceptance/tests/external_facts/external_fact_overrides_custom_fact_with_10000_weight_or_less.rb +30 -0
- data/ext/facter/facter/acceptance/tests/external_facts/external_fact_overrides_custom_fact_with_confine.rb +35 -0
- data/ext/facter/facter/acceptance/tests/external_facts/external_fact_stderr_messages_output_to_stderr.rb +49 -0
- data/ext/facter/facter/acceptance/tests/external_facts/external_facts_only_run_once.rb +43 -0
- data/ext/facter/facter/acceptance/tests/external_facts/fact_directory_precedence.rb +109 -0
- data/ext/facter/facter/acceptance/tests/external_facts/non_root_users_default_external_fact_directory.rb +142 -0
- data/ext/facter/facter/acceptance/tests/external_facts/root_uses_default_external_fact_dir.rb +34 -0
- data/ext/facter/facter/acceptance/tests/external_facts/structured_executable_facts.rb +139 -0
- data/ext/facter/facter/acceptance/tests/facter_returns_success_on_non_existent_fact.rb +9 -0
- data/ext/facter/facter/acceptance/tests/facts/dmi.rb +51 -0
- data/ext/facter/facter/acceptance/tests/facts/facterversion.rb +11 -0
- data/ext/facter/facter/acceptance/tests/facts/identity.rb +52 -0
- data/ext/facter/facter/acceptance/tests/facts/networking_facts.rb +76 -0
- data/ext/facter/facter/acceptance/tests/facts/non_root_users_without_errors.rb +32 -0
- data/ext/facter/facter/acceptance/tests/facts/operatingsystem_detection_after_clear_on_ubuntu.rb +26 -0
- data/ext/facter/facter/acceptance/tests/facts/os_processors_and_kernel.rb +20 -0
- data/ext/facter/facter/acceptance/tests/facts/partitions.rb +37 -0
- data/ext/facter/facter/acceptance/tests/facts/productname.rb +15 -0
- data/ext/facter/facter/acceptance/tests/facts/ruby.rb +59 -0
- data/ext/facter/facter/acceptance/tests/facts/validate_file_system_size_bytes.rb +37 -0
- data/ext/facter/facter/acceptance/tests/facts/verify_tmpfs_file_system.rb +54 -0
- data/ext/facter/facter/acceptance/tests/load_libfacter.rb +66 -0
- data/ext/facter/facter/acceptance/tests/no_errors_on_stderr.rb +10 -0
- data/ext/facter/facter/acceptance/tests/options/color.rb +16 -0
- data/ext/facter/facter/acceptance/tests/options/config.rb +27 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/blocklist.rb +35 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/blocklist_from_puppet_facts.rb +40 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/custom_dir_overridden_by_cli_custom_dir.rb +56 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/custom_facts.rb +42 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/custom_facts_list.rb +56 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/debug.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/debug_override_config_file.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/default_file_location.rb +37 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/external_dir_conflicts_with_cli_no_external_facts.rb +37 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/external_dir_overridden_by_cli_external_dir.rb +40 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/external_facts.rb +37 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/external_facts_list.rb +43 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/load_from_ruby.rb +73 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/log_level.rb +35 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/no_custom_facts_and_custom_dir.rb +43 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/no_custom_facts_and_facterlib.rb +43 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/no_custom_facts_and_load_path.rb +49 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/no_external_facts.rb +38 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/no_external_facts_and_external_dir.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/no_ruby_disables_custom_facts.rb +52 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/no_ruby_disables_ruby_facts.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/trace.rb +48 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_cached_facts_clear_by_empty_ttls_cache_list.rb +71 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_cached_facts_creates_json_cache_file.rb +48 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_cached_facts_expire_facts_do_not_read_the_old_cached_value.rb +58 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_cached_facts_expire_facts_refresh_the_cached_value.rb +61 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_cached_facts_read_from_the_cached_value.rb +57 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_cached_facts_that_are_corrupt_are_refreshed.rb +53 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_cached_facts_that_are_empty_return_an_empty_value.rb +53 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_puppet_facts_creates_json_for_cached_facts.rb +45 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/ttls_puppet_facts_honors_cached_facts.rb +54 -0
- data/ext/facter/facter/acceptance/tests/options/config_file/verbose.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/custom_facts.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/custom_facts_facterlib.rb +33 -0
- data/ext/facter/facter/acceptance/tests/options/custom_facts_list.rb +48 -0
- data/ext/facter/facter/acceptance/tests/options/custom_facts_load_path.rb +42 -0
- data/ext/facter/facter/acceptance/tests/options/debug.rb +12 -0
- data/ext/facter/facter/acceptance/tests/options/external_facts.rb +28 -0
- data/ext/facter/facter/acceptance/tests/options/external_facts_list.rb +35 -0
- data/ext/facter/facter/acceptance/tests/options/help.rb +13 -0
- data/ext/facter/facter/acceptance/tests/options/json.rb +43 -0
- data/ext/facter/facter/acceptance/tests/options/list_block_groups.rb +16 -0
- data/ext/facter/facter/acceptance/tests/options/list_cache_groups.rb +16 -0
- data/ext/facter/facter/acceptance/tests/options/log_level.rb +13 -0
- data/ext/facter/facter/acceptance/tests/options/no_block.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/no_cache_should_not_cache_facts.rb +43 -0
- data/ext/facter/facter/acceptance/tests/options/no_cache_should_not_load_cached_facts.rb +58 -0
- data/ext/facter/facter/acceptance/tests/options/no_cache_should_not_refresh_cached_facts.rb +63 -0
- data/ext/facter/facter/acceptance/tests/options/no_color.rb +16 -0
- data/ext/facter/facter/acceptance/tests/options/no_custom_facts.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/no_custom_facts_and_custom_dir.rb +19 -0
- data/ext/facter/facter/acceptance/tests/options/no_custom_facts_and_facterlib.rb +34 -0
- data/ext/facter/facter/acceptance/tests/options/no_custom_facts_and_load_path.rb +43 -0
- data/ext/facter/facter/acceptance/tests/options/no_external_facts.rb +28 -0
- data/ext/facter/facter/acceptance/tests/options/no_external_facts_and_external_dir.rb +19 -0
- data/ext/facter/facter/acceptance/tests/options/no_ruby.rb +44 -0
- data/ext/facter/facter/acceptance/tests/options/puppet_facts.rb +35 -0
- data/ext/facter/facter/acceptance/tests/options/show_legacy.rb +18 -0
- data/ext/facter/facter/acceptance/tests/options/strict.rb +11 -0
- data/ext/facter/facter/acceptance/tests/options/trace.rb +36 -0
- data/ext/facter/facter/acceptance/tests/options/verbose.rb +12 -0
- data/ext/facter/facter/acceptance/tests/options/version.rb +12 -0
- data/ext/facter/facter/acceptance/tests/options/yaml.rb +43 -0
- data/ext/facter/facter/acceptance/tests/ticket_1123_facter_with_invalid_locale.rb +22 -0
- data/ext/facter/facter/acceptance/tests/ticket_1238_hostname_fqdn.rb +37 -0
- data/ext/facter/facter/appveyor.yml +43 -0
- data/ext/facter/facter/cmake/FindBLKID.cmake +6 -0
- data/ext/facter/facter/cmake/FindCPPHOCON.cmake +6 -0
- data/ext/facter/facter/cmake/FindDependency.cmake +54 -0
- data/ext/facter/facter/cmake/FindOPENSSL.cmake +10 -0
- data/ext/facter/facter/cmake/FindRuby.cmake +286 -0
- data/ext/facter/facter/cmake/FindWHEREAMI.cmake +6 -0
- data/ext/facter/facter/cmake/FindYAMLCPP.cmake +17 -0
- data/ext/facter/facter/contrib/dockerfiles/travis-cpp-builder/Dockerfile +56 -0
- data/ext/facter/facter/contrib/dockerfiles/travis-facter-builder/Dockerfile +23 -0
- data/ext/facter/facter/contrib/dockerfiles/travis-facter-coverity/Dockerfile +40 -0
- data/ext/facter/facter/contrib/dockerfiles/travis-facter-coverity/_coverity-submit.erb +12 -0
- data/ext/facter/facter/contrib/dockerfiles/travis-facter-coverity/fix_curl_command.patch +32 -0
- data/ext/facter/facter/exe/CMakeLists.txt +39 -0
- data/ext/facter/facter/exe/facter.cc +377 -0
- data/ext/facter/facter/ext/build_defaults.yaml +16 -0
- data/ext/facter/facter/ext/debian/changelog.erb +11 -0
- data/ext/{debian → facter/facter/ext/debian}/compat +0 -0
- data/ext/facter/facter/ext/debian/control +14 -0
- data/ext/facter/facter/ext/debian/copyright +19 -0
- data/ext/facter/facter/ext/debian/docs +2 -0
- data/ext/facter/facter/ext/debian/facter.install +4 -0
- data/ext/facter/facter/ext/debian/lintian-overrides +0 -0
- data/ext/facter/facter/ext/debian/rules +39 -0
- data/ext/{debian → facter/facter/ext/debian}/source/format +0 -0
- data/ext/facter/facter/ext/project_data.yaml +30 -0
- data/ext/facter/facter/ext/redhat/facter.spec.erb +113 -0
- data/ext/facter/facter/ext/windows/facter.bat +8 -0
- data/ext/facter/facter/ext/windows/facter_interactive.bat +6 -0
- data/ext/facter/facter/ext/windows/run_facter_interactive.bat +9 -0
- data/ext/facter/facter/factergo/example/main.go +17 -0
- data/ext/facter/facter/factergo/facter.go +42 -0
- data/ext/facter/facter/factergo/facter_test.go +25 -0
- data/ext/facter/facter/lib/CMakeLists.txt +408 -0
- data/ext/facter/facter/lib/Doxyfile +2313 -0
- data/ext/facter/facter/lib/Facter.java.in +110 -0
- data/ext/facter/facter/lib/Gemfile +11 -0
- data/ext/facter/facter/lib/Rakefile +8 -0
- data/ext/facter/facter/lib/docs/generate.rb +25 -0
- data/ext/facter/facter/lib/docs/namespaces.dox +129 -0
- data/ext/facter/facter/lib/docs/template.erb +43 -0
- data/ext/facter/facter/lib/facter.rb.in +45 -0
- data/ext/facter/facter/lib/gemspec.in +21 -0
- data/ext/facter/facter/lib/inc/facter/cwrapper.hpp +18 -0
- data/ext/facter/facter/lib/inc/facter/facts/array_value.hpp +125 -0
- data/ext/facter/facter/lib/inc/facter/facts/collection.hpp +339 -0
- data/ext/facter/facter/lib/inc/facter/facts/external/resolver.hpp +49 -0
- data/ext/facter/facter/lib/inc/facter/facts/fact.hpp +664 -0
- data/ext/facter/facter/lib/inc/facter/facts/map_value.hpp +127 -0
- data/ext/facter/facter/lib/inc/facter/facts/os.hpp +202 -0
- data/ext/facter/facter/lib/inc/facter/facts/os_family.hpp +58 -0
- data/ext/facter/facter/lib/inc/facter/facts/resolver.hpp +126 -0
- data/ext/facter/facter/lib/inc/facter/facts/scalar_value.hpp +152 -0
- data/ext/facter/facter/lib/inc/facter/facts/value.hpp +164 -0
- data/ext/facter/facter/lib/inc/facter/facts/vm.hpp +157 -0
- data/ext/facter/facter/lib/inc/facter/logging/logging.hpp +192 -0
- data/ext/facter/facter/lib/inc/facter/ruby/ruby.hpp +62 -0
- data/ext/facter/facter/lib/inc/facter/util/config.hpp +84 -0
- data/ext/facter/facter/lib/inc/facter/util/string.hpp +72 -0
- data/ext/facter/facter/lib/inc/internal/facts/aix/disk_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/aix/filesystem_resolver.hpp +41 -0
- data/ext/facter/facter/lib/inc/internal/facts/aix/kernel_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/aix/memory_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/aix/networking_resolver.hpp +56 -0
- data/ext/facter/facter/lib/inc/internal/facts/aix/operating_system_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/aix/processor_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/aix/serial_number_resolver.hpp +27 -0
- data/ext/facter/facter/lib/inc/internal/facts/bsd/filesystem_resolver.hpp +30 -0
- data/ext/facter/facter/lib/inc/internal/facts/bsd/networking_resolver.hpp +59 -0
- data/ext/facter/facter/lib/inc/internal/facts/bsd/uptime_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/cache.hpp +71 -0
- data/ext/facter/facter/lib/inc/internal/facts/external/execution_resolver.hpp +31 -0
- data/ext/facter/facter/lib/inc/internal/facts/external/json_resolver.hpp +31 -0
- data/ext/facter/facter/lib/inc/internal/facts/external/text_resolver.hpp +31 -0
- data/ext/facter/facter/lib/inc/internal/facts/external/windows/powershell_resolver.hpp +34 -0
- data/ext/facter/facter/lib/inc/internal/facts/external/yaml_resolver.hpp +31 -0
- data/ext/facter/facter/lib/inc/internal/facts/freebsd/dmi_resolver.hpp +28 -0
- data/ext/facter/facter/lib/inc/internal/facts/freebsd/memory_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/freebsd/networking_resolver.hpp +49 -0
- data/ext/facter/facter/lib/inc/internal/facts/freebsd/operating_system_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/freebsd/processor_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/freebsd/virtualization_resolver.hpp +27 -0
- data/ext/facter/facter/lib/inc/internal/facts/freebsd/zfs_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/freebsd/zpool_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/glib/load_average_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/disk_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/dmi_resolver.hpp +37 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/filesystem_resolver.hpp +40 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/kernel_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/memory_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/networking_resolver.hpp +85 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/operating_system_resolver.hpp +28 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/os_cisco.hpp +114 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/os_coreos.hpp +56 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/os_cumulus.hpp +56 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/os_linux.hpp +72 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/processor_resolver.hpp +60 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/release_file.hpp +124 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/uptime_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/linux/virtualization_resolver.hpp +50 -0
- data/ext/facter/facter/lib/inc/internal/facts/openbsd/dmi_resolver.hpp +28 -0
- data/ext/facter/facter/lib/inc/internal/facts/openbsd/memory_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/openbsd/networking_resolver.hpp +49 -0
- data/ext/facter/facter/lib/inc/internal/facts/openbsd/processor_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/openbsd/virtualization_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/osx/dmi_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/osx/memory_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/osx/networking_resolver.hpp +67 -0
- data/ext/facter/facter/lib/inc/internal/facts/osx/operating_system_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/osx/processor_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/osx/system_profiler_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/osx/virtualization_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/identity_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/kernel_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/networking_resolver.hpp +55 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/operating_system_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/processor_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/ssh_resolver.hpp +28 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/timezone_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/uptime_resolver.hpp +32 -0
- data/ext/facter/facter/lib/inc/internal/facts/posix/xen_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/augeas_resolver.hpp +35 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/disk_resolver.hpp +81 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/dmi_resolver.hpp +115 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/ec2_resolver.hpp +30 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/filesystem_resolver.hpp +166 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/gce_resolver.hpp +28 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/hypervisors_resolver.hpp +69 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/identity_resolver.hpp +73 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/kernel_resolver.hpp +66 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/ldom_resolver.hpp +64 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/load_average_resolver.hpp +37 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/memory_resolver.hpp +99 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/networking_resolver.hpp +156 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/operating_system_resolver.hpp +235 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/path_resolver.hpp +28 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/processor_resolver.hpp +80 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/ruby_resolver.hpp +56 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/ssh_resolver.hpp +99 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/system_profiler_resolver.hpp +127 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/timezone_resolver.hpp +36 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/uptime_resolver.hpp +36 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/virtualization_resolver.hpp +95 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/xen_resolver.hpp +55 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/zfs_resolver.hpp +59 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/zone_resolver.hpp +95 -0
- data/ext/facter/facter/lib/inc/internal/facts/resolvers/zpool_resolver.hpp +63 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/disk_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/dmi_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/filesystem_resolver.hpp +29 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/kernel_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/ldom_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/memory_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/networking_resolver.hpp +55 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/operating_system_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/processor_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/virtualization_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/zfs_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/zone_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/solaris/zpool_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/dmi_resolver.hpp +38 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/identity_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/kernel_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/memory_resolver.hpp +25 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/networking_resolver.hpp +74 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/operating_system_resolver.hpp +36 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/processor_resolver.hpp +36 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/timezone_resolver.hpp +24 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/uptime_resolver.hpp +32 -0
- data/ext/facter/facter/lib/inc/internal/facts/windows/virtualization_resolver.hpp +37 -0
- data/ext/facter/facter/lib/inc/internal/ruby/aggregate_resolution.hpp +77 -0
- data/ext/facter/facter/lib/inc/internal/ruby/chunk.hpp +83 -0
- data/ext/facter/facter/lib/inc/internal/ruby/confine.hpp +60 -0
- data/ext/facter/facter/lib/inc/internal/ruby/fact.hpp +108 -0
- data/ext/facter/facter/lib/inc/internal/ruby/module.hpp +165 -0
- data/ext/facter/facter/lib/inc/internal/ruby/resolution.hpp +126 -0
- data/ext/facter/facter/lib/inc/internal/ruby/ruby_value.hpp +119 -0
- data/ext/facter/facter/lib/inc/internal/ruby/simple_resolution.hpp +56 -0
- data/ext/facter/facter/lib/inc/internal/util/agent.hpp +29 -0
- data/ext/facter/facter/lib/inc/internal/util/aix/odm.hpp +373 -0
- data/ext/facter/facter/lib/inc/internal/util/aix/vmount.hpp +139 -0
- data/ext/facter/facter/lib/inc/internal/util/bsd/scoped_ifaddrs.hpp +33 -0
- data/ext/facter/facter/lib/inc/internal/util/posix/scoped_addrinfo.hpp +45 -0
- data/ext/facter/facter/lib/inc/internal/util/posix/scoped_bio.hpp +34 -0
- data/ext/facter/facter/lib/inc/internal/util/posix/scoped_descriptor.hpp +27 -0
- data/ext/facter/facter/lib/inc/internal/util/scoped_file.hpp +36 -0
- data/ext/facter/facter/lib/inc/internal/util/solaris/k_stat.hpp +176 -0
- data/ext/facter/facter/lib/inc/internal/util/solaris/scoped_kstat.hpp +45 -0
- data/ext/facter/facter/lib/inc/internal/util/versions.hpp +34 -0
- data/ext/facter/facter/lib/inc/internal/util/windows/wsa.hpp +92 -0
- data/ext/facter/facter/lib/inc/internal/util/yaml.hpp +25 -0
- data/ext/facter/facter/lib/schema/core_facts.pot +2017 -0
- data/ext/facter/facter/lib/schema/facter.yaml +1927 -0
- data/ext/facter/facter/lib/schema/translation_tooling.rb +67 -0
- data/ext/facter/facter/lib/spec/unit/facter_spec.rb +136 -0
- data/ext/facter/facter/lib/spec_helper.rb.in +27 -0
- data/ext/facter/facter/lib/src/cwrapper.cc +40 -0
- data/ext/facter/facter/lib/src/facts/aix/collection.cc +32 -0
- data/ext/facter/facter/lib/src/facts/aix/disk_resolver.cc +75 -0
- data/ext/facter/facter/lib/src/facts/aix/filesystem_resolver.cc +132 -0
- data/ext/facter/facter/lib/src/facts/aix/kernel_resolver.cc +27 -0
- data/ext/facter/facter/lib/src/facts/aix/memory_resolver.cc +48 -0
- data/ext/facter/facter/lib/src/facts/aix/networking_resolver.cc +250 -0
- data/ext/facter/facter/lib/src/facts/aix/operating_system_resolver.cc +61 -0
- data/ext/facter/facter/lib/src/facts/aix/processor_resolver.cc +106 -0
- data/ext/facter/facter/lib/src/facts/aix/serial_number_resolver.cc +43 -0
- data/ext/facter/facter/lib/src/facts/array_value.cc +111 -0
- data/ext/facter/facter/lib/src/facts/bsd/collection.cc +27 -0
- data/ext/facter/facter/lib/src/facts/bsd/filesystem_resolver.cc +92 -0
- data/ext/facter/facter/lib/src/facts/bsd/networking_resolver.cc +175 -0
- data/ext/facter/facter/lib/src/facts/bsd/uptime_resolver.cc +23 -0
- data/ext/facter/facter/lib/src/facts/cache.cc +117 -0
- data/ext/facter/facter/lib/src/facts/collection.cc +661 -0
- data/ext/facter/facter/lib/src/facts/external/execution_resolver.cc +89 -0
- data/ext/facter/facter/lib/src/facts/external/json_resolver.cc +219 -0
- data/ext/facter/facter/lib/src/facts/external/resolver.cc +12 -0
- data/ext/facter/facter/lib/src/facts/external/text_resolver.cc +45 -0
- data/ext/facter/facter/lib/src/facts/external/windows/powershell_resolver.cc +117 -0
- data/ext/facter/facter/lib/src/facts/external/yaml_resolver.cc +45 -0
- data/ext/facter/facter/lib/src/facts/freebsd/collection.cc +41 -0
- data/ext/facter/facter/lib/src/facts/freebsd/dmi_resolver.cc +39 -0
- data/ext/facter/facter/lib/src/facts/freebsd/memory_resolver.cc +76 -0
- data/ext/facter/facter/lib/src/facts/freebsd/networking_resolver.cc +64 -0
- data/ext/facter/facter/lib/src/facts/freebsd/operating_system_resolver.cc +17 -0
- data/ext/facter/facter/lib/src/facts/freebsd/processor_resolver.cc +63 -0
- data/ext/facter/facter/lib/src/facts/freebsd/virtualization_resolver.cc +44 -0
- data/ext/facter/facter/lib/src/facts/freebsd/zfs_resolver.cc +12 -0
- data/ext/facter/facter/lib/src/facts/freebsd/zpool_resolver.cc +12 -0
- data/ext/facter/facter/lib/src/facts/glib/load_average_resolver.cc +22 -0
- data/ext/facter/facter/lib/src/facts/linux/collection.cc +42 -0
- data/ext/facter/facter/lib/src/facts/linux/disk_resolver.cc +80 -0
- data/ext/facter/facter/lib/src/facts/linux/dmi_resolver.cc +208 -0
- data/ext/facter/facter/lib/src/facts/linux/filesystem_resolver.cc +282 -0
- data/ext/facter/facter/lib/src/facts/linux/kernel_resolver.cc +20 -0
- data/ext/facter/facter/lib/src/facts/linux/memory_resolver.cc +50 -0
- data/ext/facter/facter/lib/src/facts/linux/networking_resolver.cc +284 -0
- data/ext/facter/facter/lib/src/facts/linux/operating_system_resolver.cc +175 -0
- data/ext/facter/facter/lib/src/facts/linux/os_linux.cc +393 -0
- data/ext/facter/facter/lib/src/facts/linux/processor_resolver.cc +200 -0
- data/ext/facter/facter/lib/src/facts/linux/uptime_resolver.cc +15 -0
- data/ext/facter/facter/lib/src/facts/linux/virtualization_resolver.cc +282 -0
- data/ext/facter/facter/lib/src/facts/map_value.cc +119 -0
- data/ext/facter/facter/lib/src/facts/openbsd/collection.cc +37 -0
- data/ext/facter/facter/lib/src/facts/openbsd/dmi_resolver.cc +47 -0
- data/ext/facter/facter/lib/src/facts/openbsd/memory_resolver.cc +76 -0
- data/ext/facter/facter/lib/src/facts/openbsd/networking_resolver.cc +64 -0
- data/ext/facter/facter/lib/src/facts/openbsd/processor_resolver.cc +59 -0
- data/ext/facter/facter/lib/src/facts/openbsd/virtualization_resolver.cc +20 -0
- data/ext/facter/facter/lib/src/facts/osx/collection.cc +39 -0
- data/ext/facter/facter/lib/src/facts/osx/dmi_resolver.cc +32 -0
- data/ext/facter/facter/lib/src/facts/osx/memory_resolver.cc +60 -0
- data/ext/facter/facter/lib/src/facts/osx/networking_resolver.cc +80 -0
- data/ext/facter/facter/lib/src/facts/osx/operating_system_resolver.cc +49 -0
- data/ext/facter/facter/lib/src/facts/osx/processor_resolver.cc +55 -0
- data/ext/facter/facter/lib/src/facts/osx/system_profiler_resolver.cc +66 -0
- data/ext/facter/facter/lib/src/facts/osx/virtualization_resolver.cc +46 -0
- data/ext/facter/facter/lib/src/facts/posix/cache.cc +9 -0
- data/ext/facter/facter/lib/src/facts/posix/collection.cc +48 -0
- data/ext/facter/facter/lib/src/facts/posix/identity_resolver.cc +79 -0
- data/ext/facter/facter/lib/src/facts/posix/kernel_resolver.cc +25 -0
- data/ext/facter/facter/lib/src/facts/posix/networking_resolver.cc +137 -0
- data/ext/facter/facter/lib/src/facts/posix/operatingsystem_resolver.cc +29 -0
- data/ext/facter/facter/lib/src/facts/posix/processor_resolver.cc +22 -0
- data/ext/facter/facter/lib/src/facts/posix/ssh_resolver.cc +115 -0
- data/ext/facter/facter/lib/src/facts/posix/timezone_resolver.cc +26 -0
- data/ext/facter/facter/lib/src/facts/posix/uptime_resolver.cc +53 -0
- data/ext/facter/facter/lib/src/facts/posix/xen_resolver.cc +43 -0
- data/ext/facter/facter/lib/src/facts/resolver.cc +105 -0
- data/ext/facter/facter/lib/src/facts/resolvers/augeas_resolver.cc +56 -0
- data/ext/facter/facter/lib/src/facts/resolvers/disk_resolver.cc +69 -0
- data/ext/facter/facter/lib/src/facts/resolvers/dmi_resolver.cc +160 -0
- data/ext/facter/facter/lib/src/facts/resolvers/ec2_resolver.cc +174 -0
- data/ext/facter/facter/lib/src/facts/resolvers/filesystem_resolver.cc +118 -0
- data/ext/facter/facter/lib/src/facts/resolvers/gce_resolver.cc +276 -0
- data/ext/facter/facter/lib/src/facts/resolvers/hypervisors_resolver.cc +76 -0
- data/ext/facter/facter/lib/src/facts/resolvers/identity_resolver.cc +50 -0
- data/ext/facter/facter/lib/src/facts/resolvers/kernel_resolver.cc +62 -0
- data/ext/facter/facter/lib/src/facts/resolvers/ldom_resolver.cc +60 -0
- data/ext/facter/facter/lib/src/facts/resolvers/load_average_resolver.cc +36 -0
- data/ext/facter/facter/lib/src/facts/resolvers/memory_resolver.cc +88 -0
- data/ext/facter/facter/lib/src/facts/resolvers/networking_resolver.cc +296 -0
- data/ext/facter/facter/lib/src/facts/resolvers/operating_system_resolver.cc +276 -0
- data/ext/facter/facter/lib/src/facts/resolvers/path_resolver.cc +25 -0
- data/ext/facter/facter/lib/src/facts/resolvers/processor_resolver.cc +70 -0
- data/ext/facter/facter/lib/src/facts/resolvers/ruby_resolver.cc +109 -0
- data/ext/facter/facter/lib/src/facts/resolvers/ssh_resolver.cc +76 -0
- data/ext/facter/facter/lib/src/facts/resolvers/system_profiler_resolver.cc +137 -0
- data/ext/facter/facter/lib/src/facts/resolvers/timezone_resolver.cc +27 -0
- data/ext/facter/facter/lib/src/facts/resolvers/uptime_resolver.cc +63 -0
- data/ext/facter/facter/lib/src/facts/resolvers/virtualization_resolver.cc +119 -0
- data/ext/facter/facter/lib/src/facts/resolvers/xen_resolver.cc +80 -0
- data/ext/facter/facter/lib/src/facts/resolvers/zfs_resolver.cc +63 -0
- data/ext/facter/facter/lib/src/facts/resolvers/zone_resolver.cc +91 -0
- data/ext/facter/facter/lib/src/facts/resolvers/zpool_resolver.cc +93 -0
- data/ext/facter/facter/lib/src/facts/scalar_value.cc +73 -0
- data/ext/facter/facter/lib/src/facts/solaris/collection.cc +51 -0
- data/ext/facter/facter/lib/src/facts/solaris/disk_resolver.cc +35 -0
- data/ext/facter/facter/lib/src/facts/solaris/dmi_resolver.cc +86 -0
- data/ext/facter/facter/lib/src/facts/solaris/filesystem_resolver.cc +92 -0
- data/ext/facter/facter/lib/src/facts/solaris/kernel_resolver.cc +24 -0
- data/ext/facter/facter/lib/src/facts/solaris/ldom_resolver.cc +87 -0
- data/ext/facter/facter/lib/src/facts/solaris/memory_resolver.cc +91 -0
- data/ext/facter/facter/lib/src/facts/solaris/networking_resolver.cc +188 -0
- data/ext/facter/facter/lib/src/facts/solaris/operating_system_resolver.cc +83 -0
- data/ext/facter/facter/lib/src/facts/solaris/processor_resolver.cc +105 -0
- data/ext/facter/facter/lib/src/facts/solaris/virtualization_resolver.cc +38 -0
- data/ext/facter/facter/lib/src/facts/solaris/zfs_resolver.cc +12 -0
- data/ext/facter/facter/lib/src/facts/solaris/zone_resolver.cc +33 -0
- data/ext/facter/facter/lib/src/facts/solaris/zpool_resolver.cc +12 -0
- data/ext/facter/facter/lib/src/facts/windows/cache.cc +11 -0
- data/ext/facter/facter/lib/src/facts/windows/collection.cc +91 -0
- data/ext/facter/facter/lib/src/facts/windows/dmi_resolver.cc +38 -0
- data/ext/facter/facter/lib/src/facts/windows/identity_resolver.cc +46 -0
- data/ext/facter/facter/lib/src/facts/windows/kernel_resolver.cc +78 -0
- data/ext/facter/facter/lib/src/facts/windows/memory_resolver.cc +25 -0
- data/ext/facter/facter/lib/src/facts/windows/networking_resolver.cc +227 -0
- data/ext/facter/facter/lib/src/facts/windows/operating_system_resolver.cc +125 -0
- data/ext/facter/facter/lib/src/facts/windows/processor_resolver.cc +99 -0
- data/ext/facter/facter/lib/src/facts/windows/timezone_resolver.cc +28 -0
- data/ext/facter/facter/lib/src/facts/windows/uptime_resolver.cc +26 -0
- data/ext/facter/facter/lib/src/facts/windows/virtualization_resolver.cc +63 -0
- data/ext/facter/facter/lib/src/java/facter.cc +185 -0
- data/ext/facter/facter/lib/src/logging/logging.cc +151 -0
- data/ext/facter/facter/lib/src/ruby/aggregate_resolution.cc +249 -0
- data/ext/facter/facter/lib/src/ruby/chunk.cc +136 -0
- data/ext/facter/facter/lib/src/ruby/confine.cc +84 -0
- data/ext/facter/facter/lib/src/ruby/fact.cc +382 -0
- data/ext/facter/facter/lib/src/ruby/module.cc +1130 -0
- data/ext/facter/facter/lib/src/ruby/resolution.cc +230 -0
- data/ext/facter/facter/lib/src/ruby/ruby.cc +150 -0
- data/ext/facter/facter/lib/src/ruby/ruby_value.cc +288 -0
- data/ext/facter/facter/lib/src/ruby/simple_resolution.cc +156 -0
- data/ext/facter/facter/lib/src/util/bsd/scoped_ifaddrs.cc +29 -0
- data/ext/facter/facter/lib/src/util/config/config.cc +83 -0
- data/ext/facter/facter/lib/src/util/config/posix/config.cc +12 -0
- data/ext/facter/facter/lib/src/util/config/windows/config.cc +14 -0
- data/ext/facter/facter/lib/src/util/posix/scoped_addrinfo.cc +41 -0
- data/ext/facter/facter/lib/src/util/posix/scoped_bio.cc +29 -0
- data/ext/facter/facter/lib/src/util/posix/scoped_descriptor.cc +20 -0
- data/ext/facter/facter/lib/src/util/scoped_file.cc +26 -0
- data/ext/facter/facter/lib/src/util/solaris/k_stat.cc +165 -0
- data/ext/facter/facter/lib/src/util/solaris/scoped_kstat.cc +31 -0
- data/ext/facter/facter/lib/src/util/string.cc +170 -0
- data/ext/facter/facter/lib/src/util/windows/wsa.cc +69 -0
- data/ext/facter/facter/lib/src/util/yaml.cc +72 -0
- data/ext/facter/facter/lib/tasks/spec.rake +26 -0
- data/ext/facter/facter/lib/tests/CMakeLists.txt +172 -0
- data/ext/facter/facter/lib/tests/collection_fixture.cc +15 -0
- data/ext/facter/facter/lib/tests/collection_fixture.hpp +19 -0
- data/ext/facter/facter/lib/tests/cwrapper.cc +22 -0
- data/ext/facter/facter/lib/tests/facts/array_value.cc +140 -0
- data/ext/facter/facter/lib/tests/facts/boolean_value.cc +67 -0
- data/ext/facter/facter/lib/tests/facts/cache.cc +100 -0
- data/ext/facter/facter/lib/tests/facts/collection.cc +576 -0
- data/ext/facter/facter/lib/tests/facts/double_value.cc +40 -0
- data/ext/facter/facter/lib/tests/facts/external/json_resolver.cc +62 -0
- data/ext/facter/facter/lib/tests/facts/external/posix/execution_resolver.cc +69 -0
- data/ext/facter/facter/lib/tests/facts/external/text_resolver.cc +46 -0
- data/ext/facter/facter/lib/tests/facts/external/windows/execution_resolver.cc +69 -0
- data/ext/facter/facter/lib/tests/facts/external/windows/powershell_resolver.cc +122 -0
- data/ext/facter/facter/lib/tests/facts/external/yaml_resolver.cc +70 -0
- data/ext/facter/facter/lib/tests/facts/integer_value.cc +69 -0
- data/ext/facter/facter/lib/tests/facts/linux/dmi_resolver.cc +116 -0
- data/ext/facter/facter/lib/tests/facts/linux/filesystem_resolver.cc +13 -0
- data/ext/facter/facter/lib/tests/facts/linux/processor_fixture.cc +259 -0
- data/ext/facter/facter/lib/tests/facts/linux/processor_fixture.hpp +77 -0
- data/ext/facter/facter/lib/tests/facts/linux/processor_resolver.cc +312 -0
- data/ext/facter/facter/lib/tests/facts/linux/virtualization_resolver.cc +48 -0
- data/ext/facter/facter/lib/tests/facts/map_value.cc +116 -0
- data/ext/facter/facter/lib/tests/facts/posix/collection.cc +39 -0
- data/ext/facter/facter/lib/tests/facts/posix/uptime_resolver.cc +52 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/augeas_resolver.cc +58 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/disk_resolver.cc +114 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/dmi_resolver.cc +152 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/filesystem_resolver.cc +206 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/identity_resolver.cc +83 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/kernel_resolver.cc +61 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/ldom_resolver.cc +86 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/memory_resolver.cc +135 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/networking_resolver.cc +507 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/operating_system_resolver.cc +247 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/processor_resolver.cc +157 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/ruby_resolver.cc +74 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/ssh_resolver.cc +96 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/system_profiler_resolver.cc +135 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/timezone_resolver.cc +49 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/uptime_resolver.cc +151 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/virtualization_resolver.cc +175 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/xen_resolver.cc +100 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/zfs_resolver.cc +65 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/zone_resolver.cc +122 -0
- data/ext/facter/facter/lib/tests/facts/resolvers/zpool_resolver.cc +69 -0
- data/ext/facter/facter/lib/tests/facts/schema.cc +779 -0
- data/ext/facter/facter/lib/tests/facts/string_value.cc +270 -0
- data/ext/facter/facter/lib/tests/facts/windows/collection.cc +60 -0
- data/ext/facter/facter/lib/tests/facts/windows/networking_resolver.cc +217 -0
- data/ext/facter/facter/lib/tests/fixtures.cc +62 -0
- data/ext/facter/facter/lib/tests/fixtures.hpp.in +27 -0
- data/ext/facter/facter/lib/tests/fixtures/execution/with space/command_with_space.bat +2 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/json/facts.json +12 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/json/invalid.json +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/ordering/bar/foo.yaml +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/ordering/foo/foo.yaml +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/posix/execution/error_message +4 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/posix/execution/facts +5 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/posix/execution/failed +3 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/posix/execution/not_executable +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/text/facts.txt +4 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/execution/error_message.bat +4 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/execution/facts.bat +4 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/execution/failed.cmd +2 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/execution/not_executable +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/execution/ruby_script.rb +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/powershell/error_message.ps1 +3 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/powershell/facts.ps1 +4 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/powershell/failed.ps1 +2 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/powershell/json.ps1 +21 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/powershell/not_executable +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/windows/powershell/yaml.ps1 +18 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/yaml/facts.yaml +15 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/yaml/invalid.yaml +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/z/303/266/facts.rb +3 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/external/z/303/266/facts.txt +1 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/linux/cloud/azure +3 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/linux/cloud/azure-unknown +3 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/linux/cloud/not-azure +0 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/linux/dmidecode/full.txt +83 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/linux/dmidecode/full_alternative.txt +83 -0
- data/ext/facter/facter/lib/tests/fixtures/facts/linux/dmidecode/none.txt +2 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/100_resolutions.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/101_resolutions.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/aggregate.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/aggregate_invalid_require.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/aggregate_with_block.rb +30 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/aggregate_with_cycle.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/aggregate_with_invalid_merge.rb +13 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/aggregate_with_merge.rb +23 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/aggregate_with_require.rb +16 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/array_confine.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/array_fact.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/bad_command.rb +19 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/bad_syntax.rb +2 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/bignum_fact_value.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/block_confine.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/block_false_confine.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/block_nil_confine.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/block_true_confine.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/boolean_false_confine.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/boolean_false_fact.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/boolean_true_confine.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/boolean_true_fact.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/command_with_space.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/confine_missing_fact.rb +22 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/confine_weight.rb +20 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/custom_dir/expect_network_init.rb +15 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/cycle.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/debug.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/debugging.rb +14 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/debugonce.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/define_aggregate_fact.rb +13 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/define_fact.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/double_fact.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/empty_command.rb +3 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/empty_fact.rb +1 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/empty_fact_with_value.rb +1 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/empty_setcode_command.rb +3 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/exec.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/execute_on_fail_raise.rb +17 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/execute_on_fail_value.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/execute_timeout.rb +1 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/execution_failure.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/existing_aggregate_resolution.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/existing_simple_resolution.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/fact.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/facter.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/facterversion.rb +17 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/hash_fact.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/hash_with_non_string_key.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/integer_fact.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/log_exception.rb +21 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/lookup.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/multi_confine.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/named_resolution.rb +13 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/negative_number.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/nil_fact.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/nonexistent_command.rb +21 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/on_message.rb +16 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/range_confine.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/regexp_confine.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/ruby.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/simple.rb +11 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/simple_command.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/simple_confine.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/simple_resolution.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/single_allocation.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/stderr_output.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/string_fact.rb +5 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/timeout.rb +10 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/trace.rb +22 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/uni/341/220/201dir/customfacts/342/204/242.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/uses_exit_code.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/value.rb +6 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/version.rb +2 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/warn.rb +7 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/warnonce.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/weight.rb +20 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/weight_option.rb +17 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/which.rb +9 -0
- data/ext/facter/facter/lib/tests/fixtures/ruby/windows/ole.rb +7 -0
- data/ext/facter/facter/lib/tests/java/facter.cc +69 -0
- data/ext/facter/facter/lib/tests/log_capture.cc +29 -0
- data/ext/facter/facter/lib/tests/log_capture.hpp +35 -0
- data/ext/facter/facter/lib/tests/logging/logging.cc +69 -0
- data/ext/facter/facter/lib/tests/main.cc +20 -0
- data/ext/facter/facter/lib/tests/mock_server.cc +44 -0
- data/ext/facter/facter/lib/tests/mock_server.hpp +25 -0
- data/ext/facter/facter/lib/tests/ruby/ruby.cc +634 -0
- data/ext/facter/facter/lib/tests/ruby/ruby_dirfacts.cc +35 -0
- data/ext/facter/facter/lib/tests/ruby/ruby_helper.cc +41 -0
- data/ext/facter/facter/lib/tests/ruby/ruby_helper.hpp +8 -0
- data/ext/facter/facter/lib/tests/ruby/windows/ruby.cc +53 -0
- data/ext/facter/facter/lib/tests/util/bsd/scoped_ifaddrs.cc +10 -0
- data/ext/facter/facter/lib/tests/util/posix/scoped_addrinfo.cc +11 -0
- data/ext/facter/facter/lib/tests/util/posix/scoped_bio.cc +12 -0
- data/ext/facter/facter/lib/tests/util/posix/scoped_descriptor.cc +22 -0
- data/ext/facter/facter/lib/tests/util/string.cc +291 -0
- data/ext/facter/facter/lib/version.h.in +28 -0
- data/ext/facter/facter/locales/CMakeLists.txt +7 -0
- data/ext/facter/facter/locales/FACTER.pot +1529 -0
- data/ext/facter/facter/man/man8/facter.8 +205 -0
- data/ext/facter/facter/scripts/cpplint.py +4754 -0
- data/ext/facter/facter/scripts/travis_target.sh +83 -0
- data/ext/facter/facter/tasks/ci.rake +22 -0
- data/ext/facter/leatherman/CHANGELOG.md +423 -0
- data/ext/facter/leatherman/CMakeLists.txt +143 -0
- data/ext/facter/leatherman/CONTRIBUTING.md +98 -0
- data/ext/facter/leatherman/LICENSE +17 -0
- data/ext/facter/leatherman/LeathermanConfig.cmake.in +57 -0
- data/ext/facter/leatherman/LeathermanConfigVersion.cmake.in +11 -0
- data/ext/facter/leatherman/MAINTAINERS +28 -0
- data/ext/facter/leatherman/README.md +416 -0
- data/ext/facter/leatherman/appveyor.yml +40 -0
- data/ext/facter/leatherman/catch/CMakeLists.txt +1 -0
- data/ext/facter/leatherman/cmake/FindICU.cmake +690 -0
- data/ext/facter/leatherman/cmake/GetGitRevisionDescription.cmake +130 -0
- data/ext/facter/leatherman/cmake/GetGitRevisionDescription.cmake.in +38 -0
- data/ext/facter/leatherman/cmake/cflags.cmake +110 -0
- data/ext/facter/leatherman/cmake/generate_translations.cmake +17 -0
- data/ext/facter/leatherman/cmake/internal.cmake +241 -0
- data/ext/facter/leatherman/cmake/leatherman.cmake.in +369 -0
- data/ext/facter/leatherman/cmake/leatherman_config.cmake +80 -0
- data/ext/facter/leatherman/cmake/normalize_pot.cmake +17 -0
- data/ext/facter/leatherman/cmake/options.cmake +21 -0
- data/ext/facter/leatherman/cmake/pod2man.cmake +36 -0
- data/ext/facter/leatherman/curl/CMakeLists.txt +42 -0
- data/ext/facter/leatherman/curl/inc/leatherman/curl/client.hpp +441 -0
- data/ext/facter/leatherman/curl/inc/leatherman/curl/request.hpp +130 -0
- data/ext/facter/leatherman/curl/inc/leatherman/curl/response.hpp +80 -0
- data/ext/facter/leatherman/curl/src/client.cc +575 -0
- data/ext/facter/leatherman/curl/src/request.cc +112 -0
- data/ext/facter/leatherman/curl/src/response.cc +62 -0
- data/ext/facter/leatherman/curl/tests/CMakeLists.txt +22 -0
- data/ext/facter/leatherman/curl/tests/client_test.cc +615 -0
- data/ext/facter/leatherman/curl/tests/fixtures.cc +27 -0
- data/ext/facter/leatherman/curl/tests/fixtures.hpp +31 -0
- data/ext/facter/leatherman/curl/tests/mock_curl.cc +421 -0
- data/ext/facter/leatherman/curl/tests/mock_curl.hpp +85 -0
- data/ext/facter/leatherman/curl/tests/request_test.cc +87 -0
- data/ext/facter/leatherman/curl/tests/response_test.cc +60 -0
- data/ext/facter/leatherman/dynamic_library/CMakeLists.txt +43 -0
- data/ext/facter/leatherman/dynamic_library/inc/leatherman/dynamic_library/dynamic_library.hpp +122 -0
- data/ext/facter/leatherman/dynamic_library/src/dynamic_library.cc +57 -0
- data/ext/facter/leatherman/dynamic_library/src/posix/dynamic_library.cc +91 -0
- data/ext/facter/leatherman/dynamic_library/src/windows/dynamic_library.cc +128 -0
- data/ext/facter/leatherman/dynamic_library/tests/dynamic_library_tests.cc +98 -0
- data/ext/facter/leatherman/dynamic_library/tests/fixtures.hpp.in +3 -0
- data/ext/facter/leatherman/dynamic_library/tests/test-lib/goodbye.cc +5 -0
- data/ext/facter/leatherman/dynamic_library/tests/test-lib/hello.cc +7 -0
- data/ext/facter/leatherman/execution/CMakeLists.txt +65 -0
- data/ext/facter/leatherman/execution/inc/leatherman/execution/execution.hpp +488 -0
- data/ext/facter/leatherman/execution/src/execution.cc +507 -0
- data/ext/facter/leatherman/execution/src/posix/execution.cc +575 -0
- data/ext/facter/leatherman/execution/src/posix/generic/platform.cc +30 -0
- data/ext/facter/leatherman/execution/src/posix/platform.hpp +15 -0
- data/ext/facter/leatherman/execution/src/posix/solaris/platform.cc +197 -0
- data/ext/facter/leatherman/execution/src/windows/execution.cc +696 -0
- data/ext/facter/leatherman/execution/tests/fixtures.hpp.in +2 -0
- data/ext/facter/leatherman/execution/tests/fixtures/echo_pid +2 -0
- data/ext/facter/leatherman/execution/tests/fixtures/error_message +5 -0
- data/ext/facter/leatherman/execution/tests/fixtures/execution/selfkill.sh +3 -0
- data/ext/facter/leatherman/execution/tests/fixtures/execution/sleep.sh +3 -0
- data/ext/facter/leatherman/execution/tests/fixtures/facts +5 -0
- data/ext/facter/leatherman/execution/tests/fixtures/failed +3 -0
- data/ext/facter/leatherman/execution/tests/fixtures/ls/crlf.txt +3 -0
- data/ext/facter/leatherman/execution/tests/fixtures/ls/file1.txt +1 -0
- data/ext/facter/leatherman/execution/tests/fixtures/ls/file2.txt +1 -0
- data/ext/facter/leatherman/execution/tests/fixtures/ls/file3.txt +1 -0
- data/ext/facter/leatherman/execution/tests/fixtures/ls/file4.txt +7 -0
- data/ext/facter/leatherman/execution/tests/fixtures/not_executable +1 -0
- data/ext/facter/leatherman/execution/tests/fixtures/windows/error_message.bat +6 -0
- data/ext/facter/leatherman/execution/tests/fixtures/windows/facts.bat +4 -0
- data/ext/facter/leatherman/execution/tests/fixtures/windows/failed.cmd +2 -0
- data/ext/facter/leatherman/execution/tests/fixtures/windows/not_executable +1 -0
- data/ext/facter/leatherman/execution/tests/fixtures/windows/ruby_script.rb +1 -0
- data/ext/facter/leatherman/execution/tests/log_capture.cc +29 -0
- data/ext/facter/leatherman/execution/tests/log_capture.hpp +35 -0
- data/ext/facter/leatherman/execution/tests/lth_cat.cc +38 -0
- data/ext/facter/leatherman/execution/tests/lth_cat.hpp +9 -0
- data/ext/facter/leatherman/execution/tests/posix/execution.cc +728 -0
- data/ext/facter/leatherman/execution/tests/posix/solaris/execution.cc +54 -0
- data/ext/facter/leatherman/execution/tests/windows/execution.cc +787 -0
- data/ext/facter/leatherman/file_util/CMakeLists.txt +18 -0
- data/ext/facter/leatherman/file_util/inc/leatherman/file_util/directory.hpp +28 -0
- data/ext/facter/leatherman/file_util/inc/leatherman/file_util/file.hpp +95 -0
- data/ext/facter/leatherman/file_util/src/directory.cc +51 -0
- data/ext/facter/leatherman/file_util/src/file.cc +131 -0
- data/ext/facter/leatherman/file_util/tests/directory_utils_test.cc +89 -0
- data/ext/facter/leatherman/file_util/tests/file_utils_test.cc +197 -0
- data/ext/facter/leatherman/file_util/tests/fixtures.cc +37 -0
- data/ext/facter/leatherman/file_util/tests/fixtures.hpp +39 -0
- data/ext/facter/leatherman/json_container/CMakeLists.txt +11 -0
- data/ext/facter/leatherman/json_container/README.md +108 -0
- data/ext/facter/leatherman/json_container/inc/leatherman/json_container/json_container.hpp +436 -0
- data/ext/facter/leatherman/json_container/src/json_container.cc +646 -0
- data/ext/facter/leatherman/json_container/tests/json_container_test.cc +985 -0
- data/ext/facter/leatherman/locale/CMakeLists.txt +46 -0
- data/ext/facter/leatherman/locale/disabled/locale.cc +38 -0
- data/ext/facter/leatherman/locale/inc/leatherman/locale/locale.hpp +263 -0
- data/ext/facter/leatherman/locale/locales/CMakeLists.txt +6 -0
- data/ext/facter/leatherman/locale/locales/fr.po +40 -0
- data/ext/facter/leatherman/locale/locales/leatherman_locale.pot +41 -0
- data/ext/facter/leatherman/locale/src/locale.cc +95 -0
- data/ext/facter/leatherman/locale/tests/format.cc +117 -0
- data/ext/facter/leatherman/locale/tests/locale.cc +190 -0
- data/ext/facter/leatherman/locales/CMakeLists.txt +7 -0
- data/ext/facter/leatherman/locales/leatherman.pot +722 -0
- data/ext/facter/leatherman/logging/CMakeLists.txt +43 -0
- data/ext/facter/leatherman/logging/inc/leatherman/logging/logging.hpp +264 -0
- data/ext/facter/leatherman/logging/locales/CMakeLists.txt +6 -0
- data/ext/facter/leatherman/logging/locales/fr.po +72 -0
- data/ext/facter/leatherman/logging/locales/leatherman_logging.pot +72 -0
- data/ext/facter/leatherman/logging/src/logging.cc +227 -0
- data/ext/facter/leatherman/logging/src/posix/logging.cc +39 -0
- data/ext/facter/leatherman/logging/src/windows/logging.cc +52 -0
- data/ext/facter/leatherman/logging/tests/logging.cc +118 -0
- data/ext/facter/leatherman/logging/tests/logging.hpp +88 -0
- data/ext/facter/leatherman/logging/tests/logging_i18n.cc +103 -0
- data/ext/facter/leatherman/logging/tests/logging_on_message.cc +61 -0
- data/ext/facter/leatherman/logging/tests/logging_stream.cc +159 -0
- data/ext/facter/leatherman/logging/tests/logging_stream_lines.cc +172 -0
- data/ext/facter/leatherman/logging/tests/posix/logging.cc +23 -0
- data/ext/facter/leatherman/logging/tests/windows/logging.cc +13 -0
- data/ext/facter/leatherman/nowide/CMakeLists.txt +7 -0
- data/ext/facter/leatherman/rapidjson/CMakeLists.txt +1 -0
- data/ext/facter/leatherman/ruby/CMakeLists.txt +26 -0
- data/ext/facter/leatherman/ruby/inc/leatherman/ruby/api.hpp +744 -0
- data/ext/facter/leatherman/ruby/src/api.cc +527 -0
- data/ext/facter/leatherman/ruby/src/posix/api.cc +14 -0
- data/ext/facter/leatherman/ruby/src/windows/api.cc +20 -0
- data/ext/facter/leatherman/ruby/tests/api-test.cc +206 -0
- data/ext/facter/leatherman/scripts/cpplint.py +6323 -0
- data/ext/facter/leatherman/scripts/travis_target.sh +79 -0
- data/ext/facter/leatherman/tests/CMakeLists.txt +22 -0
- data/ext/facter/leatherman/tests/main.cc +17 -0
- data/ext/facter/leatherman/util/CMakeLists.txt +36 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/environment.hpp +69 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/option_set.hpp +228 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/posix/scoped_descriptor.hpp +32 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/regex.hpp +80 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/scope_exit.hpp +62 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/scoped_env.hpp +35 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/scoped_resource.hpp +130 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/strings.hpp +54 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/time.hpp +36 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/timer.hpp +43 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/uri.hpp +23 -0
- data/ext/facter/leatherman/util/inc/leatherman/util/windows/scoped_handle.hpp +32 -0
- data/ext/facter/leatherman/util/src/environment.cc +29 -0
- data/ext/facter/leatherman/util/src/posix/environment.cc +75 -0
- data/ext/facter/leatherman/util/src/posix/scoped_descriptor.cc +23 -0
- data/ext/facter/leatherman/util/src/posix/time.cc +9 -0
- data/ext/facter/leatherman/util/src/scope_exit.cc +43 -0
- data/ext/facter/leatherman/util/src/scoped_env.cc +37 -0
- data/ext/facter/leatherman/util/src/strings.cc +41 -0
- data/ext/facter/leatherman/util/src/time.cc +49 -0
- data/ext/facter/leatherman/util/src/uri.cc +75 -0
- data/ext/facter/leatherman/util/src/windows/environment.cc +75 -0
- data/ext/facter/leatherman/util/src/windows/scoped_handle.cc +24 -0
- data/ext/facter/leatherman/util/src/windows/time.cc +10 -0
- data/ext/facter/leatherman/util/tests/environment.cc +90 -0
- data/ext/facter/leatherman/util/tests/option_set.cc +234 -0
- data/ext/facter/leatherman/util/tests/posix/environment.cc +36 -0
- data/ext/facter/leatherman/util/tests/scoped_env.cc +52 -0
- data/ext/facter/leatherman/util/tests/strings_test.cc +71 -0
- data/ext/facter/leatherman/util/tests/timer.cc +41 -0
- data/ext/facter/leatherman/util/tests/uri.cc +104 -0
- data/ext/facter/leatherman/util/tests/windows/environment.cc +30 -0
- data/ext/facter/leatherman/vendor/catch-1.4.0.zip +0 -0
- data/ext/facter/leatherman/vendor/nowide/build/Jamfile.v2 +26 -0
- data/ext/facter/leatherman/vendor/nowide/doc/Doxyfile +1632 -0
- data/ext/facter/leatherman/vendor/nowide/doc/gendoc.sh +11 -0
- data/ext/facter/leatherman/vendor/nowide/doc/main.txt +346 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/args.hpp +167 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/cenv.hpp +126 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/config.hpp +54 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/convert.hpp +154 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/cstdio.hpp +101 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/cstdlib.hpp +16 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/filebuf.hpp +415 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/fstream.hpp +283 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/integration/filesystem.hpp +28 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/iostream.hpp +99 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/stackstring.hpp +154 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/system.hpp +46 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/utf8_codecvt.hpp +499 -0
- data/ext/facter/leatherman/vendor/nowide/include/boost/nowide/windows.hpp +39 -0
- data/ext/facter/leatherman/vendor/nowide/index.html +16 -0
- data/ext/facter/leatherman/vendor/nowide/src/iostream.cpp +261 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/CMakeLists.txt +104 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/MinGW.cmake +9 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/config.hpp +37 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/convert +34 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/encoding_errors.hpp +58 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/encoding_utf.hpp +84 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/run_convert_and_build.sh +19 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/scoped_ptr.hpp +93 -0
- data/ext/facter/leatherman/vendor/nowide/standalone/utf.hpp +469 -0
- data/ext/facter/leatherman/vendor/nowide/template.hpp +19 -0
- data/ext/facter/leatherman/vendor/nowide/test/Jamfile.v2 +43 -0
- data/ext/facter/leatherman/vendor/nowide/test/test.hpp +25 -0
- data/ext/facter/leatherman/vendor/nowide/test/test_codecvt.cpp +254 -0
- data/ext/facter/leatherman/vendor/nowide/test/test_convert.cpp +101 -0
- data/ext/facter/leatherman/vendor/nowide/test/test_env.cpp +49 -0
- data/ext/facter/leatherman/vendor/nowide/test/test_fs.cpp +48 -0
- data/ext/facter/leatherman/vendor/nowide/test/test_fstream.cpp +184 -0
- data/ext/facter/leatherman/vendor/nowide/test/test_iostream.cpp +52 -0
- data/ext/facter/leatherman/vendor/nowide/test/test_stdio.cpp +60 -0
- data/ext/facter/leatherman/vendor/nowide/test/test_system.cpp +91 -0
- data/ext/facter/leatherman/vendor/rapidjson-1.0.2.zip +0 -0
- data/ext/facter/leatherman/windows/CMakeLists.txt +27 -0
- data/ext/facter/leatherman/windows/inc/leatherman/windows/file_util.hpp +23 -0
- data/ext/facter/leatherman/windows/inc/leatherman/windows/process.hpp +22 -0
- data/ext/facter/leatherman/windows/inc/leatherman/windows/registry.hpp +56 -0
- data/ext/facter/leatherman/windows/inc/leatherman/windows/system_error.hpp +23 -0
- data/ext/facter/leatherman/windows/inc/leatherman/windows/user.hpp +30 -0
- data/ext/facter/leatherman/windows/inc/leatherman/windows/windows.hpp +10 -0
- data/ext/facter/leatherman/windows/inc/leatherman/windows/wmi.hpp +188 -0
- data/ext/facter/leatherman/windows/src/file_util.cc +28 -0
- data/ext/facter/leatherman/windows/src/process.cc +42 -0
- data/ext/facter/leatherman/windows/src/registry.cc +96 -0
- data/ext/facter/leatherman/windows/src/system_error.cc +33 -0
- data/ext/facter/leatherman/windows/src/user.cc +76 -0
- data/ext/facter/leatherman/windows/src/wmi.cc +208 -0
- data/ext/facter/leatherman/windows/tests/file_utils_test.cc +13 -0
- metadata +1052 -841
- data/COMMITTERS.md +0 -185
- data/CONTRIBUTING.md +0 -91
- data/Gemfile +0 -69
- data/LICENSE +0 -15
- data/README.md +0 -65
- data/Rakefile +0 -46
- data/bin/facter +0 -20
- data/etc/facter.conf +0 -5
- data/ext/build_defaults.yaml +0 -9
- data/ext/debian/changelog.erb +0 -59
- data/ext/debian/control +0 -15
- data/ext/debian/copyright +0 -19
- data/ext/debian/docs +0 -1
- data/ext/debian/rules +0 -10
- data/ext/facter-diff +0 -74
- data/ext/ips/facter.p5m.erb +0 -10
- data/ext/ips/rules +0 -7
- data/ext/ips/transforms +0 -18
- data/ext/osx/file_mapping.yaml +0 -32
- data/ext/osx/preflight.erb +0 -33
- data/ext/osx/prototype.plist.erb +0 -38
- data/ext/project_data.yaml +0 -31
- data/ext/redhat/facter.spec.erb +0 -223
- data/ext/solaris/pkginfo +0 -7
- data/install.rb +0 -380
- data/lib/facter.rb +0 -261
- data/lib/facter/Cfkey.rb +0 -42
- data/lib/facter/application.rb +0 -206
- data/lib/facter/architecture.rb +0 -50
- data/lib/facter/augeasversion.rb +0 -28
- data/lib/facter/blockdevices.rb +0 -105
- data/lib/facter/core/aggregate.rb +0 -220
- data/lib/facter/core/directed_graph.rb +0 -46
- data/lib/facter/core/execution.rb +0 -123
- data/lib/facter/core/execution/base.rb +0 -81
- data/lib/facter/core/execution/posix.rb +0 -50
- data/lib/facter/core/execution/windows.rb +0 -57
- data/lib/facter/core/logging.rb +0 -197
- data/lib/facter/core/resolvable.rb +0 -94
- data/lib/facter/core/suitable.rb +0 -113
- data/lib/facter/dhcp_servers.rb +0 -45
- data/lib/facter/domain.rb +0 -99
- data/lib/facter/ec2.rb +0 -68
- data/lib/facter/ec2/rest.rb +0 -137
- data/lib/facter/facterversion.rb +0 -15
- data/lib/facter/filesystems.rb +0 -45
- data/lib/facter/fqdn.rb +0 -24
- data/lib/facter/gce.rb +0 -16
- data/lib/facter/gce/metadata.rb +0 -87
- data/lib/facter/gid.rb +0 -25
- data/lib/facter/hardwareisa.rb +0 -20
- data/lib/facter/hardwaremodel.rb +0 -67
- data/lib/facter/hostname.rb +0 -31
- data/lib/facter/id.rb +0 -21
- data/lib/facter/interfaces.rb +0 -58
- data/lib/facter/ipaddress.rb +0 -169
- data/lib/facter/ipaddress6.rb +0 -82
- data/lib/facter/iphostnumber.rb +0 -29
- data/lib/facter/kernel.rb +0 -22
- data/lib/facter/kernelmajversion.rb +0 -23
- data/lib/facter/kernelrelease.rb +0 -45
- data/lib/facter/kernelversion.rb +0 -22
- data/lib/facter/ldom.rb +0 -51
- data/lib/facter/lsbdistcodename.rb +0 -20
- data/lib/facter/lsbdistdescription.rb +0 -21
- data/lib/facter/lsbdistid.rb +0 -20
- data/lib/facter/lsbdistrelease.rb +0 -20
- data/lib/facter/lsbmajdistrelease.rb +0 -22
- data/lib/facter/lsbminordistrelease.rb +0 -22
- data/lib/facter/lsbrelease.rb +0 -20
- data/lib/facter/macaddress.rb +0 -99
- data/lib/facter/macosx.rb +0 -56
- data/lib/facter/manufacturer.rb +0 -68
- data/lib/facter/memory.rb +0 -168
- data/lib/facter/netmask.rb +0 -43
- data/lib/facter/network.rb +0 -20
- data/lib/facter/operatingsystem.rb +0 -24
- data/lib/facter/operatingsystem/base.rb +0 -61
- data/lib/facter/operatingsystem/cumuluslinux.rb +0 -27
- data/lib/facter/operatingsystem/implementation.rb +0 -33
- data/lib/facter/operatingsystem/linux.rb +0 -511
- data/lib/facter/operatingsystem/osreleaselinux.rb +0 -28
- data/lib/facter/operatingsystem/sunos.rb +0 -54
- data/lib/facter/operatingsystem/vmkernel.rb +0 -11
- data/lib/facter/operatingsystem/windows.rb +0 -43
- data/lib/facter/operatingsystemmajrelease.rb +0 -31
- data/lib/facter/operatingsystemrelease.rb +0 -29
- data/lib/facter/os.rb +0 -98
- data/lib/facter/osfamily.rb +0 -18
- data/lib/facter/partitions.rb +0 -39
- data/lib/facter/path.rb +0 -14
- data/lib/facter/physicalprocessorcount.rb +0 -27
- data/lib/facter/processor.rb +0 -52
- data/lib/facter/processors.rb +0 -66
- data/lib/facter/processors/os.rb +0 -244
- data/lib/facter/ps.rb +0 -31
- data/lib/facter/puppetversion.rb +0 -20
- data/lib/facter/rackspace.rb +0 -37
- data/lib/facter/rubyplatform.rb +0 -12
- data/lib/facter/rubysitedir.rb +0 -15
- data/lib/facter/rubyversion.rb +0 -12
- data/lib/facter/selinux.rb +0 -154
- data/lib/facter/ssh.rb +0 -73
- data/lib/facter/system32.rb +0 -21
- data/lib/facter/system_uptime.rb +0 -44
- data/lib/facter/timezone.rb +0 -14
- data/lib/facter/uniqueid.rb +0 -4
- data/lib/facter/uptime.rb +0 -16
- data/lib/facter/uptime_days.rb +0 -13
- data/lib/facter/uptime_hours.rb +0 -13
- data/lib/facter/uptime_seconds.rb +0 -20
- data/lib/facter/util/architecture.rb +0 -19
- data/lib/facter/util/collection.rb +0 -161
- data/lib/facter/util/composite_loader.rb +0 -12
- data/lib/facter/util/config.rb +0 -88
- data/lib/facter/util/confine.rb +0 -66
- data/lib/facter/util/dhcp_servers.rb +0 -58
- data/lib/facter/util/directory_loader.rb +0 -88
- data/lib/facter/util/ec2.rb +0 -106
- data/lib/facter/util/fact.rb +0 -204
- data/lib/facter/util/file_read.rb +0 -37
- data/lib/facter/util/formatter.rb +0 -39
- data/lib/facter/util/ip.rb +0 -340
- data/lib/facter/util/ip/windows.rb +0 -215
- data/lib/facter/util/loader.rb +0 -155
- data/lib/facter/util/macaddress.rb +0 -43
- data/lib/facter/util/macosx.rb +0 -73
- data/lib/facter/util/manufacturer.rb +0 -99
- data/lib/facter/util/memory.rb +0 -228
- data/lib/facter/util/netmask.rb +0 -40
- data/lib/facter/util/normalization.rb +0 -94
- data/lib/facter/util/nothing_loader.rb +0 -12
- data/lib/facter/util/operatingsystem.rb +0 -21
- data/lib/facter/util/parser.rb +0 -168
- data/lib/facter/util/partitions.rb +0 -47
- data/lib/facter/util/partitions/linux.rb +0 -71
- data/lib/facter/util/partitions/openbsd.rb +0 -40
- data/lib/facter/util/plist.rb +0 -24
- data/lib/facter/util/plist/generator.rb +0 -228
- data/lib/facter/util/plist/parser.rb +0 -226
- data/lib/facter/util/posix.rb +0 -16
- data/lib/facter/util/processor.rb +0 -289
- data/lib/facter/util/registry.rb +0 -11
- data/lib/facter/util/resolution.rb +0 -160
- data/lib/facter/util/solaris_zones.rb +0 -158
- data/lib/facter/util/unix_root.rb +0 -5
- data/lib/facter/util/uptime.rb +0 -83
- data/lib/facter/util/values.rb +0 -109
- data/lib/facter/util/virtual.rb +0 -220
- data/lib/facter/util/vlans.rb +0 -21
- data/lib/facter/util/windows.rb +0 -10
- data/lib/facter/util/windows/api_types.rb +0 -135
- data/lib/facter/util/windows/dir.rb +0 -43
- data/lib/facter/util/windows/error.rb +0 -87
- data/lib/facter/util/windows/process.rb +0 -294
- data/lib/facter/util/windows/user.rb +0 -186
- data/lib/facter/util/windows_root.rb +0 -7
- data/lib/facter/util/wmi.rb +0 -49
- data/lib/facter/util/xendomains.rb +0 -28
- data/lib/facter/version.rb +0 -86
- data/lib/facter/virtual.rb +0 -339
- data/lib/facter/vlans.rb +0 -17
- data/lib/facter/xendomains.rb +0 -20
- data/lib/facter/zfs_version.rb +0 -14
- data/lib/facter/zonename.rb +0 -6
- data/lib/facter/zones.rb +0 -18
- data/lib/facter/zpool_version.rb +0 -10
- data/spec/fixtures/cpuinfo/amd64dual +0 -57
- data/spec/fixtures/cpuinfo/amd64dual-grep +0 -2
- data/spec/fixtures/cpuinfo/amd64quad +0 -79
- data/spec/fixtures/cpuinfo/amd64solo +0 -23
- data/spec/fixtures/cpuinfo/amd64tri +0 -86
- data/spec/fixtures/cpuinfo/amd64twentyfour +0 -600
- data/spec/fixtures/cpuinfo/amd64twentyfour-grep +0 -24
- data/spec/fixtures/cpuinfo/bbg3-armel +0 -12
- data/spec/fixtures/cpuinfo/beaglexm-armel +0 -12
- data/spec/fixtures/cpuinfo/panda-armel +0 -17
- data/spec/fixtures/cpuinfo/ppc64 +0 -19
- data/spec/fixtures/cpuinfo/ppc64le +0 -15
- data/spec/fixtures/cpuinfo/sparc +0 -10
- data/spec/fixtures/cpuinfo/two_multicore-grep +0 -4
- data/spec/fixtures/cpuinfo/two_singlecore-grep +0 -2
- data/spec/fixtures/hpux/machinfo/hppa-rp4440 +0 -26
- data/spec/fixtures/hpux/machinfo/ia64-rx2620 +0 -49
- data/spec/fixtures/hpux/machinfo/ia64-rx6600 +0 -26
- data/spec/fixtures/hpux/machinfo/ia64-rx8640 +0 -53
- data/spec/fixtures/hpux/machinfo/superdome-server-SD32B +0 -53
- data/spec/fixtures/hpux/machinfo/superdome2-16s +0 -31
- data/spec/fixtures/hpux/sched.models +0 -174
- data/spec/fixtures/hpux/unistd.h +0 -1534
- data/spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces +0 -18
- data/spec/fixtures/ifconfig/centos_5_5 +0 -17
- data/spec/fixtures/ifconfig/centos_5_5_eth0 +0 -8
- data/spec/fixtures/ifconfig/darwin_10_3_0 +0 -26
- data/spec/fixtures/ifconfig/darwin_10_3_0_en0 +0 -6
- data/spec/fixtures/ifconfig/darwin_10_6_4 +0 -28
- data/spec/fixtures/ifconfig/darwin_10_6_4_en1 +0 -6
- data/spec/fixtures/ifconfig/darwin_10_6_6_dualstack +0 -8
- data/spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1 +0 -7
- data/spec/fixtures/ifconfig/darwin_9_8_0 +0 -26
- data/spec/fixtures/ifconfig/darwin_9_8_0_en0 +0 -6
- data/spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces +0 -23
- data/spec/fixtures/ifconfig/fedora_10 +0 -36
- data/spec/fixtures/ifconfig/fedora_10_eth0 +0 -9
- data/spec/fixtures/ifconfig/fedora_13 +0 -18
- data/spec/fixtures/ifconfig/fedora_13_eth0 +0 -9
- data/spec/fixtures/ifconfig/fedora_8 +0 -38
- data/spec/fixtures/ifconfig/fedora_8_eth0 +0 -9
- data/spec/fixtures/ifconfig/freebsd_6_0 +0 -12
- data/spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt +0 -19
- data/spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt +0 -16
- data/spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces +0 -19
- data/spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80 +0 -19
- data/spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6 +0 -18
- data/spec/fixtures/ifconfig/linux_ifconfig_no_addr +0 -19
- data/spec/fixtures/ifconfig/linux_ifconfig_no_mac +0 -8
- data/spec/fixtures/ifconfig/linux_ifconfig_venet +0 -24
- data/spec/fixtures/ifconfig/open_solaris_10 +0 -12
- data/spec/fixtures/ifconfig/open_solaris_b132 +0 -20
- data/spec/fixtures/ifconfig/openbsd_bridge_rules +0 -11
- data/spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces +0 -10
- data/spec/fixtures/ifconfig/ubuntu_7_04 +0 -38
- data/spec/fixtures/ifconfig/ubuntu_7_04_eth0 +0 -9
- data/spec/fixtures/ldom/ldom_v1 +0 -6
- data/spec/fixtures/netstat/centos_5_5 +0 -5
- data/spec/fixtures/netstat/darwin_10_3_0 +0 -35
- data/spec/fixtures/netstat/darwin_10_6_4 +0 -29
- data/spec/fixtures/netstat/darwin_10_6_6_dualstack +0 -34
- data/spec/fixtures/netstat/darwin_9_8_0 +0 -28
- data/spec/fixtures/netstat/fedora_10 +0 -7
- data/spec/fixtures/netstat/open_solaris_10 +0 -16
- data/spec/fixtures/netstat/open_solaris_b132 +0 -17
- data/spec/fixtures/netstat/ubuntu_7_04 +0 -7
- data/spec/fixtures/processorcount/solaris-psrinfo +0 -24
- data/spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info +0 -1216
- data/spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info +0 -225
- data/spec/fixtures/unit/dhcp_servers/nmcli_devices +0 -4
- data/spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected +0 -4
- data/spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp +0 -36
- data/spec/fixtures/unit/dhcp_servers/nmcli_eth0_static +0 -24
- data/spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp +0 -49
- data/spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static +0 -37
- data/spec/fixtures/unit/dhcp_servers/route +0 -3
- data/spec/fixtures/unit/dhcp_servers/route_nogw +0 -1
- data/spec/fixtures/unit/ec2/rest/meta-data/root +0 -20
- data/spec/fixtures/unit/filesystems/linux +0 -28
- data/spec/fixtures/unit/gce/metadata/metadata.json +0 -69
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt +0 -19
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1 +0 -10
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo +0 -8
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60_v6.txt +0 -9
- data/spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt +0 -20
- data/spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt +0 -19
- data/spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt +0 -18
- data/spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt +0 -16
- data/spec/fixtures/unit/kernelrelease/openbsd-5.3 +0 -2
- data/spec/fixtures/unit/kernelrelease/openbsd-5.3-current +0 -3
- data/spec/fixtures/unit/memory/aix-svmon +0 -9
- data/spec/fixtures/unit/memory/aix-swap_l +0 -2
- data/spec/fixtures/unit/memory/darwin-swapinfo-multiple +0 -3
- data/spec/fixtures/unit/memory/darwin-swapinfo-single +0 -2
- data/spec/fixtures/unit/memory/darwin-vm_stat +0 -13
- data/spec/fixtures/unit/memory/dragonfly-vmstat +0 -3
- data/spec/fixtures/unit/memory/freebsd-vmstat +0 -3
- data/spec/fixtures/unit/memory/linux-proc_meminfo +0 -10
- data/spec/fixtures/unit/memory/openbsd-vmstat +0 -3
- data/spec/fixtures/unit/memory/smartos_zone_swap_l-single +0 -2
- data/spec/fixtures/unit/memory/solaris-prtconf +0 -4
- data/spec/fixtures/unit/memory/solaris-swap_l-multiple +0 -3
- data/spec/fixtures/unit/memory/solaris-swap_l-single +0 -2
- data/spec/fixtures/unit/memory/solaris-vmstat +0 -3
- data/spec/fixtures/unit/netmask/darwin_10_8_5.txt +0 -30
- data/spec/fixtures/unit/netmask/ifconfig_aix_7.txt +0 -3
- data/spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt +0 -19
- data/spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt +0 -16
- data/spec/fixtures/unit/processors/os/darwin-system-profiler +0 -287
- data/spec/fixtures/unit/selinux/selinux_sestatus +0 -6
- data/spec/fixtures/unit/selinux/selinux_sestatus2 +0 -9
- data/spec/fixtures/unit/util/dhcp_servers/route +0 -3
- data/spec/fixtures/unit/util/dhcp_servers/route_nogw +0 -1
- data/spec/fixtures/unit/util/ec2/centos-arp-ec2.out +0 -1
- data/spec/fixtures/unit/util/ec2/linux-arp-ec2.out +0 -1
- data/spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out +0 -5
- data/spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out +0 -7
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out +0 -6
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a.out +0 -10
- data/spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig +0 -12
- data/spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig +0 -26
- data/spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces +0 -10
- data/spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface +0 -6
- data/spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig +0 -40
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1111_lanscan +0 -5
- data/spec/fixtures/unit/util/ip/hpux_1111_netstat_in +0 -4
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan +0 -5
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in +0 -4
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_lanscan +0 -4
- data/spec/fixtures/unit/util/ip/hpux_1131_netstat_in +0 -4
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0 +0 -2
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan +0 -9
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in +0 -6
- data/spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0 +0 -19
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_eth0 +0 -10
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_ib0 +0 -8
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_ib0_centos7 +0 -8
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_lo +0 -9
- data/spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface +0 -18
- data/spec/fixtures/unit/util/ip/linux_ifconfig_ib0 +0 -8
- data/spec/fixtures/unit/util/ip/linux_ifconfig_ib0_centos7 +0 -8
- data/spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces +0 -8
- data/spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface +0 -3
- data/spec/fixtures/unit/util/ip/windows_netsh_all_interfaces +0 -12
- data/spec/fixtures/unit/util/ip/windows_netsh_single_interface +0 -7
- data/spec/fixtures/unit/util/ip/windows_netsh_single_interface6 +0 -18
- data/spec/fixtures/unit/util/manufacturer/freebsd_dmidecode +0 -42
- data/spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode +0 -549
- data/spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces +0 -60
- data/spec/fixtures/unit/util/manufacturer/opensolaris_smbios +0 -33
- data/spec/fixtures/unit/util/manufacturer/smartos_smbios +0 -533
- data/spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag +0 -33
- data/spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag +0 -136
- data/spec/fixtures/unit/util/operatingsystem/coreos.txt +0 -9
- data/spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt +0 -8
- data/spec/fixtures/unit/util/operatingsystem/redhat-7.txt +0 -12
- data/spec/fixtures/unit/util/operatingsystem/sabayon.txt +0 -7
- data/spec/fixtures/unit/util/operatingsystem/wheezy.txt +0 -9
- data/spec/fixtures/unit/util/partitions/partitions/mount +0 -9
- data/spec/fixtures/unit/util/processor/solaris-i86pc +0 -28
- data/spec/fixtures/unit/util/processor/solaris-sun4u +0 -151
- data/spec/fixtures/unit/util/processor/x86-pentium2 +0 -41
- data/spec/fixtures/unit/util/uptime/kstat_boot_time +0 -1
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin +0 -1
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd +0 -1
- data/spec/fixtures/unit/util/uptime/ubuntu_proc_uptime +0 -1
- data/spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries +0 -0
- data/spec/fixtures/unit/util/virtual/solaris10_proc_self_status1 +0 -0
- data/spec/fixtures/unit/util/vlans/centos-5-no-vlans +0 -2
- data/spec/fixtures/unit/util/vlans/linux_vlan_config +0 -6
- data/spec/fixtures/unit/util/xendomains/xendomains +0 -4
- data/spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt +0 -0
- data/spec/fixtures/unit/zfs_version/freebsd_8.2 +0 -14
- data/spec/fixtures/unit/zfs_version/freebsd_9.0 +0 -13
- data/spec/fixtures/unit/zfs_version/linux-fuse_0.6.9 +0 -14
- data/spec/fixtures/unit/zfs_version/solaris_10 +0 -10
- data/spec/fixtures/unit/zfs_version/solaris_11 +0 -12
- data/spec/fixtures/unit/zfs_version/zfs_new +0 -61
- data/spec/fixtures/unit/zfs_version/zfs_old +0 -43
- data/spec/fixtures/unit/zfs_version/zfsonlinux_0.6.1 +0 -13
- data/spec/fixtures/unit/zpool_version/freebsd_8.2 +0 -26
- data/spec/fixtures/unit/zpool_version/freebsd_9.0 +0 -38
- data/spec/fixtures/unit/zpool_version/linux-fuse_0.6.9 +0 -35
- data/spec/fixtures/unit/zpool_version/solaris_10 +0 -31
- data/spec/fixtures/unit/zpool_version/solaris_11 +0 -43
- data/spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1 +0 -48
- data/spec/fixtures/virtual/proc_1_cgroup/in_a_container +0 -9
- data/spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container +0 -8
- data/spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container_with_systemd_slices +0 -10
- data/spec/fixtures/virtual/proc_1_cgroup/not_in_a_container +0 -9
- data/spec/fixtures/virtual/proc_self_status/vserver_2_1/guest +0 -37
- data/spec/fixtures/virtual/proc_self_status/vserver_2_1/host +0 -36
- data/spec/fixtures/virtual/proc_self_status/vserver_2_3/guest +0 -39
- data/spec/fixtures/virtual/proc_self_status/vserver_2_3/host +0 -39
- data/spec/integration/facter_spec.rb +0 -39
- data/spec/integration/util/windows/user_spec.rb +0 -59
- data/spec/lib/facter_spec/cpuinfo.rb +0 -15
- data/spec/lib/facter_spec/windows_network.rb +0 -64
- data/spec/puppetlabs_spec/files.rb +0 -57
- data/spec/puppetlabs_spec/fixtures.rb +0 -49
- data/spec/puppetlabs_spec/matchers.rb +0 -87
- data/spec/puppetlabs_spec/verbose.rb +0 -9
- data/spec/puppetlabs_spec_helper.rb +0 -26
- data/spec/schema/validate_facter_schema.rb +0 -18
- data/spec/shared_contexts/platform.rb +0 -55
- data/spec/shared_formats/parses.rb +0 -3
- data/spec/spec_helper.rb +0 -68
- data/spec/unit/application_spec.rb +0 -110
- data/spec/unit/architecture_spec.rb +0 -63
- data/spec/unit/blockdevices_spec.rb +0 -109
- data/spec/unit/core/aggregate_spec.rb +0 -125
- data/spec/unit/core/directed_graph_spec.rb +0 -79
- data/spec/unit/core/execution/base_spec.rb +0 -130
- data/spec/unit/core/execution/posix_spec.rb +0 -96
- data/spec/unit/core/execution/windows_spec.rb +0 -106
- data/spec/unit/core/execution_spec.rb +0 -42
- data/spec/unit/core/logging_spec.rb +0 -223
- data/spec/unit/core/resolvable_spec.rb +0 -81
- data/spec/unit/core/suitable_spec.rb +0 -106
- data/spec/unit/dhcp_servers_spec.rb +0 -212
- data/spec/unit/domain_spec.rb +0 -310
- data/spec/unit/ec2/rest_spec.rb +0 -168
- data/spec/unit/ec2_spec.rb +0 -139
- data/spec/unit/facter_spec.rb +0 -108
- data/spec/unit/filesystems_spec.rb +0 -50
- data/spec/unit/fqdn_spec.rb +0 -16
- data/spec/unit/gce/metadata_spec.rb +0 -49
- data/spec/unit/gce_spec.rb +0 -34
- data/spec/unit/gid_spec.rb +0 -51
- data/spec/unit/hardwareisa_spec.rb +0 -41
- data/spec/unit/hardwaremodel_spec.rb +0 -58
- data/spec/unit/hostname_spec.rb +0 -40
- data/spec/unit/id_spec.rb +0 -29
- data/spec/unit/interfaces_spec.rb +0 -67
- data/spec/unit/ipaddress6_spec.rb +0 -180
- data/spec/unit/ipaddress_spec.rb +0 -114
- data/spec/unit/kernel_spec.rb +0 -24
- data/spec/unit/kernelmajversion_spec.rb +0 -22
- data/spec/unit/kernelrelease_spec.rb +0 -66
- data/spec/unit/kernelversion_spec.rb +0 -32
- data/spec/unit/ldom_spec.rb +0 -84
- data/spec/unit/lsbdistcodename_spec.rb +0 -30
- data/spec/unit/lsbdistdescription_spec.rb +0 -30
- data/spec/unit/lsbdistid_spec.rb +0 -30
- data/spec/unit/lsbdistrelease_spec.rb +0 -30
- data/spec/unit/lsbmajdistrelease_spec.rb +0 -30
- data/spec/unit/lsbminordistrelease_spec.rb +0 -31
- data/spec/unit/lsbrelease_spec.rb +0 -30
- data/spec/unit/macaddress_spec.rb +0 -76
- data/spec/unit/manufacturer_spec.rb +0 -115
- data/spec/unit/memory_spec.rb +0 -470
- data/spec/unit/netmask_spec.rb +0 -106
- data/spec/unit/operatingsystem/base_spec.rb +0 -76
- data/spec/unit/operatingsystem/cumuluslinux_spec.rb +0 -40
- data/spec/unit/operatingsystem/implementation_spec.rb +0 -50
- data/spec/unit/operatingsystem/linux_spec.rb +0 -559
- data/spec/unit/operatingsystem/sunos_spec.rb +0 -143
- data/spec/unit/operatingsystem/vmkernel_spec.rb +0 -13
- data/spec/unit/operatingsystem/windows_spec.rb +0 -77
- data/spec/unit/operatingsystem_spec.rb +0 -17
- data/spec/unit/operatingsystemmajrelease_spec.rb +0 -21
- data/spec/unit/operatingsystemrelease_spec.rb +0 -20
- data/spec/unit/os_spec.rb +0 -131
- data/spec/unit/osfamily_spec.rb +0 -17
- data/spec/unit/partitions_spec.rb +0 -88
- data/spec/unit/physicalprocessorcount_spec.rb +0 -13
- data/spec/unit/processor_spec.rb +0 -38
- data/spec/unit/processors/os_spec.rb +0 -469
- data/spec/unit/processors_spec.rb +0 -203
- data/spec/unit/ps_spec.rb +0 -42
- data/spec/unit/rackspace_spec.rb +0 -40
- data/spec/unit/rubyplatform_spec.rb +0 -7
- data/spec/unit/selinux_spec.rb +0 -119
- data/spec/unit/ssh_spec.rb +0 -77
- data/spec/unit/system32_spec.rb +0 -28
- data/spec/unit/system_uptime_spec.rb +0 -80
- data/spec/unit/uniqueid_spec.rb +0 -27
- data/spec/unit/uptime_spec.rb +0 -110
- data/spec/unit/util/collection_spec.rb +0 -258
- data/spec/unit/util/config_spec.rb +0 -120
- data/spec/unit/util/confine_spec.rb +0 -148
- data/spec/unit/util/dhcp_servers_spec.rb +0 -63
- data/spec/unit/util/directory_loader_spec.rb +0 -102
- data/spec/unit/util/ec2_spec.rb +0 -184
- data/spec/unit/util/fact_spec.rb +0 -142
- data/spec/unit/util/file_read_spec.rb +0 -29
- data/spec/unit/util/formatter_spec.rb +0 -55
- data/spec/unit/util/ip/windows_spec.rb +0 -80
- data/spec/unit/util/ip_spec.rb +0 -487
- data/spec/unit/util/loader_spec.rb +0 -286
- data/spec/unit/util/macaddress_spec.rb +0 -143
- data/spec/unit/util/macosx_spec.rb +0 -114
- data/spec/unit/util/manufacturer_spec.rb +0 -223
- data/spec/unit/util/normalization_spec.rb +0 -113
- data/spec/unit/util/operatingsystem_spec.rb +0 -107
- data/spec/unit/util/parser_spec.rb +0 -233
- data/spec/unit/util/partitions/partitions_spec.rb +0 -67
- data/spec/unit/util/partitions_spec.rb +0 -19
- data/spec/unit/util/posix_spec.rb +0 -11
- data/spec/unit/util/processor_spec.rb +0 -212
- data/spec/unit/util/registry_spec.rb +0 -76
- data/spec/unit/util/resolution_spec.rb +0 -129
- data/spec/unit/util/solaris_zones_spec.rb +0 -127
- data/spec/unit/util/uptime_spec.rb +0 -131
- data/spec/unit/util/values_spec.rb +0 -171
- data/spec/unit/util/virtual_spec.rb +0 -393
- data/spec/unit/util/vlans_spec.rb +0 -42
- data/spec/unit/util/wmi_spec.rb +0 -19
- data/spec/unit/util/xendomains_spec.rb +0 -114
- data/spec/unit/version_spec.rb +0 -42
- data/spec/unit/virtual_spec.rb +0 -585
- data/spec/unit/zfs_version_spec.rb +0 -87
- data/spec/unit/zonename_spec.rb +0 -14
- data/spec/unit/zones_spec.rb +0 -55
- data/spec/unit/zpool_version_spec.rb +0 -80
- data/spec/watchr.rb +0 -125
@@ -0,0 +1,42 @@
|
|
1
|
+
# Setup compiling the test executable. C++ compile flags are inherited from the parent directory.
|
2
|
+
include_directories(${LEATHERMAN_CATCH_INCLUDE})
|
3
|
+
|
4
|
+
set(TEST_CASES
|
5
|
+
concatenation_test.cc
|
6
|
+
config_document_parser_test.cc
|
7
|
+
config_node_test.cc
|
8
|
+
config_value_test.cc
|
9
|
+
path_test.cc
|
10
|
+
token_test.cc
|
11
|
+
tokenizer_test.cc
|
12
|
+
test_utils.cc
|
13
|
+
config_document_tests.cc
|
14
|
+
conf_parser_test.cc
|
15
|
+
config_substitution_test.cc
|
16
|
+
config_value_factory_test.cc
|
17
|
+
config_test.cc
|
18
|
+
program_options.cc
|
19
|
+
)
|
20
|
+
|
21
|
+
add_executable(lib${PROJECT_NAME}_test $<TARGET_OBJECTS:libprojectsrc> ${TEST_CASES} main.cc)
|
22
|
+
|
23
|
+
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR ${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
|
24
|
+
target_link_libraries(lib${PROJECT_NAME}_test rt)
|
25
|
+
endif()
|
26
|
+
|
27
|
+
target_link_libraries(lib${PROJECT_NAME}_test
|
28
|
+
${Boost_LIBRARIES}
|
29
|
+
${LEATHERMAN_LIBRARIES}
|
30
|
+
${CMAKE_THREAD_LIBS_INIT}
|
31
|
+
)
|
32
|
+
|
33
|
+
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND BOOST_STATIC AND LEATHERMAN_USE_LOCALES)
|
34
|
+
target_link_libraries(lib${PROJECT_NAME}_test iconv)
|
35
|
+
endif()
|
36
|
+
|
37
|
+
add_test(NAME "unit_tests" COMMAND lib${PROJECT_NAME}_test)
|
38
|
+
|
39
|
+
configure_file (
|
40
|
+
"${CMAKE_CURRENT_LIST_DIR}/fixtures.hpp.in"
|
41
|
+
"${CMAKE_CURRENT_LIST_DIR}/fixtures.hpp"
|
42
|
+
)
|
@@ -0,0 +1,401 @@
|
|
1
|
+
#include <catch.hpp>
|
2
|
+
|
3
|
+
#include <hocon/config.hpp>
|
4
|
+
#include "test_utils.hpp"
|
5
|
+
#include <hocon/config_list.hpp>
|
6
|
+
|
7
|
+
using namespace hocon;
|
8
|
+
using namespace hocon::test_utils;
|
9
|
+
|
10
|
+
TEST_CASE("concatenation") {
|
11
|
+
|
12
|
+
SECTION("no substitutions string concatenation") {
|
13
|
+
auto conf = parse_config(R"(a : true "xyz" 123 foo)")->resolve();
|
14
|
+
REQUIRE(conf->get_string("a") == "true xyz 123 foo");
|
15
|
+
}
|
16
|
+
|
17
|
+
SECTION("trivial string concatenation") {
|
18
|
+
auto conf = parse_config(R"(a : ${x}foo, x = 1)")->resolve();
|
19
|
+
REQUIRE(conf->get_string("a") == "1foo");
|
20
|
+
}
|
21
|
+
|
22
|
+
SECTION("two substitution string concatenation") {
|
23
|
+
auto conf = parse_config(R"(a : ${x}foo${x}, x = 1)")->resolve();
|
24
|
+
REQUIRE(conf->get_string("a") == "1foo1");
|
25
|
+
}
|
26
|
+
|
27
|
+
SECTION("string concatenation cannot span lines") {
|
28
|
+
bool thrown = false;
|
29
|
+
try {
|
30
|
+
auto conf = parse_config(R"(a : ${x}
|
31
|
+
foo, x = 1)")->resolve();
|
32
|
+
} catch (const hocon::parse_exception& e) {
|
33
|
+
thrown = true;
|
34
|
+
REQUIRE(std::string(e.what()).find("not be followed") != std::string::npos);
|
35
|
+
}
|
36
|
+
REQUIRE(thrown);
|
37
|
+
}
|
38
|
+
|
39
|
+
SECTION("string concatenation cannot contain objects") {
|
40
|
+
bool thrown = false;
|
41
|
+
try {
|
42
|
+
auto conf = parse_config("R(a : abc { x : y })")->resolve();
|
43
|
+
} catch (const hocon::config_exception& e) {
|
44
|
+
thrown = true;
|
45
|
+
REQUIRE_STRING_CONTAINS(e.what(), "Cannot concatenate");
|
46
|
+
REQUIRE_STRING_CONTAINS(e.what(), "abc");
|
47
|
+
// TODO: Add this when we can properly print subexpressions from exceptions
|
48
|
+
// REQUIRE_STRING_CONTAINS(e.what(), R"({"X":"Y"})");
|
49
|
+
}
|
50
|
+
REQUIRE(thrown);
|
51
|
+
}
|
52
|
+
|
53
|
+
SECTION("object concatenation cannot contain null") {
|
54
|
+
bool thrown = false;
|
55
|
+
try {
|
56
|
+
auto conf = parse_config(R"(a : null { x : y })")->resolve();
|
57
|
+
} catch (const hocon::config_exception& e) {
|
58
|
+
thrown = true;
|
59
|
+
REQUIRE_STRING_CONTAINS(e.what(), "Cannot concatenate");
|
60
|
+
REQUIRE_STRING_CONTAINS(e.what(), "null");
|
61
|
+
// TODO: Add this when we can properly print subexpressions from exceptions
|
62
|
+
// REQUIRE_STRING_CONTAINS(e.what(), R"({"X":"Y"})");
|
63
|
+
}
|
64
|
+
REQUIRE(thrown);
|
65
|
+
}
|
66
|
+
|
67
|
+
SECTION("string concatenation cannot contain arrays") {
|
68
|
+
bool thrown = false;
|
69
|
+
try {
|
70
|
+
auto conf = parse_config(R"(a : abc [1, 2])")->resolve();
|
71
|
+
} catch (const hocon::config_exception& e) {
|
72
|
+
thrown = true;
|
73
|
+
REQUIRE_STRING_CONTAINS(e.what(), "Cannot concatenate");
|
74
|
+
REQUIRE_STRING_CONTAINS(e.what(), "abc");
|
75
|
+
// TODO: Add this when we can properly print subexpressions from exceptions
|
76
|
+
// REQUIRE_STRING_CONTAINS(e.what(), "[1,2]");
|
77
|
+
}
|
78
|
+
REQUIRE(thrown);
|
79
|
+
}
|
80
|
+
|
81
|
+
SECTION("string concatenation cannot contain objects via substitution") {
|
82
|
+
bool thrown = false;
|
83
|
+
try {
|
84
|
+
auto conf = parse_config(R"(a : abc ${x}, x: { y : z })")->resolve();
|
85
|
+
} catch (const hocon::config_exception& e) {
|
86
|
+
thrown = true;
|
87
|
+
REQUIRE_STRING_CONTAINS(e.what(), "Cannot concatenate");
|
88
|
+
REQUIRE_STRING_CONTAINS(e.what(), "abc");
|
89
|
+
// TODO: Add this when we can properly print subexpressions in exceptions
|
90
|
+
// REQUIRE_STRING_CONTAINS(e.what(), R"({"X":"Y"})");
|
91
|
+
}
|
92
|
+
REQUIRE(thrown);
|
93
|
+
|
94
|
+
}
|
95
|
+
|
96
|
+
SECTION("string concatenation cannot contain arrays via substitution") {
|
97
|
+
bool thrown = false;
|
98
|
+
try {
|
99
|
+
auto conf = parse_config(R"(a : abc ${x}, x: [1, 2])")->resolve();
|
100
|
+
} catch (const hocon::config_exception& e) {
|
101
|
+
thrown = true;
|
102
|
+
REQUIRE_STRING_CONTAINS(e.what(), "Cannot concatenate");
|
103
|
+
REQUIRE_STRING_CONTAINS(e.what(), "abc");
|
104
|
+
// TODO: Add this when we can properly print subexpressions in exceptions
|
105
|
+
// REQUIRE_STRING_CONTAINS(e.what(), "[1,2]");
|
106
|
+
}
|
107
|
+
REQUIRE(thrown);
|
108
|
+
}
|
109
|
+
|
110
|
+
SECTION("list concatenation with no substitutions") {
|
111
|
+
auto conf = parse_config(" a : [1,2] [3,4] ");
|
112
|
+
std::vector<unwrapped_value> expected { 1,2,3,4 };
|
113
|
+
unwrapped_value v(expected);
|
114
|
+
bool test = v == conf->get_list("a")->unwrapped();
|
115
|
+
REQUIRE(test);
|
116
|
+
}
|
117
|
+
|
118
|
+
SECTION("list concatenation with substitutions") {
|
119
|
+
auto conf = parse_config(" a : ${x} [3,4] ${y}, x : [1,2], y : [5,6] ")->resolve();
|
120
|
+
std::vector<unwrapped_value> expected {1,2,3,4,5,6};
|
121
|
+
unwrapped_value v(expected);
|
122
|
+
bool test = v == conf->get_list("a")->unwrapped();
|
123
|
+
REQUIRE(test);
|
124
|
+
}
|
125
|
+
|
126
|
+
SECTION("list concatenation with self-references") {
|
127
|
+
auto conf = parse_config(" a : [1, 2], a : ${a} [3,4], a : ${a} [5,6] ")->resolve();
|
128
|
+
std::vector<unwrapped_value> expected {1,2,3,4,5,6};
|
129
|
+
unwrapped_value v(expected);
|
130
|
+
bool test = v == conf->get_list("a")->unwrapped();
|
131
|
+
REQUIRE(test);
|
132
|
+
}
|
133
|
+
|
134
|
+
SECTION("list concat can span lines inside brackets") {
|
135
|
+
auto conf = parse_config(" a : [1,2\n] [3,4] ");
|
136
|
+
std::vector<unwrapped_value> v {1,2,3,4};
|
137
|
+
unwrapped_value expected(v);
|
138
|
+
bool test = expected == conf->get_list("a")->unwrapped();
|
139
|
+
REQUIRE(test);
|
140
|
+
}
|
141
|
+
|
142
|
+
SECTION("list concatenation cannot span lines") {
|
143
|
+
bool thrown = false;
|
144
|
+
try {
|
145
|
+
auto conf = parse_config(R"(a: [1,2]
|
146
|
+
[3,4])")->resolve();
|
147
|
+
} catch (const hocon::parse_exception& e) {
|
148
|
+
thrown = true;
|
149
|
+
REQUIRE_STRING_CONTAINS(e.what(), "expecting");
|
150
|
+
REQUIRE_STRING_CONTAINS(e.what(), "'['");
|
151
|
+
}
|
152
|
+
REQUIRE(thrown);
|
153
|
+
}
|
154
|
+
|
155
|
+
SECTION("object concatenation without substitutions") {
|
156
|
+
auto conf = parse_config(" a : { b : c } { x : y } ");
|
157
|
+
std::unordered_map<std::string, unwrapped_value> m {{"b", std::string("c")}, {"x", std::string("y")}};
|
158
|
+
unwrapped_value expected(m);
|
159
|
+
bool test = expected == conf->get_object("a")->unwrapped();
|
160
|
+
REQUIRE(test);
|
161
|
+
}
|
162
|
+
|
163
|
+
SECTION("object concatenation should preserve merge order") {
|
164
|
+
auto conf = parse_config(" a : { b : 1 } { b : 2 } { b : 3 } { b : 4 } ");
|
165
|
+
REQUIRE(4 == conf->get_int("a.b"));
|
166
|
+
}
|
167
|
+
|
168
|
+
SECTION("object concatenation with substitutions") {
|
169
|
+
auto conf = parse_config(" a : ${x} { b : 1 } ${y}, x : { a : 0 }, y : { c : 2 } ")->resolve();
|
170
|
+
std::unordered_map<std::string, unwrapped_value> m {{"a", 0}, {"b", 1}, {"c", 2}};
|
171
|
+
unwrapped_value expected(m);
|
172
|
+
bool test = expected == conf->get_object("a")->unwrapped();
|
173
|
+
REQUIRE(test);
|
174
|
+
}
|
175
|
+
|
176
|
+
SECTION("object concatenation with self-references") {
|
177
|
+
auto conf = parse_config(" a : { a : 0 }, a : ${a} { b : 1 }, a : ${a} { c : 2 } ")->resolve();
|
178
|
+
std::unordered_map<std::string, unwrapped_value> m {{"a", 0}, {"b", 1}, {"c", 2}};
|
179
|
+
unwrapped_value expected(m);
|
180
|
+
bool test = expected == conf->get_object("a")->unwrapped();
|
181
|
+
REQUIRE(test);
|
182
|
+
}
|
183
|
+
|
184
|
+
SECTION("object concatenation self-reference override") {
|
185
|
+
auto conf = parse_config(" a : { b : 3 }, a : { b : 2 } ${a} ")->resolve();
|
186
|
+
std::unordered_map<std::string, unwrapped_value> m {{"b", 3}};
|
187
|
+
unwrapped_value expected(m);
|
188
|
+
bool test = expected == conf->get_object("a")->unwrapped();
|
189
|
+
REQUIRE(test);
|
190
|
+
}
|
191
|
+
|
192
|
+
SECTION("object concatenation can span lines inside braces") {
|
193
|
+
auto conf = parse_config(" a : { b : c\n } { x : y } ");
|
194
|
+
std::unordered_map<std::string, unwrapped_value> m {{"b", std::string("c")}, {"x", std::string("y")}};
|
195
|
+
unwrapped_value expected(m);
|
196
|
+
bool test = expected == conf->get_object("a")->unwrapped();
|
197
|
+
REQUIRE(test);
|
198
|
+
}
|
199
|
+
|
200
|
+
SECTION("object concatenation cannot span lines") {
|
201
|
+
bool thrown = false;
|
202
|
+
try {
|
203
|
+
auto conf = parse_config(R"(A : { b : c}
|
204
|
+
{x : y })")->resolve();
|
205
|
+
} catch (const hocon::parse_exception& e) {
|
206
|
+
thrown = true;
|
207
|
+
REQUIRE_STRING_CONTAINS(e.what(), "expecting");
|
208
|
+
REQUIRE_STRING_CONTAINS(e.what(), "'{'");
|
209
|
+
}
|
210
|
+
REQUIRE(thrown);
|
211
|
+
}
|
212
|
+
|
213
|
+
// TODO: stringConcatInsideArrayValue
|
214
|
+
// TODO: stringNonConcatInsideArrayValue
|
215
|
+
// TODO: objectConcatInsideArrayValue
|
216
|
+
// TODO: objectNonConcatInsideArrayValue
|
217
|
+
|
218
|
+
SECTION("list concatenation inside an array") {
|
219
|
+
auto conf = parse_config(" a : [ [1, 2] [3, 4] ] ");
|
220
|
+
std::vector<unwrapped_value> inner {1,2,3,4};
|
221
|
+
std::vector<unwrapped_value> outer;
|
222
|
+
outer.emplace_back(inner);
|
223
|
+
unwrapped_value expected(outer);
|
224
|
+
bool test = expected == conf->get_list("a")->unwrapped();
|
225
|
+
REQUIRE(test);
|
226
|
+
};
|
227
|
+
// TODO: listNonConcatInsideArrayValue
|
228
|
+
// These all require we have the data access methods fleshed out
|
229
|
+
|
230
|
+
SECTION("string concatenations can be keys") {
|
231
|
+
auto conf = parse_config(R"(123 foo : "value" )")->resolve();
|
232
|
+
REQUIRE(conf->get_string("123 foo") == "value");
|
233
|
+
}
|
234
|
+
|
235
|
+
SECTION("objects are not keys") {
|
236
|
+
bool thrown = false;
|
237
|
+
try {
|
238
|
+
auto conf = parse_config(R"({ { a : 1 } : "value")")->resolve();
|
239
|
+
} catch (const hocon::parse_exception& e) {
|
240
|
+
thrown = true;
|
241
|
+
REQUIRE_STRING_CONTAINS(e.what(), "expecting a close");
|
242
|
+
REQUIRE_STRING_CONTAINS(e.what(), "'{'");
|
243
|
+
}
|
244
|
+
REQUIRE(thrown);
|
245
|
+
}
|
246
|
+
|
247
|
+
SECTION("arrays are not keys") {
|
248
|
+
bool thrown = false;
|
249
|
+
try {
|
250
|
+
auto conf = parse_config(R"({ [ 1, 2 ] : "value")")->resolve();
|
251
|
+
} catch (const hocon::parse_exception& e) {
|
252
|
+
thrown = true;
|
253
|
+
REQUIRE_STRING_CONTAINS(e.what(), "expecting a close");
|
254
|
+
REQUIRE_STRING_CONTAINS(e.what(), "'['");
|
255
|
+
}
|
256
|
+
REQUIRE(thrown);
|
257
|
+
}
|
258
|
+
|
259
|
+
// TODO: '+=' pending tests go here
|
260
|
+
|
261
|
+
// TODO: arrayConcatenationInDoubleNestedDelayedMerge
|
262
|
+
// TODO: arrayConcatenationAsPartOfDelayedMerge
|
263
|
+
// TODO: arrayConcatenationInDoubleNestedDelayedMerge2
|
264
|
+
// TODO: arrayConcatenationInTripleNestedDelayedMerge
|
265
|
+
// Again, waiting on good accessors for lists
|
266
|
+
|
267
|
+
SECTION("string concatenation with defined optional substitution") {
|
268
|
+
auto conf = parse_config("bar=bar, a = foo${?bar}")->resolve();
|
269
|
+
REQUIRE(conf->get_string("a") == "foobar");
|
270
|
+
}
|
271
|
+
|
272
|
+
// TODO: concatUndefinedSubstitutionWithArray
|
273
|
+
// TODO: concatDefinedOptionalSubstitutionWithArray
|
274
|
+
// Guess why?
|
275
|
+
|
276
|
+
SECTION("object concatenation with defined optional substitution") {
|
277
|
+
auto conf = parse_config(R"(bar={ y : 42 }, a = { x : "foo" } ${?bar})")->resolve();
|
278
|
+
REQUIRE(conf->get_string("a.x") == "foo");
|
279
|
+
REQUIRE(conf->get_int("a.y") == 42);
|
280
|
+
}
|
281
|
+
|
282
|
+
SECTION("concatenate two undefined substitutions with a space") {
|
283
|
+
auto conf = parse_config(R"(foo=abc, bar=def, a = ${foo} ${bar})")->resolve();
|
284
|
+
REQUIRE(conf->get_string("a") == "abc def");
|
285
|
+
}
|
286
|
+
|
287
|
+
SECTION("concatenate object substitutions with no space") {
|
288
|
+
auto conf = parse_config(R"(foo = { a : 1}, bar = { b : 2 }, x = ${foo}${bar})")->resolve();
|
289
|
+
REQUIRE(conf->get_int("x.a") == 1);
|
290
|
+
REQUIRE(conf->get_int("x.b") == 2);
|
291
|
+
}
|
292
|
+
|
293
|
+
SECTION("concatenate object substitutions with a space") {
|
294
|
+
auto conf = parse_config(R"(foo = { a : 1}, bar = { b : 2 }, x = ${foo} ${bar})")->resolve();
|
295
|
+
REQUIRE(conf->get_int("x.a") == 1);
|
296
|
+
REQUIRE(conf->get_int("x.b") == 2);
|
297
|
+
}
|
298
|
+
|
299
|
+
SECTION("concatenate object substitutions with quoted space") {
|
300
|
+
REQUIRE_THROWS_AS(
|
301
|
+
parse_config(R"(foo = { a : 1}, bar = { b : 2 }, x = ${foo}" "${bar})")->resolve(),
|
302
|
+
config_exception
|
303
|
+
);
|
304
|
+
}
|
305
|
+
|
306
|
+
// TODO: concatSubstitutionsThatAreListsWithSpace
|
307
|
+
|
308
|
+
SECTION("concatenate list substitutions with quoted space") {
|
309
|
+
REQUIRE_THROWS_AS(
|
310
|
+
parse_config(R"(foo = [1], bar = [2], x = ${foo}" "${bar})")->resolve(),
|
311
|
+
config_exception
|
312
|
+
);
|
313
|
+
}
|
314
|
+
|
315
|
+
SECTION("string concatenation with undefined substitution") {
|
316
|
+
auto conf = parse_config("a = foo${?bar}")->resolve();
|
317
|
+
REQUIRE(conf->get_string("a") == "foo");
|
318
|
+
}
|
319
|
+
|
320
|
+
SECTION("object concatenation with undefined substitution") {
|
321
|
+
auto conf = parse_config(R"(a = { x : "foo" } ${?bar})")->resolve();
|
322
|
+
REQUIRE(conf->get_string("a.x") == "foo");
|
323
|
+
}
|
324
|
+
|
325
|
+
SECTION("concatenate two undefined substitutions") {
|
326
|
+
auto conf = parse_config(R"(a = ${?foo}${?bar})")->resolve();
|
327
|
+
REQUIRE_FALSE(conf->has_path("a"));
|
328
|
+
}
|
329
|
+
|
330
|
+
SECTION("concatenate several undefined substitusion") {
|
331
|
+
auto conf = parse_config(R"(a = ${?foo}${?bar}${?baz}${?woooo})")->resolve();
|
332
|
+
REQUIRE_FALSE(conf->has_path("a"));
|
333
|
+
}
|
334
|
+
|
335
|
+
SECTION("concatenate two undefined substitutions with a space") {
|
336
|
+
auto conf = parse_config(R"(a = ${?foo} ${?bar})")->resolve();
|
337
|
+
REQUIRE(conf->get_string("a") == " ");
|
338
|
+
}
|
339
|
+
|
340
|
+
SECTION("concatenate two undefined substitutions with an empty string") {
|
341
|
+
auto conf = parse_config(R"(a = ""${?foo}${?bar})")->resolve();
|
342
|
+
REQUIRE(conf->get_string("a") == "");
|
343
|
+
}
|
344
|
+
}
|
345
|
+
|
346
|
+
TEST_CASE("Concatenation pending '+=' implementation", "[!shouldfail]") {
|
347
|
+
// TODO: emptyArrayPlusEquals
|
348
|
+
// TODO: missingArrayPlusEquals
|
349
|
+
// TODO: shortArrayPlusEquals
|
350
|
+
// You guessed it, these need a good story around pulling arrays out
|
351
|
+
|
352
|
+
SECTION("can't concatenate numbers as an array using +=") {
|
353
|
+
bool thrown = false;
|
354
|
+
try {
|
355
|
+
auto conf = parse_config(R"(a = 10, a += 2)")->resolve();
|
356
|
+
} catch (const hocon::config_exception& e) {
|
357
|
+
thrown = true;
|
358
|
+
REQUIRE_STRING_CONTAINS(e.what(), "Cannot concatenate");
|
359
|
+
REQUIRE_STRING_CONTAINS(e.what(), "10");
|
360
|
+
REQUIRE_STRING_CONTAINS(e.what(), "[2]");
|
361
|
+
}
|
362
|
+
REQUIRE(thrown);
|
363
|
+
}
|
364
|
+
|
365
|
+
SECTION("can't concatenate strings with an array using +=") {
|
366
|
+
bool thrown = false;
|
367
|
+
try {
|
368
|
+
auto conf = parse_config(R"(a = "abc", a += 2)")->resolve();
|
369
|
+
} catch (const hocon::config_exception& e) {
|
370
|
+
thrown = true;
|
371
|
+
REQUIRE_STRING_CONTAINS(e.what(), "Cannot concatenate");
|
372
|
+
REQUIRE_STRING_CONTAINS(e.what(), "abc");
|
373
|
+
REQUIRE_STRING_CONTAINS(e.what(), "[2]");
|
374
|
+
}
|
375
|
+
REQUIRE(thrown);
|
376
|
+
}
|
377
|
+
|
378
|
+
SECTION("can't concatenate objectss with an array using +=") {
|
379
|
+
bool thrown = false;
|
380
|
+
try {
|
381
|
+
auto conf = parse_config(R"(a = { x : y }, a += 2)")->resolve();
|
382
|
+
} catch (const hocon::config_exception& e) {
|
383
|
+
thrown = true;
|
384
|
+
REQUIRE_STRING_CONTAINS(e.what(), "Cannot concatenate");
|
385
|
+
REQUIRE_STRING_CONTAINS(e.what(), R"("x":"y")");
|
386
|
+
REQUIRE_STRING_CONTAINS(e.what(), "[2]");
|
387
|
+
}
|
388
|
+
REQUIRE(thrown);
|
389
|
+
}
|
390
|
+
|
391
|
+
// TODO: plusEqualsNestedPath
|
392
|
+
// TODO: plusEqualsNestedObjects
|
393
|
+
// TODO: plusEqualsSingleNestedObject
|
394
|
+
// TOOD: substitutionPlusEqualsSubstitution
|
395
|
+
// TODO: plusEqualsMultipleTimes
|
396
|
+
// TOOD: plusEqualsMultipleTimesNested
|
397
|
+
// TODO: plusEqualsAnObjectMultipleTimes
|
398
|
+
// TODO: plusEqualsAnObjectMultipleTimesNested
|
399
|
+
// TOOD: plusEqualsMultipleTimesNestedInArray
|
400
|
+
// TODO: plusEqualsMultipleTimesNestedInPlusEquals
|
401
|
+
}
|
@@ -0,0 +1,715 @@
|
|
1
|
+
#include <catch.hpp>
|
2
|
+
#include "test_utils.hpp"
|
3
|
+
|
4
|
+
#include <boost/algorithm/string/replace.hpp>
|
5
|
+
|
6
|
+
#include <hocon/config.hpp>
|
7
|
+
#include <hocon/config_list.hpp>
|
8
|
+
#include <hocon/config_exception.hpp>
|
9
|
+
#include <hocon/config_parse_options.hpp>
|
10
|
+
#include <internal/values/simple_config_object.hpp>
|
11
|
+
#include <internal/values/config_reference.hpp>
|
12
|
+
#include <internal/substitution_expression.hpp>
|
13
|
+
#include <internal/parseable.hpp>
|
14
|
+
#include <internal/resolve_context.hpp>
|
15
|
+
#include <internal/path_parser.hpp>
|
16
|
+
#include "test_utils.hpp"
|
17
|
+
|
18
|
+
using namespace std;
|
19
|
+
using namespace hocon;
|
20
|
+
using namespace hocon::test_utils;
|
21
|
+
|
22
|
+
static shared_value parse_without_resolving(string s) {
|
23
|
+
auto options = config_parse_options()
|
24
|
+
.set_origin_description(make_shared<string>("test conf string"))
|
25
|
+
.set_syntax(config_syntax::CONF);
|
26
|
+
return parseable::new_string(move(s), move(options))->parse_value();
|
27
|
+
}
|
28
|
+
|
29
|
+
static shared_value parse(string s) {
|
30
|
+
auto tree = parse_without_resolving(move(s));
|
31
|
+
if (auto obj = dynamic_pointer_cast<const config_object>(tree)) {
|
32
|
+
return resolve_context::resolve(tree, obj, config_resolve_options(false));
|
33
|
+
}
|
34
|
+
return tree;
|
35
|
+
}
|
36
|
+
|
37
|
+
TEST_CASE("invalid conf throws") {
|
38
|
+
for (auto const& invalid : whitespace_variations(invalid_conf(), false)) {
|
39
|
+
CAPTURE(invalid.test);
|
40
|
+
REQUIRE_THROWS_AS(parse(invalid.test), config_exception);
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
TEST_CASE("valid conf works") {
|
45
|
+
// all we're checking here unfortunately is that it doesn't throw.
|
46
|
+
// for a more thorough check, use the EquivalentsTest stuff.
|
47
|
+
for (auto const& valid : whitespace_variations(valid_conf(), true)) {
|
48
|
+
CAPTURE(valid.test);
|
49
|
+
REQUIRE_NOTHROW(parse(valid.test));
|
50
|
+
auto our_ast = parse(valid.test);
|
51
|
+
// let's also check round-trip rendering
|
52
|
+
auto rendered = our_ast->render();
|
53
|
+
CAPTURE(rendered);
|
54
|
+
auto reparsed = parse(rendered);
|
55
|
+
REQUIRE(*our_ast == *reparsed);
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
static path parse_path(string s) {
|
60
|
+
// parse first by wrapping into a whole document and using the regular parser.
|
61
|
+
shared_value tree;
|
62
|
+
CAPTURE(s);
|
63
|
+
REQUIRE_NOTHROW(tree = parse_without_resolving("[${"+s+"}]"));
|
64
|
+
path result = [&]() {
|
65
|
+
if (auto list = dynamic_pointer_cast<const config_list>(tree)) {
|
66
|
+
if (auto ref = dynamic_pointer_cast<const config_reference>(list->get(0))) {
|
67
|
+
return ref->expression()->get_path();
|
68
|
+
}
|
69
|
+
}
|
70
|
+
return path();
|
71
|
+
}();
|
72
|
+
|
73
|
+
// also parse with the standalone path parser and be sure the
|
74
|
+
// outcome is the same
|
75
|
+
path should_be_same;
|
76
|
+
REQUIRE_NOTHROW(should_be_same = path_parser::parse_path(s));
|
77
|
+
REQUIRE(result == should_be_same);
|
78
|
+
|
79
|
+
return result;
|
80
|
+
}
|
81
|
+
|
82
|
+
TEST_CASE("path parsing") {
|
83
|
+
REQUIRE(path({"a"}) == parse_path("a"));
|
84
|
+
REQUIRE(path(vector<string>{"a", "b"}) == parse_path("a.b"));
|
85
|
+
REQUIRE(path({"a.b"}) == parse_path("\"a.b\""));
|
86
|
+
REQUIRE(path({"a."}) == parse_path("\"a.\""));
|
87
|
+
REQUIRE(path({".b"}) == parse_path("\".b\""));
|
88
|
+
REQUIRE(path({"true"}) == parse_path("true"));
|
89
|
+
REQUIRE(path({"a"}) == parse_path(" a "));
|
90
|
+
REQUIRE(path(vector<string>{"a ", "b"}) == parse_path(" a .b"));
|
91
|
+
REQUIRE(path(vector<string>{"a ", " b"}) == parse_path(" a . b"));
|
92
|
+
REQUIRE(path({"a b"}) == parse_path(" a b"));
|
93
|
+
REQUIRE(path(vector<string>{"a", "b.c", "d"}) == parse_path("a.\"b.c\".d"));
|
94
|
+
REQUIRE(path(vector<string>{"3", "14"}) == parse_path("3.14"));
|
95
|
+
REQUIRE(path(vector<string>{"3", "14", "159"}) == parse_path("3.14.159"));
|
96
|
+
REQUIRE(path(vector<string>{"a3", "14"}) == parse_path("a3.14"));
|
97
|
+
REQUIRE(path({""}) == parse_path("\"\""));
|
98
|
+
REQUIRE(path(vector<string>{"a", "", "b"}) == parse_path("a.\"\".b"));
|
99
|
+
REQUIRE(path(vector<string>{"a", ""}) == parse_path("a.\"\""));
|
100
|
+
REQUIRE(path(vector<string>{"", "b"}) == parse_path("\"\".b"));
|
101
|
+
REQUIRE(path(vector<string>{"", "", ""}) == parse_path(R"( "".""."" )"));
|
102
|
+
REQUIRE(path({"a-c"}) == parse_path("a-c"));
|
103
|
+
REQUIRE(path({"a_c"}) == parse_path("a_c"));
|
104
|
+
REQUIRE(path({"-"}) == parse_path("\"-\""));
|
105
|
+
REQUIRE(path({"-"}) == parse_path("-"));
|
106
|
+
REQUIRE(path({"-foo"}) == parse_path("-foo"));
|
107
|
+
REQUIRE(path({"-10"}) == parse_path("-10"));
|
108
|
+
|
109
|
+
// here 10.0 is part of an unquoted string;
|
110
|
+
REQUIRE(path(vector<string>{"foo10", "0"}) == parse_path("foo10.0"));
|
111
|
+
// here 10.0 is a number that gets value-concatenated;
|
112
|
+
REQUIRE(path(vector<string>{"10", "0foo"}) == parse_path("10.0foo"));
|
113
|
+
// just a number;
|
114
|
+
REQUIRE(path(vector<string>{"10", "0"}) == parse_path("10.0"));
|
115
|
+
// multiple-decimal number;
|
116
|
+
REQUIRE(path(vector<string>{"1", "2", "3", "4"}) == parse_path("1.2.3.4"));
|
117
|
+
|
118
|
+
for (string invalid : {"", " ", " \n \n ", "a.", ".b", "a..b", "a${b}c", "\"\".", ".\"\""}) {
|
119
|
+
REQUIRE_THROWS_AS(parse_without_resolving("[${"+invalid+"}]"), bad_path_exception);
|
120
|
+
REQUIRE_THROWS_AS(path_parser::parse_path(invalid), bad_path_exception);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
TEST_CASE("duplicate key last wins") {
|
125
|
+
auto obj = parse_config(R"({ "a" : 10, "a" : 11 } )");
|
126
|
+
REQUIRE(1u == obj->root()->size());
|
127
|
+
REQUIRE(11 == obj->get_int("a"));
|
128
|
+
}
|
129
|
+
|
130
|
+
TEST_CASE("duplicate key objects merged") {
|
131
|
+
auto obj = parse_config(R"({ "a" : { "x" : 1, "y" : 2 }, "a" : { "x" : 42, "z" : 100 } })");
|
132
|
+
REQUIRE(1u == obj->root()->size());
|
133
|
+
REQUIRE(3u == obj->get_object("a")->size());
|
134
|
+
REQUIRE(42 == obj->get_int("a.x"));
|
135
|
+
REQUIRE(2 == obj->get_int("a.y"));
|
136
|
+
REQUIRE(100 == obj->get_int("a.z"));
|
137
|
+
}
|
138
|
+
|
139
|
+
TEST_CASE("duplicate key objects merged recursively") {
|
140
|
+
auto obj = parse_config(R"({ "a" : { "b" : { "x" : 1, "y" : 2 } }, "a" : { "b" : { "x" : 42, "z" : 100 } } })");
|
141
|
+
REQUIRE(1u == obj->root()->size());
|
142
|
+
REQUIRE(1u == obj->get_object("a")->size());
|
143
|
+
REQUIRE(3u == obj->get_object("a.b")->size());
|
144
|
+
REQUIRE(42 == obj->get_int("a.b.x"));
|
145
|
+
REQUIRE(2 == obj->get_int("a.b.y"));
|
146
|
+
REQUIRE(100 == obj->get_int("a.b.z"));
|
147
|
+
}
|
148
|
+
|
149
|
+
TEST_CASE("duplicate key objects merged recursively deeper") {
|
150
|
+
auto obj = parse_config(R"({ "a" : { "b" : { "c" : { "x" : 1, "y" : 2 } } }, "a" : { "b" : { "c" : { "x" : 42, "z" : 100 } } } })");
|
151
|
+
REQUIRE(1u == obj->root()->size());
|
152
|
+
REQUIRE(1u == obj->get_object("a")->size());
|
153
|
+
REQUIRE(1u == obj->get_object("a.b")->size());
|
154
|
+
REQUIRE(3u == obj->get_object("a.b.c")->size());
|
155
|
+
REQUIRE(42 == obj->get_int("a.b.c.x"));
|
156
|
+
REQUIRE(2 == obj->get_int("a.b.c.y"));
|
157
|
+
REQUIRE(100 == obj->get_int("a.b.c.z"));
|
158
|
+
}
|
159
|
+
|
160
|
+
TEST_CASE("duplicate key object null object") {
|
161
|
+
auto obj = parse_config(R"({ a : { b : 1 }, a : null, a : { c : 2 } })");
|
162
|
+
REQUIRE(1u == obj->root()->size());
|
163
|
+
REQUIRE(1u == obj->get_object("a")->size());
|
164
|
+
REQUIRE(2 == obj->get_int("a.c"));
|
165
|
+
}
|
166
|
+
|
167
|
+
TEST_CASE("duplicate key object number object") {
|
168
|
+
auto obj = parse_config(R"({ a : { b : 1 }, a : 42, a : { c : 2 } })");
|
169
|
+
REQUIRE(1u == obj->root()->size());
|
170
|
+
REQUIRE(1u == obj->get_object("a")->size());
|
171
|
+
REQUIRE(2 == obj->get_int("a.c"));
|
172
|
+
}
|
173
|
+
|
174
|
+
TEST_CASE("implied comma handling") {
|
175
|
+
auto valids = {
|
176
|
+
R"(
|
177
|
+
// one line
|
178
|
+
{
|
179
|
+
a : y, b : z, c : [ 1, 2, 3 ]
|
180
|
+
}
|
181
|
+
)", R"(
|
182
|
+
// multiline but with all commas
|
183
|
+
{
|
184
|
+
a : y,
|
185
|
+
b : z,
|
186
|
+
c : [
|
187
|
+
1,
|
188
|
+
2,
|
189
|
+
3,
|
190
|
+
],
|
191
|
+
}
|
192
|
+
)", R"(
|
193
|
+
// multiline with no commas
|
194
|
+
{
|
195
|
+
a : y
|
196
|
+
b : z
|
197
|
+
c : [
|
198
|
+
1
|
199
|
+
2
|
200
|
+
3
|
201
|
+
]
|
202
|
+
}
|
203
|
+
)"
|
204
|
+
};
|
205
|
+
|
206
|
+
auto drop_curlies = [](string const &s) {
|
207
|
+
// drop the outside curly braces
|
208
|
+
auto first = s.find('{');
|
209
|
+
auto last = s.rfind('}');
|
210
|
+
return s.substr(0, first) + s.substr(first + 1, last - (first + 1)) + s.substr(last + 1);
|
211
|
+
};
|
212
|
+
|
213
|
+
auto changes = vector<function<string(string const &)>>{
|
214
|
+
[](string const &s) { return s; },
|
215
|
+
[](string const &s) { return boost::algorithm::replace_all_copy(s, "\n", "\n\n"); },
|
216
|
+
[](string const &s) { return boost::algorithm::replace_all_copy(s, "\n", "\n\n\n"); },
|
217
|
+
[](string const &s) { return boost::algorithm::replace_all_copy(s, ",\n", "\n,\n"); },
|
218
|
+
[](string const &s) { return boost::algorithm::replace_all_copy(s, ",\n", "\n\n,\n\n"); },
|
219
|
+
[](string const &s) { return boost::algorithm::replace_all_copy(s, "\n", "\n "); },
|
220
|
+
[](string const &s) { return boost::algorithm::replace_all_copy(s, ",\n", " \n \n , \n \n "); },
|
221
|
+
[&](string const &s) { return drop_curlies(s); }
|
222
|
+
};
|
223
|
+
|
224
|
+
auto tested = 0u;
|
225
|
+
for (auto v : valids) {
|
226
|
+
for (auto change : changes) {
|
227
|
+
++tested;
|
228
|
+
auto obj = parse_config(change(v));
|
229
|
+
CAPTURE(v);
|
230
|
+
REQUIRE(3u == obj->root()->size());
|
231
|
+
REQUIRE("y" == obj->get_string("a"));
|
232
|
+
REQUIRE("z" == obj->get_string("b"));
|
233
|
+
}
|
234
|
+
}
|
235
|
+
|
236
|
+
REQUIRE((valids.size() * changes.size()) == tested);
|
237
|
+
|
238
|
+
// TODO: move implied comma handling (pending) tests here once they pass
|
239
|
+
|
240
|
+
auto no_newline_in_object = parse_config(" { a : b c } ");
|
241
|
+
REQUIRE("b c" == no_newline_in_object->get_string("a"));
|
242
|
+
|
243
|
+
auto no_newline_at_end = parse_config("a : b");
|
244
|
+
REQUIRE("b" == no_newline_at_end->get_string("a"));
|
245
|
+
|
246
|
+
REQUIRE_THROWS_AS(parse_config("{ a : y b : z }"), config_exception);
|
247
|
+
|
248
|
+
REQUIRE_THROWS_AS(parse_config(R"({ "a" : "y" "b" : "z" })"), config_exception);
|
249
|
+
|
250
|
+
// with no newline or comma, we do value concatenation
|
251
|
+
auto no_newline_in_array = parse_config(" { c : [ 1 2 3 ] } ");
|
252
|
+
REQUIRE(vector<string>{"1 2 3"} == no_newline_in_array->get_string_list("c"));
|
253
|
+
|
254
|
+
auto no_newline_in_array_with_quoted = parse_config(R"( { c : [ "4" "5" "6" ] } )");
|
255
|
+
REQUIRE(vector<string>{"4 5 6"} == no_newline_in_array_with_quoted->get_string_list("c"));
|
256
|
+
}
|
257
|
+
|
258
|
+
TEST_CASE("keys with slash") {
|
259
|
+
auto obj = parse_config(R"(/a/b/c=42, x/y/z : 32)");
|
260
|
+
REQUIRE(42 == obj->get_int("/a/b/c"));
|
261
|
+
REQUIRE(32 == obj->get_int("x/y/z"));
|
262
|
+
}
|
263
|
+
|
264
|
+
static void line_number_test(int num, string text) {
|
265
|
+
try {
|
266
|
+
parse_config(text);
|
267
|
+
} catch(config_exception &e) {
|
268
|
+
cout << e.what() << endl;
|
269
|
+
REQUIRE_STRING_CONTAINS(e.what(), to_string(num)+":");
|
270
|
+
}
|
271
|
+
}
|
272
|
+
|
273
|
+
TEST_CASE("line numbers in errors (pending)", "[!shouldfail]") {
|
274
|
+
// error is at the last char
|
275
|
+
line_number_test(1, "}");
|
276
|
+
line_number_test(2, "\n}");
|
277
|
+
line_number_test(3, "\n\n}");
|
278
|
+
|
279
|
+
// error is before a final newline
|
280
|
+
line_number_test(1, "}\n");
|
281
|
+
line_number_test(2, "\n}\n");
|
282
|
+
line_number_test(3, "\n\n}\n");
|
283
|
+
|
284
|
+
// with unquoted string
|
285
|
+
line_number_test(1, "foo");
|
286
|
+
line_number_test(2, "\nfoo");
|
287
|
+
line_number_test(3, "\n\nfoo");
|
288
|
+
|
289
|
+
// with quoted string
|
290
|
+
line_number_test(1, "\"foo\"");
|
291
|
+
line_number_test(2, "\n\"foo\"");
|
292
|
+
line_number_test(3, "\n\n\"foo\"");
|
293
|
+
|
294
|
+
// newlines in triple-quoted string should not hose up the numbering
|
295
|
+
line_number_test(1, "a : \"\"\"foo\"\"\"}");
|
296
|
+
line_number_test(2, "a : \"\"\"foo\n\"\"\"}");
|
297
|
+
line_number_test(3, "a : \"\"\"foo\nbar\nbaz\"\"\"}");
|
298
|
+
// newlines after the triple quoted string
|
299
|
+
line_number_test(5, "a : \"\"\"foo\nbar\nbaz\"\"\"\n\n}");
|
300
|
+
// triple quoted string ends in a newline
|
301
|
+
line_number_test(6, "a : \"\"\"foo\nbar\nbaz\n\"\"\"\n\n}");
|
302
|
+
// end in the middle of triple-quoted string
|
303
|
+
line_number_test(5, "a : \"\"\"foo\n\n\nbar\n");
|
304
|
+
}
|
305
|
+
|
306
|
+
TEST_CASE("to string for parseables") {
|
307
|
+
// just be sure the to_string don't throw, to get test coverage
|
308
|
+
auto options = config_parse_options();
|
309
|
+
parseable::new_file("foo", options)->to_string();
|
310
|
+
// TODO: are other APIs needed?
|
311
|
+
}
|
312
|
+
|
313
|
+
static void assert_comments(vector<string> comments, shared_config conf) {
|
314
|
+
REQUIRE(comments == conf->root()->origin()->comments());
|
315
|
+
}
|
316
|
+
|
317
|
+
static void assert_comments(vector<string> comments, shared_config conf, string path) {
|
318
|
+
REQUIRE(comments == conf->get_value(path)->origin()->comments());
|
319
|
+
}
|
320
|
+
|
321
|
+
static void assert_comments(vector<string> comments, shared_config conf, string path, int index) {
|
322
|
+
// TODO:
|
323
|
+
// auto v = conf->get_list(path)->get(index);
|
324
|
+
// REQUIRE(comments == v->origin()->comments());
|
325
|
+
}
|
326
|
+
|
327
|
+
TEST_CASE("track comments for single field") {
|
328
|
+
// no comments
|
329
|
+
auto conf0 = parse_config(R"(
|
330
|
+
{
|
331
|
+
foo=10 }
|
332
|
+
)");
|
333
|
+
assert_comments({}, conf0, "foo");
|
334
|
+
|
335
|
+
// comment in front of a field is used
|
336
|
+
auto conf1 = parse_config(R"(
|
337
|
+
{ # Before
|
338
|
+
foo=10 }
|
339
|
+
)");
|
340
|
+
assert_comments({" Before"}, conf1, "foo");
|
341
|
+
|
342
|
+
// comment with a blank line after is dropped
|
343
|
+
auto conf2 = parse_config(R"(
|
344
|
+
{ # BlankAfter
|
345
|
+
|
346
|
+
foo=10 }
|
347
|
+
)");
|
348
|
+
assert_comments({}, conf2, "foo");
|
349
|
+
|
350
|
+
// comment in front of a field is used with no root {}
|
351
|
+
auto conf3 = parse_config(R"(
|
352
|
+
# BeforeNoBraces
|
353
|
+
foo=10
|
354
|
+
)");
|
355
|
+
assert_comments({" BeforeNoBraces"}, conf3, "foo");
|
356
|
+
|
357
|
+
// comment with a blank line after is dropped with no root {}
|
358
|
+
auto conf4 = parse_config(R"(
|
359
|
+
# BlankAfterNoBraces
|
360
|
+
|
361
|
+
foo=10
|
362
|
+
)");
|
363
|
+
assert_comments({}, conf4, "foo");
|
364
|
+
|
365
|
+
// comment same line after field is used
|
366
|
+
auto conf5 = parse_config(R"(
|
367
|
+
{
|
368
|
+
foo=10 # SameLine
|
369
|
+
}
|
370
|
+
)");
|
371
|
+
assert_comments({" SameLine"}, conf5, "foo");
|
372
|
+
|
373
|
+
// comment before field separator is used
|
374
|
+
auto conf6 = parse_config(R"(
|
375
|
+
{
|
376
|
+
foo # BeforeSep
|
377
|
+
=10
|
378
|
+
}
|
379
|
+
)");
|
380
|
+
assert_comments({" BeforeSep"}, conf6, "foo");
|
381
|
+
|
382
|
+
// comment after field separator is used
|
383
|
+
auto conf7 = parse_config(R"(
|
384
|
+
{
|
385
|
+
foo= # AfterSep
|
386
|
+
10
|
387
|
+
}
|
388
|
+
)");
|
389
|
+
assert_comments({" AfterSep"}, conf7, "foo");
|
390
|
+
|
391
|
+
// comment on next line is NOT used
|
392
|
+
auto conf8 = parse_config(R"(
|
393
|
+
{
|
394
|
+
foo=10
|
395
|
+
# NextLine
|
396
|
+
}
|
397
|
+
)");
|
398
|
+
assert_comments({}, conf8, "foo");
|
399
|
+
|
400
|
+
// comment before field separator on new line
|
401
|
+
auto conf9 = parse_config(R"(
|
402
|
+
{
|
403
|
+
foo
|
404
|
+
# BeforeSepOwnLine
|
405
|
+
=10
|
406
|
+
}
|
407
|
+
)");
|
408
|
+
assert_comments({" BeforeSepOwnLine"}, conf9, "foo");
|
409
|
+
|
410
|
+
// comment after field separator on its own line
|
411
|
+
auto conf10 = parse_config(R"(
|
412
|
+
{
|
413
|
+
foo=
|
414
|
+
# AfterSepOwnLine
|
415
|
+
10
|
416
|
+
}
|
417
|
+
)");
|
418
|
+
assert_comments({" AfterSepOwnLine"}, conf10, "foo");
|
419
|
+
|
420
|
+
// comments comments everywhere
|
421
|
+
auto conf11 = parse_config(R"(
|
422
|
+
{# Before
|
423
|
+
foo
|
424
|
+
# BeforeSep
|
425
|
+
= # AfterSepSameLine
|
426
|
+
# AfterSepNextLine
|
427
|
+
10 # AfterValue
|
428
|
+
# AfterValueNewLine (should NOT be used)
|
429
|
+
}
|
430
|
+
)");
|
431
|
+
assert_comments({" Before", " BeforeSep", " AfterSepSameLine", " AfterSepNextLine", " AfterValue"}, conf11, "foo");
|
432
|
+
|
433
|
+
// empty object
|
434
|
+
auto conf12 = parse_config(R"(# BeforeEmpty
|
435
|
+
{} #AfterEmpty
|
436
|
+
# NewLine
|
437
|
+
)");
|
438
|
+
assert_comments({" BeforeEmpty", "AfterEmpty"}, conf12);
|
439
|
+
|
440
|
+
// empty array
|
441
|
+
auto conf13 = parse_config(R"(
|
442
|
+
foo=
|
443
|
+
# BeforeEmptyArray
|
444
|
+
[] #AfterEmptyArray
|
445
|
+
# NewLine
|
446
|
+
)");
|
447
|
+
assert_comments({" BeforeEmptyArray", "AfterEmptyArray"}, conf13, "foo");
|
448
|
+
|
449
|
+
// array element
|
450
|
+
auto conf14 = parse_config(R"(
|
451
|
+
foo=[
|
452
|
+
# BeforeElement
|
453
|
+
10 # AfterElement
|
454
|
+
]
|
455
|
+
)");
|
456
|
+
assert_comments({" BeforeElement", " AfterElement"}, conf14, "foo", 0);
|
457
|
+
|
458
|
+
// field with comma after it
|
459
|
+
auto conf15 = parse_config(R"(
|
460
|
+
foo=10, # AfterCommaField
|
461
|
+
)");
|
462
|
+
assert_comments({" AfterCommaField"}, conf15, "foo");
|
463
|
+
|
464
|
+
// element with comma after it
|
465
|
+
auto conf16 = parse_config(R"(
|
466
|
+
foo=[10, # AfterCommaElement
|
467
|
+
]
|
468
|
+
)");
|
469
|
+
assert_comments({" AfterCommaElement"}, conf16, "foo", 0);
|
470
|
+
|
471
|
+
// field with comma after it but comment isn't on the field's line, so not used
|
472
|
+
auto conf17 = parse_config(R"(
|
473
|
+
foo=10
|
474
|
+
, # AfterCommaFieldNotUsed
|
475
|
+
)");
|
476
|
+
assert_comments({}, conf17, "foo");
|
477
|
+
|
478
|
+
// element with comma after it but comment isn't on the field's line, so not used
|
479
|
+
auto conf18 = parse_config(R"(
|
480
|
+
foo=[10
|
481
|
+
, # AfterCommaElementNotUsed
|
482
|
+
]
|
483
|
+
)");
|
484
|
+
assert_comments({}, conf18, "foo", 0);
|
485
|
+
|
486
|
+
// comment on new line, before comma, should not be used
|
487
|
+
auto conf19 = parse_config(R"(
|
488
|
+
foo=10
|
489
|
+
# BeforeCommaFieldNotUsed
|
490
|
+
,
|
491
|
+
)");
|
492
|
+
assert_comments({}, conf19, "foo");
|
493
|
+
|
494
|
+
// comment on new line, before comma, should not be used
|
495
|
+
auto conf20 = parse_config(R"(
|
496
|
+
foo=[10
|
497
|
+
# BeforeCommaElementNotUsed
|
498
|
+
,
|
499
|
+
]
|
500
|
+
)");
|
501
|
+
assert_comments({}, conf20, "foo", 0);
|
502
|
+
|
503
|
+
// comment on same line before comma
|
504
|
+
auto conf21 = parse_config(R"(
|
505
|
+
foo=10 # BeforeCommaFieldSameLine
|
506
|
+
,
|
507
|
+
)");
|
508
|
+
assert_comments({" BeforeCommaFieldSameLine"}, conf21, "foo");
|
509
|
+
|
510
|
+
// comment on same line before comma
|
511
|
+
auto conf22 = parse_config(R"(
|
512
|
+
foo=[10 # BeforeCommaElementSameLine
|
513
|
+
,
|
514
|
+
]
|
515
|
+
)");
|
516
|
+
assert_comments({" BeforeCommaElementSameLine"}, conf22, "foo", 0);
|
517
|
+
|
518
|
+
// comment with a line containing only whitespace after is dropped
|
519
|
+
auto conf23 = parse_config(R"(
|
520
|
+
{ # BlankAfter
|
521
|
+
|
522
|
+
foo=10 }
|
523
|
+
)");
|
524
|
+
assert_comments({}, conf23, "foo");
|
525
|
+
}
|
526
|
+
|
527
|
+
TEST_CASE("track comments for multiple fields") {
|
528
|
+
// nested objects
|
529
|
+
auto conf5 = parse_config(R"(
|
530
|
+
# Outside
|
531
|
+
bar {
|
532
|
+
# Ignore me
|
533
|
+
|
534
|
+
# Middle
|
535
|
+
# two lines
|
536
|
+
baz {
|
537
|
+
# Inner
|
538
|
+
foo=10 # AfterInner
|
539
|
+
# This should be ignored
|
540
|
+
} # AfterMiddle
|
541
|
+
# ignored
|
542
|
+
} # AfterOutside
|
543
|
+
# ignored!
|
544
|
+
)");
|
545
|
+
assert_comments({" Inner", " AfterInner"}, conf5, "bar.baz.foo");
|
546
|
+
assert_comments({" Middle", " two lines", " AfterMiddle"}, conf5, "bar.baz");
|
547
|
+
assert_comments({" Outside", " AfterOutside"}, conf5, "bar");
|
548
|
+
|
549
|
+
// multiple fields
|
550
|
+
auto conf6 = parse_config(R"({
|
551
|
+
# this is not with a field
|
552
|
+
|
553
|
+
# this is field A
|
554
|
+
a : 10,
|
555
|
+
# this is field B
|
556
|
+
b : 12 # goes with field B which has no comma
|
557
|
+
# this is field C
|
558
|
+
c : 14, # goes with field C after comma
|
559
|
+
# not used
|
560
|
+
# this is not used
|
561
|
+
# nor is this
|
562
|
+
# multi-line block
|
563
|
+
|
564
|
+
# this is with field D
|
565
|
+
# this is with field D also
|
566
|
+
d : 16
|
567
|
+
|
568
|
+
# this is after the fields
|
569
|
+
})");
|
570
|
+
assert_comments({" this is field A"}, conf6, "a");
|
571
|
+
assert_comments({" this is field B", " goes with field B which has no comma"}, conf6, "b");
|
572
|
+
assert_comments({" this is field C", " goes with field C after comma"}, conf6, "c");
|
573
|
+
assert_comments({" this is with field D", " this is with field D also"}, conf6, "d");
|
574
|
+
|
575
|
+
// array
|
576
|
+
auto conf7 = parse_config(R"(
|
577
|
+
# before entire array
|
578
|
+
array = [
|
579
|
+
# goes with 0
|
580
|
+
0,
|
581
|
+
# goes with 1
|
582
|
+
1, # with 1 after comma
|
583
|
+
# goes with 2
|
584
|
+
2 # no comma after 2
|
585
|
+
# not with anything
|
586
|
+
] # after entire array
|
587
|
+
)");
|
588
|
+
assert_comments({" goes with 0"}, conf7, "array", 0);
|
589
|
+
assert_comments({" goes with 1", " with 1 after comma"}, conf7, "array", 1);
|
590
|
+
assert_comments({" goes with 2", " no comma after 2"}, conf7, "array", 2);
|
591
|
+
assert_comments({" before entire array", " after entire array"}, conf7, "array");
|
592
|
+
}
|
593
|
+
|
594
|
+
// TODO: this test used to fail due to an unimplemented method. Now it seems to reveal a bug in comment handling.
|
595
|
+
TEST_CASE("track comments for multiple fields (pending)", "[!shouldfail]") {
|
596
|
+
// properties-like syntax
|
597
|
+
auto conf8 = parse_config(R"(
|
598
|
+
# ignored comment
|
599
|
+
|
600
|
+
# x.y comment
|
601
|
+
x.y = 10
|
602
|
+
# x.z comment
|
603
|
+
x.z = 11
|
604
|
+
# x.a comment
|
605
|
+
x.a = 12
|
606
|
+
# a.b comment
|
607
|
+
a.b = 14
|
608
|
+
a.c = 15
|
609
|
+
a.d = 16 # a.d comment
|
610
|
+
# ignored comment
|
611
|
+
)");
|
612
|
+
|
613
|
+
assert_comments({" x.y comment"}, conf8, "x.y");
|
614
|
+
assert_comments({" x.z comment"}, conf8, "x.z");
|
615
|
+
assert_comments({" x.a comment"}, conf8, "x.a");
|
616
|
+
assert_comments({" a.b comment"}, conf8, "a.b");
|
617
|
+
assert_comments({}, conf8, "a.c");
|
618
|
+
assert_comments({" a.d comment"}, conf8, "a.d");
|
619
|
+
// here we're concerned that comments apply only to leaf
|
620
|
+
// nodes, not to parent objects.
|
621
|
+
|
622
|
+
// TODO: comments are currently being applied to the root as well. Why?
|
623
|
+
assert_comments({}, conf8, "x");
|
624
|
+
assert_comments({}, conf8, "a");
|
625
|
+
}
|
626
|
+
|
627
|
+
TEST_CASE("include file") {
|
628
|
+
auto conf = config::parse_string("include file(\"" + fixture_path("test01") + "\")");
|
629
|
+
|
630
|
+
// should have loaded conf, json
|
631
|
+
REQUIRE(42u == conf->get_int("ints.fortyTwo"));
|
632
|
+
REQUIRE(1u == conf->get_int("fromJson1"));
|
633
|
+
}
|
634
|
+
|
635
|
+
TEST_CASE("include file with extension") {
|
636
|
+
auto conf = config::parse_string("include file(\"" + fixture_path("test01.conf") + "\")");
|
637
|
+
|
638
|
+
REQUIRE(42u == conf->get_int("ints.fortyTwo"));
|
639
|
+
REQUIRE_THROWS_AS(conf->get_int("fromJson1"), config_exception);
|
640
|
+
}
|
641
|
+
|
642
|
+
TEST_CASE("include file whitespace inside parens") {
|
643
|
+
auto conf = config::parse_string("include file( \n \"" + fixture_path("test01") + "\" \n )");
|
644
|
+
|
645
|
+
|
646
|
+
// should have loaded conf, json
|
647
|
+
REQUIRE(42u == conf->get_int("ints.fortyTwo"));
|
648
|
+
REQUIRE(1u == conf->get_int("fromJson1"));
|
649
|
+
}
|
650
|
+
|
651
|
+
TEST_CASE("include file no whitespace outside parens") {
|
652
|
+
bool thrown = false;
|
653
|
+
try {
|
654
|
+
auto conf = config::parse_string("include file (\"" + fixture_path("test01") + "\")");
|
655
|
+
} catch (const hocon::config_exception& e) {
|
656
|
+
thrown = true;
|
657
|
+
REQUIRE_STRING_CONTAINS(e.what(), "expecting include parameter");
|
658
|
+
}
|
659
|
+
REQUIRE(thrown);
|
660
|
+
}
|
661
|
+
|
662
|
+
TEST_CASE("include file not quoted") {
|
663
|
+
bool thrown = false;
|
664
|
+
try {
|
665
|
+
auto conf = config::parse_string("include file(" + fixture_path("test01") + ")");
|
666
|
+
} catch (const hocon::config_exception& e) {
|
667
|
+
thrown = true;
|
668
|
+
REQUIRE_STRING_CONTAINS(e.what(), "expecting include parameter");
|
669
|
+
}
|
670
|
+
REQUIRE(thrown);
|
671
|
+
}
|
672
|
+
|
673
|
+
TEST_CASE("include file not quoted and special char") {
|
674
|
+
bool thrown = false;
|
675
|
+
try {
|
676
|
+
auto conf = config::parse_string("include file(:" + fixture_path("test01") + ")");
|
677
|
+
} catch (const hocon::config_exception& e) {
|
678
|
+
thrown = true;
|
679
|
+
REQUIRE_STRING_CONTAINS(e.what(), "expecting a quoted string");
|
680
|
+
}
|
681
|
+
REQUIRE(thrown);
|
682
|
+
}
|
683
|
+
|
684
|
+
TEST_CASE("include file unclosed parens") {
|
685
|
+
bool thrown = false;
|
686
|
+
try {
|
687
|
+
auto conf = config::parse_string("include file(" + fixture_path("test01"));
|
688
|
+
} catch (const hocon::config_exception& e) {
|
689
|
+
thrown = true;
|
690
|
+
REQUIRE_STRING_CONTAINS(e.what(), "expecting include parameter");
|
691
|
+
}
|
692
|
+
REQUIRE(thrown);
|
693
|
+
}
|
694
|
+
|
695
|
+
// TODO: require URL support
|
696
|
+
// include url basename
|
697
|
+
// include url with extension
|
698
|
+
// include url invalid
|
699
|
+
// include resources?
|
700
|
+
// include url heuristically
|
701
|
+
// include url basename heuristically
|
702
|
+
// TODO: unicode support
|
703
|
+
// accept bom starting file
|
704
|
+
// accept bom start of string config
|
705
|
+
// accept bom in string value
|
706
|
+
// accept bom whitespace
|
707
|
+
|
708
|
+
TEST_CASE("accept multi period numeric path") {
|
709
|
+
auto conf1 = config::parse_string("0.1.2.3=foobar1");
|
710
|
+
REQUIRE("foobar1" == conf1->get_string("0.1.2.3"));
|
711
|
+
auto conf2 = config::parse_string("0.1.2.3.ABC=foobar2");
|
712
|
+
REQUIRE("foobar2" == conf2->get_string("0.1.2.3.ABC"));
|
713
|
+
auto conf3 = config::parse_string("ABC.0.1.2.3=foobar3");
|
714
|
+
REQUIRE("foobar3" == conf3->get_string("ABC.0.1.2.3"));
|
715
|
+
}
|