2015-12-31 00:10:06 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
# author: Christoph Hartmann
|
|
|
|
# author: Dominik Richter
|
|
|
|
|
2015-12-07 19:41:05 +00:00
|
|
|
require 'helper'
|
|
|
|
require 'inspec/resource'
|
|
|
|
|
2016-03-09 09:35:35 +00:00
|
|
|
describe Inspec::Resources::FileResource do
|
2016-10-25 16:46:44 +00:00
|
|
|
let(:file) { stub(unix_mode_mask: 000, mode: 000) }
|
|
|
|
it 'responds on Ubuntu' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('file', '/fakepath/fakefile')
|
|
|
|
resource.stubs(:exist?).returns(true)
|
|
|
|
resource.stubs(:mounted?).returns(true)
|
|
|
|
resource.stubs(:source_path).returns('/fakepath/fakefile')
|
|
|
|
resource.stubs(:file).returns(file)
|
|
|
|
resource.stubs(:content).returns('content')
|
|
|
|
resource.stubs(:mode).returns(000)
|
|
|
|
resource.stubs(:suid).returns(true)
|
|
|
|
resource.stubs(:sgid).returns(true)
|
|
|
|
resource.stubs(:sticky).returns(true)
|
|
|
|
resource.stubs(:file_permission_granted?).with('read', 'by_usergroup', 'by_specific_user').returns('test_result')
|
|
|
|
resource.stubs(:file_permission_granted?).with('write', 'by_usergroup', 'by_specific_user').returns('test_result')
|
|
|
|
resource.stubs(:file_permission_granted?).with('execute', 'by_usergroup', 'by_specific_user').returns('test_result')
|
|
|
|
_(resource.content).must_equal 'content'
|
|
|
|
_(resource.exist?).must_equal true
|
|
|
|
_(resource.mounted?).must_equal true
|
|
|
|
_(resource.to_s).must_equal 'File /fakepath/fakefile'
|
|
|
|
_(resource.readable?('by_usergroup', 'by_specific_user')).must_equal 'test_result'
|
2017-10-17 13:01:51 +00:00
|
|
|
_(resource.allowed?('read', by: 'by_usergroup', by_user: 'by_specific_user')).must_equal 'test_result'
|
2016-10-25 16:46:44 +00:00
|
|
|
_(resource.writable?('by_usergroup', 'by_specific_user')).must_equal 'test_result'
|
2017-10-17 13:01:51 +00:00
|
|
|
_(resource.allowed?('write', by: 'by_usergroup', by_user: 'by_specific_user')).must_equal 'test_result'
|
2016-10-25 16:46:44 +00:00
|
|
|
_(resource.executable?('by_usergroup', 'by_specific_user')).must_equal 'test_result'
|
2017-10-17 13:01:51 +00:00
|
|
|
_(resource.allowed?('execute', by: 'by_usergroup', by_user: 'by_specific_user')).must_equal 'test_result'
|
2016-10-25 16:46:44 +00:00
|
|
|
_(resource.suid).must_equal true
|
|
|
|
_(resource.sgid).must_equal true
|
|
|
|
_(resource.sticky).must_equal true
|
2015-12-07 19:41:05 +00:00
|
|
|
end
|
2016-10-25 16:46:44 +00:00
|
|
|
it 'responds on Windows' do
|
|
|
|
resource = MockLoader.new(:windows).load_resource('file', 'C:/fakepath/fakefile')
|
|
|
|
resource.stubs(:exist?).returns(true)
|
|
|
|
resource.stubs(:mounted?).returns(true)
|
|
|
|
resource.stubs(:content).returns('content')
|
|
|
|
resource.stubs(:file_permission_granted?).with('read', 'by_usergroup', 'by_specific_user').returns('test_result')
|
|
|
|
resource.stubs(:file_permission_granted?).with('write', 'by_usergroup', 'by_specific_user').returns('test_result')
|
|
|
|
resource.stubs(:file_permission_granted?).with('execute', 'by_usergroup', 'by_specific_user').returns('test_result')
|
2017-10-17 13:01:51 +00:00
|
|
|
resource.stubs(:file_permission_granted?).with('full-control', 'by_usergroup', 'by_specific_user').returns('test_result')
|
2016-10-25 16:46:44 +00:00
|
|
|
_(resource.content).must_equal 'content'
|
|
|
|
_(resource.exist?).must_equal true
|
|
|
|
_(resource.mounted?).must_equal true
|
|
|
|
_(resource.readable?('by_usergroup', 'by_specific_user')).must_equal 'test_result'
|
2017-10-17 13:01:51 +00:00
|
|
|
_(resource.allowed?('read', by: 'by_usergroup', by_user: 'by_specific_user')).must_equal 'test_result'
|
2016-10-25 16:46:44 +00:00
|
|
|
_(resource.writable?('by_usergroup', 'by_specific_user')).must_equal 'test_result'
|
2017-10-17 13:01:51 +00:00
|
|
|
_(resource.allowed?('write', by: 'by_usergroup', by_user: 'by_specific_user')).must_equal 'test_result'
|
2016-10-25 16:46:44 +00:00
|
|
|
_(resource.executable?('by_usergroup', 'by_specific_user')).must_equal 'test_result'
|
2017-10-17 13:01:51 +00:00
|
|
|
_(resource.allowed?('execute', by: 'by_usergroup', by_user: 'by_specific_user')).must_equal 'test_result'
|
|
|
|
_(resource.allowed?('full-control', by: 'by_usergroup', by_user: 'by_specific_user')).must_equal 'test_result'
|
|
|
|
end
|
|
|
|
it 'does not support Windows-style ACL on Ubuntu' do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('file', '/fakepath/fakefile')
|
|
|
|
resource.stubs(:exist?).returns(true)
|
|
|
|
proc { resource.send('allowed?', 'full-control', { by: 'by_usergroup', by_user: 'by_specific_user' }) }.must_raise(RuntimeError)
|
|
|
|
proc { resource.send('allowed?', 'modify', { by: 'by_usergroup', by_user: 'by_specific_user' }) }.must_raise(RuntimeError)
|
2015-12-07 19:41:05 +00:00
|
|
|
end
|
2016-10-25 16:46:44 +00:00
|
|
|
it 'does not support check by mask on Windows' do
|
|
|
|
resource = MockLoader.new(:windows).load_resource('file', 'C:/fakepath/fakefile')
|
|
|
|
resource.stubs(:exist?).returns(true)
|
|
|
|
proc { resource.send('readable?', 'by_usergroup', nil) }.must_raise(RuntimeError)
|
|
|
|
proc { resource.send('writable?', 'by_usergroup', nil) }.must_raise(RuntimeError)
|
|
|
|
proc { resource.send('executable?', 'by_usergroup', nil) }.must_raise(RuntimeError)
|
2015-12-07 19:41:05 +00:00
|
|
|
end
|
2016-10-25 16:46:44 +00:00
|
|
|
it 'responds with errors on unsupported OS' do
|
2017-11-13 21:02:27 +00:00
|
|
|
resource = MockLoader.new(:undefined).load_resource('file', 'C:/fakepath/fakefile')
|
2016-10-25 16:46:44 +00:00
|
|
|
resource.stubs(:exist?).returns(true)
|
|
|
|
_(resource.exist?).must_equal true
|
|
|
|
_(resource.readable?('by_usergroup', 'by_specific_user')).must_equal '`readable?` is not supported on your OS yet.'
|
|
|
|
_(resource.writable?('by_usergroup', 'by_specific_user')).must_equal '`writable?` is not supported on your OS yet.'
|
|
|
|
_(resource.executable?('by_usergroup', 'by_specific_user')).must_equal '`executable?` is not supported on your OS yet.'
|
2017-10-17 13:01:51 +00:00
|
|
|
_(resource.allowed?('permission', by: 'by_usergroup', by_user: 'by_specific_user')).must_equal '`allowed?` is not supported on your OS yet.'
|
2016-10-25 16:46:44 +00:00
|
|
|
proc { resource.send(:contain, nil) }.must_raise(RuntimeError)
|
2015-12-07 19:41:05 +00:00
|
|
|
end
|
|
|
|
end
|