From 5830a8ce976f124d10abf081cb26fde644b8e512 Mon Sep 17 00:00:00 2001 From: Daniel Dehennin Date: Tue, 23 Feb 2021 21:52:33 +0000 Subject: [PATCH] chore(rubocop): allow use of `YAML.load` for `_mapdata.rb` [skip ci] * Automated using https://github.com/myii/ssf-formula/pull/296 --- .rubocop.yml | 3 +++ test/integration/default/controls/_mapdata.rb | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 7fd75ac..9367e99 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -12,5 +12,8 @@ Metrics/BlockLength: - describe # Increase from default of `25` Max: 30 +Security/YAMLLoad: + Exclude: + - test/integration/**/_mapdata.rb # Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config` diff --git a/test/integration/default/controls/_mapdata.rb b/test/integration/default/controls/_mapdata.rb index 6698ba6..6ae464e 100644 --- a/test/integration/default/controls/_mapdata.rb +++ b/test/integration/default/controls/_mapdata.rb @@ -2,7 +2,7 @@ require 'yaml' -control 'TEMPLATE._mapdata' do +control 'template._mapdata' do title '`map.jinja` should match the reference file' ### Method @@ -23,7 +23,7 @@ control 'TEMPLATE._mapdata' do mapdata_file_path = "_mapdata/#{platform_finger}.yaml" # Load the mapdata from profile, into a YAML structure # https://docs.chef.io/inspec/profiles/#profile-files - mapdata_file_yaml = YAML.safe_load(inspec.profile.file(mapdata_file_path)) + mapdata_file_yaml = YAML.load(inspec.profile.file(mapdata_file_path)) # Dump the YAML back into a string for comparison mapdata_file_dump = YAML.dump(mapdata_file_yaml)