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
|
require 'spec_helper'
require 'matchers/include'
require 'puppet/indirector/file_content/file'
describe Puppet::Indirector::DirectFileServer, " when interacting with the filesystem and the model" do
include PuppetSpec::Files
before do
# We just test a subclass, since it's close enough.
@terminus = Puppet::Indirector::FileContent::File.new
@filepath = make_absolute("/path/to/my/file")
end
it "should return an instance of the model" do
pending("porting to Windows", :if => Puppet.features.microsoft_windows?) do
Puppet::FileSystem.expects(:exist?).with(@filepath).returns(true)
@terminus.find(@terminus.indirection.request(:find, "file://host#{@filepath}", nil)).should be_instance_of(Puppet::FileServing::Content)
end
end
it "should return an instance capable of returning its content" do
pending("porting to Windows", :if => Puppet.features.microsoft_windows?) do
filename = file_containing("testfile", "my content")
instance = @terminus.find(@terminus.indirection.request(:find, "file://host#{filename}", nil))
instance.content.should == "my content"
end
end
end
describe Puppet::Indirector::DirectFileServer, " when interacting with FileServing::Fileset and the model" do
include PuppetSpec::Files
include Matchers::Include
matcher :file_with_content do |name, content|
match do |actual|
actual.full_path == name && actual.content == content
end
end
matcher :directory_named do |name|
match do |actual|
actual.full_path == name
end
end
it "should return an instance for every file in the fileset" do
path = tmpdir('direct_file_server_testing')
File.open(File.join(path, "one"), "w") { |f| f.print "one content" }
File.open(File.join(path, "two"), "w") { |f| f.print "two content" }
terminus = Puppet::Indirector::FileContent::File.new
request = terminus.indirection.request(:search, "file:///#{path}", nil, :recurse => true)
expect(terminus.search(request)).to include_in_any_order(
file_with_content(File.join(path, "one"), "one content"),
file_with_content(File.join(path, "two"), "two content"),
directory_named(path))
end
end
|