Nikita Mathur
2e4e61dab5
CHEF-1458 Multiple values changes in SimpleConfig library ( #6489 )
...
* Simple config changes to return array of values with multiple values opt
Signed-off-by: Nikita Mathur <nikita.mathur@chef.io>
* New option added to split multiple values with a delimiter regex
Signed-off-by: Nikita Mathur <nikita.mathur@chef.io>
---------
Signed-off-by: Nikita Mathur <nikita.mathur@chef.io>
2023-03-23 20:24:01 +05:30
Ryan Davis
07dc5e3192
First pass at cleaning deprecations for old minitest/spec-style tests.
...
3 files left to go, and they're behaving oddly so I'm leaving them out
in this pass. Looks like 21 deprecations left.
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-10-03 13:45:19 -07:00
Ryan Davis
a5309ea392
blindly applied chefstyle -a
...
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-06-11 18:52:03 -07:00
Ryan Davis
be125598c8
Additional whitespace cleanup.
...
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-05-29 17:58:02 -07:00
Ryan Davis
adaf2bc364
Removed aws resource requiring from test/helper and inspec/resource.
...
This speeds up parallel unit test runs from a very consistent 2:49 to
a very consistent 1:53, or a 33% reduction.
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-05-29 17:58:02 -07:00
Miah Johnson
6c19e81a06
Remove authors tags from source files.
...
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-28 12:47:39 -07:00
Miah Johnson
659b4b373a
Remove # encoding: utf8
magic comments
...
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-07 16:06:23 -07:00
Jerry Aldrich
84817366a1
Remove deprecations for InSpec 2.0 ( #2506 )
...
* Add `release-2.0` target branch to AppVeyor/Travis (#2510 )
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* simpleconfig: Remove deprecated config keys
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* cli (exec): Remove `--cache` command line argument
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* platform: Remove lowercase os name protection
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* matcher: Remove `contain_legacy_plus` matcher
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* matcher: Remove `contain_match` matcher
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* matcher: Remove `with_version` matcher
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* matcher: Remove `belong_to_group` matcher
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* matcher: Remove `belong_to_primary_group` matcher
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* matcher: Remove `contain` matcher
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* passwd: Remove deprecated properties
This removes:
- `passwd.count`
- `passwd.username`
- `passwd.usernames`
- `passwd.uid`
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* auditd_rules: Remove in favor of `auditd` resource
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* cli: Remove `login_automate` command
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
* Remove `resource_skipped` message method
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
2018-02-08 11:05:21 +01:00
Dominik Richter
1dafe50bd9
rename SimpleConfig / parse_config / parse_config_file options
...
See https://github.com/chef/inspec/issues/1709
Fixes https://github.com/chef/inspec/issues/1709
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2017-04-26 23:18:40 +02:00
Adam Leff
ea7c0c493e
Provide a method-based accessor for SimpleConfig hashes
...
When SimpleConfig parses a config file that has sections, such as a mysqld
config file, the values within that section are returned via a Hash. However,
we do not provide an easy way to write tests for those deep hash values:
```
describe mysql_conf('/tmp/my.cnf') do
its('mysqld.expire_logs_days') { should cmp 10 }
end
MySQL Configuration
∅ undefined method `expire_logs_days' for #<Hash:0x007fe463795a00>
```
This change provides a method-based accessor for Hashes that are built via
SimpleConfig.
```
describe mysql_conf('/tmp/my.cnf') do
its('mysqld.expire_logs_days') { should cmp 10 }
end
MySQL Configuration
✔ mysqld.expire_logs_days should cmp == 10
```
Fixes #1541 by changing the way the attributes are fetched.
Signed-off-by: Adam Leff <adam@leff.co>
2017-03-15 14:49:16 -05:00
Stephan Renatus
b18936d704
move simple_config_test.rb to utils/
2016-02-09 11:51:52 +01:00