aboutsummaryrefslogtreecommitdiff
path: root/spec/unit/parser/functions/tfile.rb
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2011-02-26 00:25:57 +0100
committerintrigeri <intrigeri@boum.org>2011-02-26 00:25:57 +0100
commit0b709ed5a7acb5964970e2f49153bd47fc9a7301 (patch)
tree0ddc1b182904f3074a4cec121910c445daa2f5bd /spec/unit/parser/functions/tfile.rb
parent5d7667b8d00cc3fc6cfa75a0413076db1dd0cff8 (diff)
parent7e7eb1d652a97b73e09c26c5c04e21e80d8706ab (diff)
downloadpuppet-common-0b709ed5a7acb5964970e2f49153bd47fc9a7301.tar.gz
puppet-common-0b709ed5a7acb5964970e2f49153bd47fc9a7301.tar.bz2
Merge remote branch 'immerda/master'
Diffstat (limited to 'spec/unit/parser/functions/tfile.rb')
-rw-r--r--spec/unit/parser/functions/tfile.rb54
1 files changed, 54 insertions, 0 deletions
diff --git a/spec/unit/parser/functions/tfile.rb b/spec/unit/parser/functions/tfile.rb
new file mode 100644
index 0000000..1cc37d4
--- /dev/null
+++ b/spec/unit/parser/functions/tfile.rb
@@ -0,0 +1,54 @@
+#! /usr/bin/env ruby
+
+require File.dirname(__FILE__) + '/../../../spec_helper'
+require 'mocha'
+
+describe "the tfile function" do
+
+ before :each do
+ @scope = Puppet::Parser::Scope.new
+ end
+
+ it "should exist" do
+ Puppet::Parser::Functions.function("tfile").should == "function_tfile"
+ end
+
+ it "should raise a ParseError if there is less than 1 arguments" do
+ lambda { @scope.function_tfile([]) }.should( raise_error(Puppet::ParseError))
+ end
+
+ it "should raise a ParseError if there is more than 1 arguments" do
+ lambda { @scope.function_tfile(["bar", "gazonk"]) }.should( raise_error(Puppet::ParseError))
+ end
+
+ describe "when executed properly" do
+
+ before :each do
+ File.stubs(:read).with('/some_path/aa').returns("foo1\nfoo2\n")
+ end
+
+ it "should return the content of the file" do
+ File.stubs(:exists?).with('/some_path/aa').returns(true)
+ result = @scope.function_tfile(['/some_path/aa'])
+ result.should == "foo1\nfoo2\n"
+ end
+
+ it "should touch a file if it does not exist" do
+ File.stubs(:exists?).with('/some_path/aa').returns(false)
+ File.stubs(:directory?).with('/some_path').returns(true)
+ FileUtils.expects(:touch).with('/some_path/aa')
+ result = @scope.function_tfile(['/some_path/aa'])
+ result.should == "foo1\nfoo2\n"
+ end
+
+ it "should create the path if it does not exist" do
+ File.stubs(:exists?).with('/some_path/aa').returns(false)
+ File.stubs(:directory?).with('/some_path').returns(false)
+ Puppet::Util.expects(:recmkdir).with("/some_path",0700)
+ FileUtils.expects(:touch).with('/some_path/aa')
+ result = @scope.function_tfile(['/some_path/aa'])
+ result.should == "foo1\nfoo2\n"
+ end
+ end
+
+end