diff options
author | Micah <micah@leap.se> | 2016-07-12 16:45:36 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-07-12 16:45:36 -0400 |
commit | 6083b23278927189de58c11bbb5bc7d93ccced24 (patch) | |
tree | ce771fbca93d6f798a6962b3b2a187078c978554 /puppet/modules/common/spec/unit | |
parent | 1f231f09a9b6911b2ca57ac82235c6028922d54f (diff) |
git subrepo clone https://leap.se/git/puppet_common puppet/modules/common
subrepo:
subdir: "puppet/modules/common"
merged: "ae14962"
upstream:
origin: "https://leap.se/git/puppet_common"
branch: "master"
commit: "ae14962"
git-subrepo:
version: "0.3.0"
origin: "https://github.com/ingydotnet/git-subrepo"
commit: "1e79595"
Change-Id: I82a15d5ab5c4e8f689f73de4e5ae97557f39b6fb
Diffstat (limited to 'puppet/modules/common/spec/unit')
-rw-r--r-- | puppet/modules/common/spec/unit/parser/functions/tfile.rb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/puppet/modules/common/spec/unit/parser/functions/tfile.rb b/puppet/modules/common/spec/unit/parser/functions/tfile.rb new file mode 100644 index 00000000..5c8f636e --- /dev/null +++ b/puppet/modules/common/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) + FileUtils.expects(:mkdir_p).with("/some_path",:mode => 0700) + FileUtils.expects(:touch).with('/some_path/aa') + result = @scope.function_tfile(['/some_path/aa']) + result.should == "foo1\nfoo2\n" + end + end + +end |