summaryrefslogtreecommitdiff
path: root/spec/unit/knife/role_env_run_list_replace_spec.rb
blob: ea48601b8da8be713275753e8fcc977f28d2192d (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#
# Author:: Adam Jacob (<adam@opscode.com>)
# Author:: Will Albenzi (<walbenzi@gmail.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 'spec_helper'

describe Chef::Knife::RoleEnvRunListReplace do
  before(:each) do
    Chef::Config[:role_name]  = "will"
    Chef::Config[:env_name]  = "QA"
    @setup = Chef::Knife::RoleEnvRunListAdd.new
    @setup.name_args = [ "will", "QA", "role[monkey]", "role[dude]", "role[fixer]" ]

    @knife = Chef::Knife::RoleEnvRunListReplace.new
    @knife.config = {
      :print_after => nil
    }
    @knife.name_args = [ "will", "QA", "role[dude]", "role[person]" ]
    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 remove the item from the run list" do
       @setup.run
       @knife.run
       expect(@role.run_list_for('QA')[1]).not_to eq('role[dude]')
       expect(@role.run_list_for('QA')[1]).to eq('role[person]')
       expect(@role.run_list[0]).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 "run with a list of roles and recipes" do
       it "should replace the items from the run list" do
         @setup.name_args = [ "will", "QA", "recipe[orange::chicken]", "role[monkey]", "recipe[duck::type]", "role[person]", "role[bird]", "role[town]" ]
         @setup.run
         @setup.name_args = [ "will", "PRD", "recipe[orange::chicken]", "role[monkey]", "recipe[duck::type]", "role[person]", "role[bird]", "role[town]" ]
         @setup.run
         @knife.name_args = [ 'will', 'QA', 'role[monkey]', 'role[gibbon]' ]
         @knife.run
         @knife.name_args = [ 'will', 'QA', 'recipe[duck::type]', 'recipe[duck::mallard]' ]
         @knife.run
         expect(@role.run_list_for('QA')).not_to include('role[monkey]')
         expect(@role.run_list_for('QA')).not_to include('recipe[duck::type]')
         expect(@role.run_list_for('QA')[0]).to eq('recipe[orange::chicken]')
         expect(@role.run_list_for('QA')[1]).to eq('role[gibbon]')
         expect(@role.run_list_for('QA')[2]).to eq('recipe[duck::mallard]')
         expect(@role.run_list_for('QA')[3]).to eq('role[person]')
         expect(@role.run_list_for('QA')[4]).to eq('role[bird]')
         expect(@role.run_list_for('QA')[5]).to eq('role[town]')
         expect(@role.run_list_for('PRD')[0]).to eq('recipe[orange::chicken]')
         expect(@role.run_list_for('PRD')[1]).to eq('role[monkey]')
         expect(@role.run_list_for('PRD')[2]).to eq('recipe[duck::type]')
         expect(@role.run_list_for('PRD')[3]).to eq('role[person]')
         expect(@role.run_list_for('PRD')[4]).to eq('role[bird]')
         expect(@role.run_list_for('PRD')[5]).to eq('role[town]')
         expect(@role.run_list[0]).to be_nil
       end
     end
  end
end