File: file_server_spec.rb

package info (click to toggle)
puppet 5.5.22-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,316 kB
  • sloc: ruby: 254,925; sh: 1,608; xml: 219; makefile: 153; sql: 103
file content (302 lines) | stat: -rw-r--r-- 11,665 bytes parent folder | download
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
require 'spec_helper'

require 'puppet/indirector/file_server'
require 'puppet/file_serving/configuration'

describe Puppet::Indirector::FileServer do
  before(:each) do
    allow(Puppet::Indirector::Terminus).to receive(:register_terminus_class)
    @model = double('model')
    @indirection = double('indirection', :name => :mystuff, :register_terminus_type => nil, :model => @model)
    allow(Puppet::Indirector::Indirection).to receive(:instance).and_return(@indirection)

    module Testing; end

    # The Indirector does a lot of class-level caching of things, and indirections register themselves
    # whenever they're created (at include time), which makes working with them in tests _very_ annoying.
    # We're effectively undefining the test class if it exists from a previous test so that we can
    # re-register the new one as any mocks/stubs that existed on the old one from a previous test will no
    # longer be valid, and will cause rspec-mocks to (rightfully) blow up.
    Testing.send(:remove_const, :MyFileServer) if Testing.constants.include?(:MyFileServer)

    @file_server_class = class Testing::MyFileServer < Puppet::Indirector::FileServer
      self
    end

    @file_server = @file_server_class.new

    @uri = "puppet://host/my/local/file"
    @configuration = double('configuration')
    allow(Puppet::FileServing::Configuration).to receive(:configuration).and_return(@configuration)

    @request = Puppet::Indirector::Request.new(:myind, :mymethod, @uri, :environment => "myenv")
  end

  describe "when finding files" do
    before do
      @mount = double('mount', :find => nil)
      @instance = double('instance', :links= => nil, :collect => nil)
    end

    it "should use the configuration to find the mount and relative path" do
      expect(@configuration).to receive(:split_path).with(@request)

      @file_server.find(@request)
    end

    it "should return nil if it cannot find the mount" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([nil, nil])

      expect(@file_server.find(@request)).to be_nil
    end

    it "should use the mount to find the full path" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:find).with("rel/path", anything)

      @file_server.find(@request)
    end

    it "should pass the request when finding a file" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:find).with(anything, @request)

      @file_server.find(@request)
    end

    it "should return nil if it cannot find a full path" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:find).with("rel/path", anything).and_return(nil)

      expect(@file_server.find(@request)).to be_nil
    end

    it "should create an instance with the found path" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:find).with("rel/path", anything).and_return("/my/file")

      expect(@model).to receive(:new).with("/my/file", {:relative_path => nil}).and_return(@instance)

      expect(@file_server.find(@request)).to equal(@instance)
    end

    it "should set 'links' on the instance if it is set in the request options" do
      @request.options[:links] = true
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:find).with("rel/path", anything).and_return("/my/file")

      expect(@model).to receive(:new).with("/my/file", {:relative_path => nil}).and_return(@instance)

      expect(@instance).to receive(:links=).with(true)

      expect(@file_server.find(@request)).to equal(@instance)
    end

    it "should collect the instance" do
      @request.options[:links] = true
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:find).with("rel/path", anything).and_return("/my/file")

      expect(@model).to receive(:new).with("/my/file", {:relative_path => nil}).and_return(@instance)

      expect(@instance).to receive(:collect)

      expect(@file_server.find(@request)).to equal(@instance)
    end
  end

  describe "when searching for instances" do
    before do
      @mount = double('mount', :search => nil)
      @instance = double('instance', :links= => nil, :collect => nil)
    end

    it "should use the configuration to search the mount and relative path" do
      expect(@configuration).to receive(:split_path).with(@request)

      @file_server.search(@request)
    end

    it "should return nil if it cannot search the mount" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([nil, nil])

      expect(@file_server.search(@request)).to be_nil
    end

    it "should use the mount to search for the full paths" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:search).with("rel/path", anything)

      @file_server.search(@request)
    end

    it "should pass the request" do
      allow(@configuration).to receive(:split_path).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:search).with(anything, @request)

      @file_server.search(@request)
    end

    it "should return nil if searching does not find any full paths" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:search).with("rel/path", anything).and_return(nil)

      expect(@file_server.search(@request)).to be_nil
    end

    it "should create a fileset with each returned path and merge them" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:search).with("rel/path", anything).and_return(%w{/one /two})

      allow(Puppet::FileSystem).to receive(:exist?).and_return(true)

      one = double('fileset_one')
      expect(Puppet::FileServing::Fileset).to receive(:new).with("/one", @request).and_return(one)
      two = double('fileset_two')
      expect(Puppet::FileServing::Fileset).to receive(:new).with("/two", @request).and_return(two)

      expect(Puppet::FileServing::Fileset).to receive(:merge).with(one, two).and_return([])

      @file_server.search(@request)
    end

    it "should create an instance with each path resulting from the merger of the filesets" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:search).with("rel/path", anything).and_return([])

      allow(Puppet::FileSystem).to receive(:exist?).and_return(true)

      expect(Puppet::FileServing::Fileset).to receive(:merge).and_return("one" => "/one", "two" => "/two")

      one = double('one', :collect => nil)
      expect(@model).to receive(:new).with("/one", :relative_path => "one").and_return(one)

      two = double('two', :collect => nil)
      expect(@model).to receive(:new).with("/two", :relative_path => "two").and_return(two)

      # order can't be guaranteed
      result = @file_server.search(@request)
      expect(result).to be_include(one)
      expect(result).to be_include(two)
      expect(result.length).to eq(2)
    end

    it "should set 'links' on the instances if it is set in the request options" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:search).with("rel/path", anything).and_return([])

      allow(Puppet::FileSystem).to receive(:exist?).and_return(true)

      expect(Puppet::FileServing::Fileset).to receive(:merge).and_return("one" => "/one")

      one = double('one', :collect => nil)
      expect(@model).to receive(:new).with("/one", :relative_path => "one").and_return(one)
      expect(one).to receive(:links=).with(true)

      @request.options[:links] = true

      @file_server.search(@request)
    end

    it "should set 'checksum_type' on the instances if it is set in the request options" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:search).with("rel/path", anything).and_return([])

      allow(Puppet::FileSystem).to receive(:exist?).and_return(true)

      expect(Puppet::FileServing::Fileset).to receive(:merge).and_return("one" => "/one")

      one = double('one', :collect => nil)
      expect(@model).to receive(:new).with("/one", :relative_path => "one").and_return(one)

      expect(one).to receive(:checksum_type=).with(:checksum)
      @request.options[:checksum_type] = :checksum

      @file_server.search(@request)
    end

    it "should collect the instances" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])

      expect(@mount).to receive(:search).with("rel/path", anything).and_return([])

      allow(Puppet::FileSystem).to receive(:exist?).and_return(true)

      expect(Puppet::FileServing::Fileset).to receive(:merge).and_return("one" => "/one")

      one = double('one')
      expect(@model).to receive(:new).with("/one", :relative_path => "one").and_return(one)
      expect(one).to receive(:collect)

      @file_server.search(@request)
    end
  end

  describe "when checking authorization" do
    before do
      @request.method = :find

      @mount = double('mount')
      allow(@configuration).to receive(:split_path).with(@request).and_return([@mount, "rel/path"])
      allow(@request).to receive(:node).and_return("mynode")
      allow(@request).to receive(:ip).and_return("myip")
      allow(@mount).to receive(:name).and_return("myname")
      allow(@mount).to receive(:allowed?).with("mynode", "myip").and_return("something")
      allow(@mount).to receive(:empty?)
      allow(@mount).to receive(:globalallow?)
    end

    it "should return false when destroying" do
      @request.method = :destroy
      expect(@file_server).not_to be_authorized(@request)
    end

    it "should return false when saving" do
      @request.method = :save
      expect(@file_server).not_to be_authorized(@request)
    end

    it "should use the configuration to find the mount and relative path" do
      expect(@configuration).to receive(:split_path).with(@request)

      @file_server.authorized?(@request)
    end

    it "should return false if it cannot find the mount" do
      expect(@configuration).to receive(:split_path).with(@request).and_return([nil, nil])

      expect(@file_server).not_to be_authorized(@request)
    end

    it "should return true when no auth directives are defined for the mount point" do
      allow(@mount).to receive(:empty?).and_return(true)
      allow(@mount).to receive(:globalallow?).and_return(nil)
      expect(@file_server).to be_authorized(@request)
    end

    it "should return true when a global allow directive is defined for the mount point" do
      allow(@mount).to receive(:empty?).and_return(false)
      allow(@mount).to receive(:globalallow?).and_return(true)
      expect(@file_server).to be_authorized(@request)
    end

    it "should return false when a non-global allow directive is defined for the mount point" do
      allow(@mount).to receive(:empty?).and_return(false)
      allow(@mount).to receive(:globalallow?).and_return(false)
      expect(@file_server).not_to be_authorized(@request)
    end
  end
end