summaryrefslogtreecommitdiff
path: root/spec/unit/knife/role_run_list_set_spec.rb
blob: 69543dbda440d83e0dfc7622b42c6baf316ded91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#
# Author:: Adam Jacob (<adam@chef.io>)
# Author:: Will Albenzi (<walbenzi@gmail.com>)
# Copyright:: Copyright 2008-2016, 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::Knife::RoleRunListSet do
  before(:each) do
    Chef::Config[:role_name] = "will"
    @setup = Chef::Knife::RoleRunListAdd.new
    @setup.name_args = [ "will", "role[monkey]", "role[person]", "role[bucket]" ]

    @knife = Chef::Knife::RoleRunListSet.new
    @knife.config = {
      print_after: nil,
    }
    @knife.name_args = [ "will", "role[owen]", "role[mauntel]" ]
    allow(@knife).to receive(:output).and_return(true)

    @role = Chef::Role.new
    @role.name("will")
    allow(@role).to receive(:save).and_return(true)

    allow(@knife.ui).to receive(:confirm).and_return(true)
    allow(Chef::Role).to receive(:load).and_return(@role)

  end

  describe "run" do

#    it "should display all the things" do
#      @knife.run
#      @role.to_json.should == 'show all the things'
#    end

    it "should load the node" do
      expect(Chef::Role).to receive(:load).with("will").and_return(@role)
      @knife.run
    end

    it "should replace all the items in the runlist with what is specified" do
      @setup.run
      @knife.run
      expect(@role.run_list[0]).to eq("role[owen]")
      expect(@role.run_list[1]).to eq("role[mauntel]")
      expect(@role.run_list[2]).to be_nil
    end

    it "should save the node" do
      expect(@role).to receive(:save).and_return(true)
      @knife.run
    end

    it "should print the run list" do
      expect(@knife).to receive(:output).and_return(true)
      @knife.config[:print_after] = true
      @setup.run
      @knife.run
    end

    describe "should clear an environmental run list of roles and recipes" do
      it "should remove the items from the run list" do
        @setup.name_args = [ "will", "recipe[orange::chicken]", "role[monkey]", "recipe[duck::type]", "role[person]", "role[bird]", "role[town]" ]
        @setup.run
        @knife.name_args = [ "will", "role[coke]", "role[pepsi]" ]
        @knife.run
        expect(@role.run_list[0]).to eq("role[coke]")
        expect(@role.run_list[1]).to eq("role[pepsi]")
        expect(@role.run_list[2]).to be_nil
        expect(@role.run_list[3]).to be_nil
      end
    end
  end
end