chef-config 17.9.52 → 17.10.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +201 -201
- data/Rakefile +14 -14
- data/chef-config.gemspec +39 -39
- data/lib/chef-config/config.rb +1297 -1297
- data/lib/chef-config/exceptions.rb +27 -27
- data/lib/chef-config/fips.rb +53 -53
- data/lib/chef-config/logger.rb +53 -53
- data/lib/chef-config/mixin/credentials.rb +102 -102
- data/lib/chef-config/mixin/dot_d.rb +44 -44
- data/lib/chef-config/mixin/fuzzy_hostname_matcher.rb +49 -49
- data/lib/chef-config/mixin/train_transport.rb +143 -143
- data/lib/chef-config/path_helper.rb +350 -350
- data/lib/chef-config/version.rb +19 -19
- data/lib/chef-config/windows.rb +24 -24
- data/lib/chef-config/workstation_config_loader.rb +281 -281
- data/lib/chef-config.rb +20 -20
- data/spec/spec_helper.rb +75 -75
- data/spec/unit/config_spec.rb +1390 -1390
- data/spec/unit/fips_spec.rb +128 -128
- data/spec/unit/path_helper_spec.rb +372 -372
- data/spec/unit/workstation_config_loader_spec.rb +633 -633
- metadata +4 -4
data/lib/chef-config.rb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
#
|
2
|
-
# Copyright:: Copyright (c) Chef Software Inc.
|
3
|
-
# License:: Apache License, Version 2.0
|
4
|
-
#
|
5
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
# you may not use this file except in compliance with the License.
|
7
|
-
# You may obtain a copy of the License at
|
8
|
-
#
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
#
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
# See the License for the specific language governing permissions and
|
15
|
-
# limitations under the License.
|
16
|
-
#
|
17
|
-
|
18
|
-
module ChefConfig
|
19
|
-
|
20
|
-
end
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
module ChefConfig
|
19
|
+
|
20
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,75 +1,75 @@
|
|
1
|
-
require "chef-utils"
|
2
|
-
|
3
|
-
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
4
|
-
RSpec.configure do |config|
|
5
|
-
# rspec-expectations config goes here. You can use an alternate
|
6
|
-
# assertion/expectation library such as wrong or the stdlib/minitest
|
7
|
-
# assertions if you prefer.
|
8
|
-
config.expect_with :rspec do |expectations|
|
9
|
-
# This option will default to `true` in RSpec 4. It makes the `description`
|
10
|
-
# and `failure_message` of custom matchers include text for helper methods
|
11
|
-
# defined using `chain`, e.g.:
|
12
|
-
# be_bigger_than(2).and_smaller_than(4).description
|
13
|
-
# # => "be bigger than 2 and smaller than 4"
|
14
|
-
# ...rather than:
|
15
|
-
# # => "be bigger than 2"
|
16
|
-
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
17
|
-
end
|
18
|
-
|
19
|
-
# rspec-mocks config goes here. You can use an alternate test double
|
20
|
-
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
21
|
-
config.mock_with :rspec do |mocks|
|
22
|
-
# Prevents you from mocking or stubbing a method that does not exist on
|
23
|
-
# a real object. This is generally recommended, and will default to
|
24
|
-
# `true` in RSpec 4.
|
25
|
-
mocks.verify_partial_doubles = true
|
26
|
-
end
|
27
|
-
|
28
|
-
# These two settings work together to allow you to limit a spec run
|
29
|
-
# to individual examples or groups you care about by tagging them with
|
30
|
-
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
31
|
-
# get run.
|
32
|
-
config.filter_run :focus
|
33
|
-
config.run_all_when_everything_filtered = true
|
34
|
-
|
35
|
-
config.filter_run_excluding windows_only: true unless ChefUtils.windows?
|
36
|
-
config.filter_run_excluding unix_only: true if ChefUtils.windows?
|
37
|
-
|
38
|
-
# Limits the available syntax to the non-monkey patched syntax that is
|
39
|
-
# recommended. For more details, see:
|
40
|
-
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
41
|
-
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
42
|
-
# - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
|
43
|
-
config.disable_monkey_patching!
|
44
|
-
|
45
|
-
# This setting enables warnings. It's recommended, but in some cases may
|
46
|
-
# be too noisy due to issues in dependencies.
|
47
|
-
config.warnings = true
|
48
|
-
|
49
|
-
# Many RSpec users commonly either run the entire suite or an individual
|
50
|
-
# file, and it's useful to allow more verbose output when running an
|
51
|
-
# individual spec file.
|
52
|
-
if config.files_to_run.one?
|
53
|
-
# Use the documentation formatter for detailed output,
|
54
|
-
# unless a formatter has already been configured
|
55
|
-
# (e.g. via a command-line flag).
|
56
|
-
config.default_formatter = "doc"
|
57
|
-
end
|
58
|
-
|
59
|
-
# Print the 10 slowest examples and example groups at the
|
60
|
-
# end of the spec run, to help surface which specs are running
|
61
|
-
# particularly slow.
|
62
|
-
# config.profile_examples = 10
|
63
|
-
|
64
|
-
# Run specs in random order to surface order dependencies. If you find an
|
65
|
-
# order dependency and want to debug it, you can fix the order by providing
|
66
|
-
# the seed, which is printed after each run.
|
67
|
-
# --seed 1234
|
68
|
-
config.order = :random
|
69
|
-
|
70
|
-
# Seed global randomization in this process using the `--seed` CLI option.
|
71
|
-
# Setting this allows you to use `--seed` to deterministically reproduce
|
72
|
-
# test failures related to randomization by passing the same `--seed` value
|
73
|
-
# as the one that triggered the failure.
|
74
|
-
Kernel.srand config.seed
|
75
|
-
end
|
1
|
+
require "chef-utils"
|
2
|
+
|
3
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
4
|
+
RSpec.configure do |config|
|
5
|
+
# rspec-expectations config goes here. You can use an alternate
|
6
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
7
|
+
# assertions if you prefer.
|
8
|
+
config.expect_with :rspec do |expectations|
|
9
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
10
|
+
# and `failure_message` of custom matchers include text for helper methods
|
11
|
+
# defined using `chain`, e.g.:
|
12
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
13
|
+
# # => "be bigger than 2 and smaller than 4"
|
14
|
+
# ...rather than:
|
15
|
+
# # => "be bigger than 2"
|
16
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
17
|
+
end
|
18
|
+
|
19
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
20
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
21
|
+
config.mock_with :rspec do |mocks|
|
22
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
23
|
+
# a real object. This is generally recommended, and will default to
|
24
|
+
# `true` in RSpec 4.
|
25
|
+
mocks.verify_partial_doubles = true
|
26
|
+
end
|
27
|
+
|
28
|
+
# These two settings work together to allow you to limit a spec run
|
29
|
+
# to individual examples or groups you care about by tagging them with
|
30
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
31
|
+
# get run.
|
32
|
+
config.filter_run :focus
|
33
|
+
config.run_all_when_everything_filtered = true
|
34
|
+
|
35
|
+
config.filter_run_excluding windows_only: true unless ChefUtils.windows?
|
36
|
+
config.filter_run_excluding unix_only: true if ChefUtils.windows?
|
37
|
+
|
38
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
39
|
+
# recommended. For more details, see:
|
40
|
+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
41
|
+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
42
|
+
# - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
|
43
|
+
config.disable_monkey_patching!
|
44
|
+
|
45
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
46
|
+
# be too noisy due to issues in dependencies.
|
47
|
+
config.warnings = true
|
48
|
+
|
49
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
50
|
+
# file, and it's useful to allow more verbose output when running an
|
51
|
+
# individual spec file.
|
52
|
+
if config.files_to_run.one?
|
53
|
+
# Use the documentation formatter for detailed output,
|
54
|
+
# unless a formatter has already been configured
|
55
|
+
# (e.g. via a command-line flag).
|
56
|
+
config.default_formatter = "doc"
|
57
|
+
end
|
58
|
+
|
59
|
+
# Print the 10 slowest examples and example groups at the
|
60
|
+
# end of the spec run, to help surface which specs are running
|
61
|
+
# particularly slow.
|
62
|
+
# config.profile_examples = 10
|
63
|
+
|
64
|
+
# Run specs in random order to surface order dependencies. If you find an
|
65
|
+
# order dependency and want to debug it, you can fix the order by providing
|
66
|
+
# the seed, which is printed after each run.
|
67
|
+
# --seed 1234
|
68
|
+
config.order = :random
|
69
|
+
|
70
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
71
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
72
|
+
# test failures related to randomization by passing the same `--seed` value
|
73
|
+
# as the one that triggered the failure.
|
74
|
+
Kernel.srand config.seed
|
75
|
+
end
|