Skip to content

Commit

Permalink
test(map): verify map.jinja dump using _mapdata state [skip ci]
Browse files Browse the repository at this point in the history
* Automated using myii/ssf-formula#275
  • Loading branch information
myii committed Dec 21, 2020
1 parent 65e82f6 commit b8052a0
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 13 deletions.
8 changes: 4 additions & 4 deletions openssh/_mapdata/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
{%- set tplroot = tpldir.split('/')[0] %}
{%- from tplroot ~ "/map.jinja" import mapdata with context %}
{%- set map = mapdata %}
{%- do salt['log.debug']('### MAP.JINJA DUMP ###\n' ~ map | yaml(False)) %}
{%- do salt['log.debug']('### MAP.JINJA DUMP ###\n' ~ mapdata | yaml(False)) %}
{%- set output_file = '/tmp/salt_mapdata_dump.yaml' %}
{%- set output_dir = '/temp' if grains.os_family == 'Windows' else '/tmp' %}
{%- set output_file = output_dir ~ '/salt_mapdata_dump.yaml' %}
{{ tplroot }}-mapdata-dump:
file.managed:
- name: {{ output_file }}
- source: salt://{{ tplroot }}/_mapdata/_mapdata.jinja
- template: jinja
- context:
map: {{ map | yaml }}
map: {{ mapdata | yaml }}
22 changes: 13 additions & 9 deletions test/integration/default/controls/_mapdata_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@

require 'yaml'

# Replace per minion strings
replacement = {
hostname: system.hostname
}

control '`map.jinja` YAML dump' do
title 'should contain exactly the same data as the comparison file'
title 'should match the comparison file'

# Strip the `platform[:finger]` version number down to the "OS major release"
mapdata_file = "_mapdata/#{system.platform[:finger].split('.').first}.yaml"
mapdata_dump = YAML.safe_load(inspec.profile.file(mapdata_file) % replacement)

describe yaml('/tmp/salt_mapdata_dump.yaml').params do
it { should eq mapdata_dump }
# Load the mapdata from profile https://docs.chef.io/inspec/profiles/#profile-files
mapdata_dump = YAML.safe_load(inspec.profile.file(mapdata_file))

# Derive the location of the dumped mapdata
output_dir = platform[:family] == 'windows' ? '/temp' : '/tmp'
output_file = "#{output_dir}/salt_mapdata_dump.yaml"

describe 'File content' do
it 'should match profile map data exactly' do
expect(yaml(output_file).params).to eq(mapdata_dump)
end
end
end
22 changes: 22 additions & 0 deletions test/integration/share/libraries/system.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class SystemResource < Inspec.resource(1)
attr_reader :platform

def initialize
super
@platform = build_platform
end

Expand Down Expand Up @@ -37,22 +38,43 @@ def build_platform_name
case inspec.platform[:name]
when 'amazon'
'amazonlinux'
when 'windows_8.1_pro'
'windows'
when 'windows_server_2019_datacenter'
'windows-server'
else
inspec.platform[:name]
end
end

# rubocop:disable Metrics/MethodLength
def build_platform_release
case inspec.platform[:name]
when 'amazon'
# `2018` relase is named `1` in kitchen.yaml
inspec.platform[:release].gsub(/2018.*/, '1')
when 'arch'
'base-latest'
when 'gentoo'
"#{inspec.platform[:release].split('.')[0]}-#{derive_gentoo_init_system}"
when 'windows_8.1_pro'
'8.1'
when 'windows_server_2019_datacenter'
'2019'
else
inspec.platform[:release]
end
end
# rubocop:enable Metrics/MethodLength

def derive_gentoo_init_system
case inspec.command('systemctl').exist?
when true
'sysd'
else
'sysv'
end
end

def build_platform_finger
"#{build_platform_name}-#{build_finger_release}"
Expand Down

0 comments on commit b8052a0

Please sign in to comment.