diff options
author | Dan Bjorge <dbjorge@gmail.com> | 2015-04-23 00:24:24 -0700 |
---|---|---|
committer | Dan Bjorge <dbjorge@gmail.com> | 2015-04-23 00:24:24 -0700 |
commit | 6f42327a590025e078de9cdfd3191f14a0980776 (patch) | |
tree | c1b8c0d416e7d3a5a84e0b6f1ec5981d66f4f93c /spec/functional/win32 | |
parent | 44d70ba0f1b38bc3e1170ae978ad5e9a11679df3 (diff) | |
download | chef-6f42327a590025e078de9cdfd3191f14a0980776.tar.gz |
securable_resource functional specs compare default creation permissions against actual defaults on Windows
Diffstat (limited to 'spec/functional/win32')
-rw-r--r-- | spec/functional/win32/sid_spec.rb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/spec/functional/win32/sid_spec.rb b/spec/functional/win32/sid_spec.rb new file mode 100644 index 0000000000..b63bca1027 --- /dev/null +++ b/spec/functional/win32/sid_spec.rb @@ -0,0 +1,50 @@ +# +# Author:: Dan Bjorge (<dbjorge@gmail.com>) +# Copyright:: Copyright (c) 2015 Dan Bjorge +# License:: Apache License, Version 2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +require 'spec_helper' +if Chef::Platform.windows? + require 'chef/win32/security' +end + +describe 'Chef::ReservedNames::Win32::SID', :windows_only do + SID ||= Chef::ReservedNames::Win32::Security::SID + + it 'should resolve default_security_object_group as the current user' do + expect(SID.default_security_object_group).to eq(SID.current_user) + end + + context 'running as an elevated administrator user' do + it 'should resolve default_security_object_owner as the Administrators group' do + expect(SID.default_security_object_owner).to eq(SID.Administrators) + end + end + + context 'running as a non-elevated administrator user' do + it 'should resolve default_security_object_owner as the current user' do + skip 'requires user support in mixlib-shellout, see security_spec.rb' + expect(SID.default_security_object_owner).to eq(SID.Administrators) + end + end + + context 'running as a non-elevated, non-administrator user' do + it 'should resolve default_security_object_owner as the current user' do + skip 'requires user support in mixlib-shellout, see security_spec.rb' + expect(SID.default_security_object_owner).to eq(SID.current_user) + end + end +end
\ No newline at end of file |