summaryrefslogtreecommitdiffstats
path: root/spec/unit/util
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-01-15 15:13:28 -0600
committerJames Turnbull <james@lovedthanlost.net>2009-02-13 14:16:35 +1100
commit4e89156b21b287b683c27a4cd691856c4e378a62 (patch)
treee4b1b3e607682d32d6eae5fd3b5b6c08ac3e1130 /spec/unit/util
parentcc4d6586d420f4beea1eeef85cfe7a28f8e493ac (diff)
downloadpuppet-4e89156b21b287b683c27a4cd691856c4e378a62.tar.gz
puppet-4e89156b21b287b683c27a4cd691856c4e378a62.tar.xz
puppet-4e89156b21b287b683c27a4cd691856c4e378a62.zip
Migrated FileType tests to spec, and fleshed them out a bit.
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec/unit/util')
-rw-r--r--spec/unit/util/filetype.rb116
1 files changed, 116 insertions, 0 deletions
diff --git a/spec/unit/util/filetype.rb b/spec/unit/util/filetype.rb
new file mode 100644
index 000000000..74dae3356
--- /dev/null
+++ b/spec/unit/util/filetype.rb
@@ -0,0 +1,116 @@
+#!/usr/bin/env ruby
+
+Dir.chdir(File.dirname(__FILE__)) { (s = lambda { |f| File.exist?(f) ? require(f) : Dir.chdir("..") { s.call(f) } }).call("spec/spec_helper.rb") }
+
+require 'puppet/util/filetype'
+
+# XXX Import all of the tests into this file.
+describe Puppet::Util::FileType do
+ describe "when backing up a file" do
+ before do
+ @file = Puppet::Util::FileType.filetype(:flat).new("/my/file")
+ end
+
+ it "should do nothing if the file does not exist" do
+ File.expects(:exists?).with("/my/file").returns false
+ @file.expects(:bucket).never
+ @file.backup
+ end
+
+ it "should use its filebucket to backup the file if it exists" do
+ File.expects(:exists?).with("/my/file").returns true
+
+ bucket = mock 'bucket'
+ bucket.expects(:backup).with("/my/file")
+
+ @file.expects(:bucket).returns bucket
+ @file.backup
+ end
+
+ it "should use the filebucket named 'puppet' if it finds one" do
+ bucket = mock 'bucket'
+ bucket.expects(:bucket).returns "mybucket"
+
+ Puppet::Type.type(:filebucket).expects(:[]).with("puppet").returns bucket
+
+ @file.bucket.should == "mybucket"
+ end
+
+ it "should use the default filebucket if none named 'puppet' is found" do
+ bucket = mock 'bucket'
+ bucket.expects(:bucket).returns "mybucket"
+
+ Puppet::Type.type(:filebucket).expects(:[]).with("puppet").returns nil
+ Puppet::Type.type(:filebucket).expects(:mkdefaultbucket).returns bucket
+
+ @file.bucket.should == "mybucket"
+ end
+ end
+
+ describe "the flat filetype" do
+ before do
+ @type = Puppet::Util::FileType.filetype(:flat)
+ end
+ it "should exist" do
+ @type.should_not be_nil
+ end
+
+ describe "when the file already exists" do
+ it "should return the file's contents when asked to read it" do
+ file = @type.new("/my/file")
+ File.expects(:exist?).with("/my/file").returns true
+ File.expects(:read).with("/my/file").returns "my text"
+
+ file.read.should == "my text"
+ end
+
+ it "should unlink the file when asked to remove it" do
+ file = @type.new("/my/file")
+ File.expects(:exist?).with("/my/file").returns true
+ File.expects(:unlink).with("/my/file")
+
+ file.remove
+ end
+ end
+
+ describe "when the file does not exist" do
+ it "should return an empty string when asked to read the file" do
+ file = @type.new("/my/file")
+ File.expects(:exist?).with("/my/file").returns false
+
+ file.read.should == ""
+ end
+ end
+
+ describe "when writing the file" do
+ before do
+ @file = @type.new("/my/file")
+ FileUtils.stubs(:cp)
+
+ @tempfile = stub 'tempfile', :print => nil, :close => nil, :flush => nil, :path => "/other/file"
+ Tempfile.stubs(:new).returns @tempfile
+ end
+
+ it "should back up the file" do
+ @file.expects(:backup)
+
+ @file.write("foo")
+ end
+
+ it "should first create a temp file and copy its contents over to the file location" do
+ Tempfile.expects(:new).with("puppet").returns @tempfile
+ @tempfile.expects(:print).with("my text")
+ @tempfile.expects(:flush)
+ @tempfile.expects(:close)
+ FileUtils.expects(:cp).with(@tempfile.path, "/my/file")
+
+ @file.write "my text"
+ end
+
+ it "should set the selinux default context on the file" do
+ @file.expects(:set_selinux_default_context).with("/my/file")
+ @file.write "eh"
+ end
+ end
+ end
+end