Sha256: 949aafa230d4c96b27f8d3426b3e99ff64c22ecd336e9f0be38e4ce8f28ef6c8

Contents?: true

Size: 1.96 KB

Versions: 6

Compression:

Stored size: 1.96 KB

Contents

#
# Author:: Adam Jacob (<adam@opscode.com>)
# Author:: Matthew Kent (<mkent@magoazul.com>)
# Copyright:: Copyright (c) 2008 Opscode, Inc.
# Copyright:: Copyright (c) 2010 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 'spec_helper'

describe Chef::Knife::CookbookMetadataFromFile do
  before(:each) do
    Chef::Config[:node_name]  = "webmonkey.example.com"
    @src = File.expand_path(File.join(CHEF_SPEC_DATA, "metadata", "quick_start", "metadata.rb"))
    @tgt = File.expand_path(File.join(CHEF_SPEC_DATA, "metadata", "quick_start", "metadata.json"))
    @knife = Chef::Knife::CookbookMetadataFromFile.new
    @knife.name_args = [ @src ]
    @md = Chef::Cookbook::Metadata.new
    Chef::Cookbook::Metadata.stub(:new).and_return(@md)
    $stdout.stub(:write)
  end

  after do
    if File.exists?(@tgt)
      File.unlink(@tgt)
    end
  end

  describe "run" do
    it "should determine cookbook name from path" do
      @md.should_receive(:name).with()
      @md.should_receive(:name).with("quick_start")
      @knife.run
    end

    it "should load the metadata source" do
      @md.should_receive(:from_file).with(@src)
      @knife.run
    end

    it "should write out the metadata to the correct location" do
      File.should_receive(:open).with(@tgt, "w")
      @knife.run
    end

    it "should generate json from the metadata" do
      Chef::JSONCompat.should_receive(:to_json_pretty).with(@md)
      @knife.run
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
chef-11.18.12-x86-mingw32 spec/unit/knife/cookbook_metadata_from_file_spec.rb
chef-11.18.12 spec/unit/knife/cookbook_metadata_from_file_spec.rb
chef-11.18.6-x86-mingw32 spec/unit/knife/cookbook_metadata_from_file_spec.rb
chef-11.18.6 spec/unit/knife/cookbook_metadata_from_file_spec.rb
chef-11.18.0-x86-mingw32 spec/unit/knife/cookbook_metadata_from_file_spec.rb
chef-11.18.0 spec/unit/knife/cookbook_metadata_from_file_spec.rb