mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
54 lines
1.3 KiB
Ruby
54 lines
1.3 KiB
Ruby
|
# encoding: utf-8
|
||
|
require 'minitest/autorun'
|
||
|
require 'minitest/spec'
|
||
|
|
||
|
# Tests configuration:
|
||
|
module Test
|
||
|
class << self
|
||
|
# MTime tracks the maximum range of modification time in seconds.
|
||
|
# i.e. MTime == 60*60*1 is 1 hour of modification time range,
|
||
|
# which translates to a modification time range of:
|
||
|
# [ now-1hour, now ]
|
||
|
def mtime
|
||
|
60 * 60 * 24 * 1
|
||
|
end
|
||
|
|
||
|
def dup(o)
|
||
|
Marshal.load(Marshal.dump(o))
|
||
|
end
|
||
|
|
||
|
def root_group(os)
|
||
|
if os[:family] == 'freebsd'
|
||
|
'wheel'
|
||
|
else
|
||
|
'root'
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def selinux_label(os, path = nil)
|
||
|
labels = {}
|
||
|
|
||
|
h = {}
|
||
|
h.default = Hash.new(nil)
|
||
|
h['redhat'] = {}
|
||
|
h['redhat'].default = 'unconfined_u:object_r:user_tmp_t:s0'
|
||
|
h['redhat']['5.11'] = 'user_u:object_r:tmp_t'
|
||
|
h['fedora'] = h['redhat']
|
||
|
labels.default = dup(h)
|
||
|
|
||
|
h['redhat'].default = 'unconfined_u:object_r:tmp_t:s0'
|
||
|
labels['/tmp/block_device'] = dup(h)
|
||
|
|
||
|
h = {}
|
||
|
h.default = Hash.new(nil)
|
||
|
h['redhat'] = {}
|
||
|
h['redhat'].default = 'system_u:object_r:null_device_t:s0'
|
||
|
h['fedora'] = h['redhat']
|
||
|
h['redhat']['5.11'] = 'system_u:object_r:null_device_t'
|
||
|
labels['/dev/null'] = dup(h)
|
||
|
|
||
|
labels[path][os[:family]][os[:release]]
|
||
|
end
|
||
|
end
|
||
|
end
|