summaryrefslogtreecommitdiff
path: root/spec/unit/face/node_spec.rb
blob: d7e06b7b60fdb5632712a37216e02b8678bb7c7c (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/face'

describe Puppet::Face[:node, '0.0.1'] do
  after :all do
    Puppet::SSL::Host.ca_location = :none
  end

  describe '#cleanup' do
    it "should clean everything" do
      {
        "cert"         => ['hostname'],
        "cached_facts" => ['hostname'],
        "cached_node"  => ['hostname'],
        "reports"      => ['hostname'],
        "storeconfigs" => ['hostname', :unexport]
      }.each { |k, v| subject.expects("clean_#{k}".to_sym).with(*v) }
      subject.cleanup('hostname', :unexport)
    end
  end

  describe 'when running #clean' do
    before :each do
      Puppet::Node::Facts.indirection.stubs(:terminus_class=)
      Puppet::Node::Facts.indirection.stubs(:cache_class=)
      Puppet::Node.stubs(:terminus_class=)
      Puppet::Node.stubs(:cache_class=)
    end

    it 'should invoke #cleanup' do
      subject.expects(:cleanup).with('hostname', nil)
      subject.clean('hostname')
    end
  end

  describe "clean action" do
    before :each do
      Puppet::Node::Facts.indirection.stubs(:terminus_class=)
      Puppet::Node::Facts.indirection.stubs(:cache_class=)
      Puppet::Node.stubs(:terminus_class=)
      Puppet::Node.stubs(:cache_class=)
      subject.stubs(:cleanup)
    end

    it "should have a clean action" do
      subject.should be_action :clean
    end

    it "should not accept a call with no arguments" do
      expect { subject.clean() }.to raise_error
    end

    it "should accept a node name" do
      expect { subject.clean('hostname') }.to_not raise_error
    end

    it "should accept more than one node name" do
      expect do
        subject.clean('hostname', 'hostname2', {})
      end.to_not raise_error

      expect do
        subject.clean('hostname', 'hostname2', 'hostname3', { :unexport => true })
      end.to_not raise_error
    end

    it "should accept the option --unexport" do
      expect {
        subject.clean('hostname', :unexport => true)
      }.to_not raise_error
    end

    context "clean action" do
      subject { Puppet::Face[:node, :current] }
      before :each do
        Puppet::Util::Log.stubs(:newdestination)
        Puppet::Util::Log.stubs(:level=)
      end

      describe "during setup" do
        it "should set facts terminus and cache class to yaml" do
          Puppet::Node::Facts.indirection.expects(:terminus_class=).with(:yaml)
          Puppet::Node::Facts.indirection.expects(:cache_class=).with(:yaml)

          subject.clean('hostname')
        end

        it "should run in master mode" do
          subject.clean('hostname')
          Puppet.run_mode.should be_master
        end

        it "should set node cache as yaml" do
          Puppet::Node.indirection.expects(:terminus_class=).with(:yaml)
          Puppet::Node.indirection.expects(:cache_class=).with(:yaml)

          subject.clean('hostname')
        end

        it "should manage the certs if the host is a CA" do
          Puppet::SSL::CertificateAuthority.stubs(:ca?).returns(true)
          Puppet::SSL::Host.expects(:ca_location=).with(:local)
          subject.clean('hostname')
        end

        it "should not manage the certs if the host is not a CA" do
          Puppet::SSL::CertificateAuthority.stubs(:ca?).returns(false)
          Puppet::SSL::Host.expects(:ca_location=).with(:none)
          subject.clean('hostname')
        end
      end

      describe "when cleaning certificate" do
        before :each do
          Puppet::SSL::Host.stubs(:destroy)
          @ca = mock()
          Puppet::SSL::CertificateAuthority.stubs(:instance).returns(@ca)
        end

        it "should send the :destroy order to the ca if we are a CA" do
          Puppet::SSL::CertificateAuthority.stubs(:ca?).returns(true)
          @ca.expects(:revoke).with(@host)
          @ca.expects(:destroy).with(@host)
          subject.clean_cert(@host)
        end

        it "should not destroy the certs if we are not a CA" do
          Puppet::SSL::CertificateAuthority.stubs(:ca?).returns(false)
          @ca.expects(:revoke).never
          @ca.expects(:destroy).never
          subject.clean_cert(@host)
        end
      end

      describe "when cleaning cached facts" do
        it "should destroy facts" do
          @host = 'node'
          Puppet::Node::Facts.indirection.expects(:destroy).with(@host)

          subject.clean_cached_facts(@host)
        end
      end

      describe "when cleaning cached node" do
        it "should destroy the cached node" do
          Puppet::Node.indirection.expects(:destroy).with(@host)
          subject.clean_cached_node(@host)
        end
      end

      describe "when cleaning archived reports" do
        it "should tell the reports to remove themselves" do
          Puppet::Transaction::Report.indirection.stubs(:destroy).with(@host)

          subject.clean_reports(@host)
        end
      end

      describe "when cleaning storeconfigs entries for host", :if => Puppet.features.rails? do
        before :each do
          # Stub this so we don't need access to the DB
          require 'puppet/rails/host'

          Puppet[:storeconfigs] = true

          Puppet::Rails.stubs(:connect)
          @rails_node = stub_everything 'rails_node'
          Puppet::Rails::Host.stubs(:find_by_name).returns(@rails_node)
        end

        it "should connect to the database" do
          Puppet::Rails.expects(:connect)
          subject.clean_storeconfigs(@host, false)
        end

        it "should find the right host entry" do
          Puppet::Rails::Host.expects(:find_by_name).with(@host).returns(@rails_node)

          subject.clean_storeconfigs(@host, false)
        end

        describe "without unexport" do
          it "should remove the host and it's content" do
            @rails_node.expects(:destroy)

           subject.clean_storeconfigs(@host, false)
          end
        end

        describe "with unexport" do
          before :each do
            @rails_node.stubs(:id).returns(1234)

            @type = stub_everything 'type'
            @type.stubs(:validattr?).with(:ensure).returns(true)

            @ensure_name = stub_everything 'ensure_name', :id => 23453
            Puppet::Rails::ParamName.stubs(:find_or_create_by_name).returns(@ensure_name)

            @param_values = stub_everything 'param_values'
            @resource = stub_everything 'resource', :param_values => @param_values, :restype => "File"
            Puppet::Rails::Resource.stubs(:find).returns([@resource])
          end

          it "should find all resources" do
            Puppet::Rails::Resource.expects(:find).with(:all, {:include => {:param_values => :param_name}, :conditions => ["exported=? AND host_id=?", true, 1234]}).returns([])

            subject.clean_storeconfigs(@host, true)
          end

          describe "with an exported native type" do
            before :each do
              Puppet::Type.stubs(:type).returns(@type)
              @type.expects(:validattr?).with(:ensure).returns(true)
            end

            it "should test a native type for ensure as an attribute" do
              subject.clean_storeconfigs(@host, true)
            end

            it "should delete the old ensure parameter" do
              ensure_param = stub 'ensure_param', :id => 12345, :line => 12
              @param_values.stubs(:find).returns(ensure_param)
              Puppet::Rails::ParamValue.expects(:delete).with(12345);
              subject.clean_storeconfigs(@host, true)
            end

            it "should add an ensure => absent parameter" do
              @param_values.expects(:create).with(:value => "absent",
                                                       :line => 0,
                                                       :param_name => @ensure_name)
              subject.clean_storeconfigs(@host, true)
            end
          end

          describe "with an exported definition" do
            it "should try to lookup a definition and test it for the ensure argument" do
              Puppet::Type.stubs(:type).returns(nil)
              definition = stub_everything 'definition', :arguments => { 'ensure' => 'present' }
              Puppet::Resource::TypeCollection.any_instance.expects(:find_definition).with('', "File").returns(definition)
              subject.clean_storeconfigs(@host, true)
            end
          end

          it "should not unexport the resource of an unkown type" do
            Puppet::Type.stubs(:type).returns(nil)
            Puppet::Resource::TypeCollection.any_instance.expects(:find_definition).with('', "File").returns(nil)
            Puppet::Rails::ParamName.expects(:find_or_create_by_name).never
            subject.clean_storeconfigs(@host, true)
          end

          it "should not unexport the resource of a not ensurable native type" do
            Puppet::Type.stubs(:type).returns(@type)
            @type.expects(:validattr?).with(:ensure).returns(false)
            Puppet::Resource::TypeCollection.any_instance.expects(:find_definition).with('', "File").returns(nil)
            Puppet::Rails::ParamName.expects(:find_or_create_by_name).never
            subject.clean_storeconfigs(@host, true)
          end

          it "should not unexport the resource of a not ensurable definition" do
            Puppet::Type.stubs(:type).returns(nil)
            definition = stub_everything 'definition', :arguments => { 'foobar' => 'someValue' }
            Puppet::Resource::TypeCollection.any_instance.expects(:find_definition).with('', "File").returns(definition)
            Puppet::Rails::ParamName.expects(:find_or_create_by_name).never
            subject.clean_storeconfigs(@host, true)
          end
        end
      end
    end
  end
end