Sha256: da88c470fdbaf339acb00c3d503a36f47267950bea9389584c3fac687fb48ce0

Contents?: true

Size: 1.82 KB

Versions: 18

Compression:

Stored size: 1.82 KB

Contents

#
# Author:: Adam Jacob (<adam@opscode.com>)
# Copyright:: Copyright (c) 2008 Opscode, 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 File.expand_path(File.dirname(__FILE__) + '/../../spec_helper.rb')

describe Ohai::System, "plugin platform" do
  before(:each) do
    @ohai = Ohai::System.new    
    @ohai.stub!(:require_plugin).and_return(true)
    @ohai[:os] = 'monkey'
    @ohai[:os_version] = 'poop'
  end
  
  it "should require the os platform plugin" do
    @ohai.should_receive(:require_plugin).with("monkey::platform")
    @ohai._require_plugin("platform")
  end
  
  it "should set the platform to the os if it was not set earlier" do
    @ohai._require_plugin("platform")
    @ohai[:platform].should eql("monkey")
  end
  
  it "should not set the platform to the os if it was set earlier" do
    @ohai[:platform] = 'lars'
    @ohai._require_plugin("platform")
    @ohai[:platform].should eql("lars")
  end
  
  it "should set the platform_version to the os_version if it was not set earlier" do
    @ohai._require_plugin("platform")
    @ohai[:os_version].should eql("poop")
  end
  
  it "should not set the platform to the os if it was set earlier" do
    @ohai[:platform_version] = 'ulrich'
    @ohai._require_plugin("platform")
    @ohai[:platform_version].should eql("ulrich")
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
ohai-0.6.10 spec/ohai/plugins/platform_spec.rb
ohai-0.6.10.rc.1 spec/ohai/plugins/platform_spec.rb
ohai-0.6.8 spec/ohai/plugins/platform_spec.rb
ohai-0.6.8.rc.1 spec/ohai/plugins/platform_spec.rb
ohai-0.6.8.rc.0 spec/ohai/plugins/platform_spec.rb
ohai-0.6.6 spec/ohai/plugins/platform_spec.rb
ohai-0.6.6.rc.1 spec/ohai/plugins/platform_spec.rb
ohai-0.6.6.rc.0 spec/ohai/plugins/platform_spec.rb
ohai-0.6.4 spec/ohai/plugins/platform_spec.rb
ohai-0.6.2 spec/ohai/plugins/platform_spec.rb
ohai-0.6.2.rc.0 spec/ohai/plugins/platform_spec.rb
ohai-0.6.0 spec/ohai/plugins/platform_spec.rb
ohai-0.6.0.beta.0 spec/ohai/plugins/platform_spec.rb
ohai-0.5.8 spec/ohai/plugins/platform_spec.rb
ohai-0.5.8.rc.0 spec/ohai/plugins/platform_spec.rb
ohai-0.5.6 spec/ohai/plugins/platform_spec.rb
ohai-0.5.4 spec/ohai/plugins/platform_spec.rb
ohai-0.5.2 spec/ohai/plugins/platform_spec.rb