Sha256: b65056175adaf615ff0c6bc0659f92902baf4b1b1d098a5595b0a2d1a20f244a

Contents?: true

Size: 1.85 KB

Versions: 20

Compression:

Stored size: 1.85 KB

Contents

#
# Author:: Bryan McLellan <btm@loftninjas.org>
# Copyright:: Copyright (c) 2014 Chef Software, Inc.
# 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'

describe "Chef::Platform#windows_server_2003?" do
  it "returns false early when not on windows" do
    Chef::Platform.stub(:windows?).and_return(false)
    expect(Chef::Platform).not_to receive(:require) 
    expect(Chef::Platform.windows_server_2003?).to be_false
  end

  # CHEF-4888: Need to call WIN32OLE.ole_initialize in new threads
  it "does not raise an exception" do
    expect { Thread.fork { Chef::Platform.windows_server_2003? }.join }.not_to raise_error
  end
end

describe 'Chef::Platform#supports_dsc?' do 
  it 'returns false if powershell is not present' do
    node = Chef::Node.new
    Chef::Platform.supports_dsc?(node).should be_false
  end

  ['1.0', '2.0', '3.0'].each do |version|
    it "returns false for Powershell #{version}" do
      node = Chef::Node.new
      node.automatic[:languages][:powershell][:version] = version
      Chef::Platform.supports_dsc?(node).should be_false
    end
  end

  ['4.0', '5.0'].each do |version|
    it "returns true for Powershell #{version}" do
      node = Chef::Node.new
      node.automatic[:languages][:powershell][:version] = version
      Chef::Platform.supports_dsc?(node).should be_true
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
chef-11.18.12-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-11.18.12 spec/unit/platform/query_helpers_spec.rb
chef-11.18.6-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-11.18.6 spec/unit/platform/query_helpers_spec.rb
chef-11.18.0-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-11.18.0 spec/unit/platform/query_helpers_spec.rb
chef-12.0.3-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-12.0.3 spec/unit/platform/query_helpers_spec.rb
chef-12.0.1-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-12.0.1 spec/unit/platform/query_helpers_spec.rb
chef-12.0.0-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-12.0.0 spec/unit/platform/query_helpers_spec.rb
chef-12.0.0.rc.0-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-12.0.0.rc.0 spec/unit/platform/query_helpers_spec.rb
chef-11.16.4-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-11.16.4 spec/unit/platform/query_helpers_spec.rb
chef-11.16.2-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-11.16.2 spec/unit/platform/query_helpers_spec.rb
chef-11.16.0-x86-mingw32 spec/unit/platform/query_helpers_spec.rb
chef-11.16.0 spec/unit/platform/query_helpers_spec.rb