summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/puppet/parser')
-rwxr-xr-xspec/unit/puppet/parser/functions/basename_spec.rb46
-rwxr-xr-xspec/unit/puppet/parser/functions/bool2str_spec.rb46
-rwxr-xr-xspec/unit/puppet/parser/functions/camelcase_spec.rb24
-rw-r--r--spec/unit/puppet/parser/functions/enclose_ipv6_spec.rb69
-rw-r--r--spec/unit/puppet/parser/functions/is_absolute_path_spec.rb86
5 files changed, 155 insertions, 116 deletions
diff --git a/spec/unit/puppet/parser/functions/basename_spec.rb b/spec/unit/puppet/parser/functions/basename_spec.rb
deleted file mode 100755
index 8a2d0dc..0000000
--- a/spec/unit/puppet/parser/functions/basename_spec.rb
+++ /dev/null
@@ -1,46 +0,0 @@
-#! /usr/bin/env ruby -S rspec
-require 'spec_helper'
-
-describe "the basename function" do
- let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
-
- it "should exist" do
- Puppet::Parser::Functions.function("basename").should == "function_basename"
- end
-
- it "should raise a ParseError if there is less than 1 argument" do
- lambda { scope.function_basename([]) }.should( raise_error(Puppet::ParseError))
- end
-
- it "should raise a ParseError if there are more than 2 arguments" do
- lambda { scope.function_basename(['a', 'b', 'c']) }.should( raise_error(Puppet::ParseError))
- end
-
- it "should return basename for an absolute path" do
- result = scope.function_basename(['/path/to/a/file.ext'])
- result.should(eq('file.ext'))
- end
-
- it "should return basename for a relative path" do
- result = scope.function_basename(['path/to/a/file.ext'])
- result.should(eq('file.ext'))
- end
-
- it "should strip extention when extension specified (absolute path)" do
- result = scope.function_basename(['/path/to/a/file.ext', '.ext'])
- result.should(eq('file'))
- end
-
- it "should strip extention when extension specified (relative path)" do
- result = scope.function_basename(['path/to/a/file.ext', '.ext'])
- result.should(eq('file'))
- end
-
- it "should complain about non-string first argument" do
- lambda { scope.function_basename([[]]) }.should( raise_error(Puppet::ParseError))
- end
-
- it "should complain about non-string second argument" do
- lambda { scope.function_basename(['/path/to/a/file.ext', []]) }.should( raise_error(Puppet::ParseError))
- end
-end
diff --git a/spec/unit/puppet/parser/functions/bool2str_spec.rb b/spec/unit/puppet/parser/functions/bool2str_spec.rb
deleted file mode 100755
index b878891..0000000
--- a/spec/unit/puppet/parser/functions/bool2str_spec.rb
+++ /dev/null
@@ -1,46 +0,0 @@
-#! /usr/bin/env ruby -S rspec
-require 'spec_helper'
-
-describe "the bool2str function" do
- let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
-
- it "should exist" do
- expect(Puppet::Parser::Functions.function("bool2str")).to eq("function_bool2str")
- end
-
- it "should raise a ParseError if there is less than 1 arguments" do
- expect { scope.function_bool2str([]) }.to( raise_error(Puppet::ParseError))
- end
-
- it "should convert true to 'true'" do
- result = scope.function_bool2str([true])
- expect(result).to(eq('true'))
- end
-
- it "should convert true to a string" do
- result = scope.function_bool2str([true])
- expect(result.class).to(eq(String))
- end
-
- it "should convert false to 'false'" do
- result = scope.function_bool2str([false])
- expect(result).to(eq('false'))
- end
-
- it "should convert false to a string" do
- result = scope.function_bool2str([false])
- expect(result.class).to(eq(String))
- end
-
- it "should not accept a string" do
- expect { scope.function_bool2str(["false"]) }.to( raise_error(Puppet::ParseError))
- end
-
- it "should not accept a nil value" do
- expect { scope.function_bool2str([nil]) }.to( raise_error(Puppet::ParseError))
- end
-
- it "should not accept an undef" do
- expect { scope.function_bool2str([:undef]) }.to( raise_error(Puppet::ParseError))
- end
-end
diff --git a/spec/unit/puppet/parser/functions/camelcase_spec.rb b/spec/unit/puppet/parser/functions/camelcase_spec.rb
deleted file mode 100755
index 70382ad..0000000
--- a/spec/unit/puppet/parser/functions/camelcase_spec.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-#! /usr/bin/env ruby -S rspec
-require 'spec_helper'
-
-describe "the camelcase function" do
- let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
-
- it "should exist" do
- expect(Puppet::Parser::Functions.function("camelcase")).to eq("function_camelcase")
- end
-
- it "should raise a ParseError if there is less than 1 arguments" do
- expect { scope.function_camelcase([]) }.to( raise_error(Puppet::ParseError))
- end
-
- it "should capitalize the beginning of a normal string" do
- result = scope.function_camelcase(["abc"])
- expect(result).to(eq("Abc"))
- end
-
- it "should camelcase an underscore-delimited string" do
- result = scope.function_camelcase(["aa_bb_cc"])
- expect(result).to(eq("AaBbCc"))
- end
-end
diff --git a/spec/unit/puppet/parser/functions/enclose_ipv6_spec.rb b/spec/unit/puppet/parser/functions/enclose_ipv6_spec.rb
new file mode 100644
index 0000000..b162127
--- /dev/null
+++ b/spec/unit/puppet/parser/functions/enclose_ipv6_spec.rb
@@ -0,0 +1,69 @@
+#! /usr/bin/env ruby -S rspec
+require 'spec_helper'
+
+describe "the enclose_ipv6 function" do
+ let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
+
+ it "should exist" do
+ expect(Puppet::Parser::Functions.function("enclose_ipv6")).to eq("function_enclose_ipv6")
+ end
+
+ it "should raise a ParseError if there is less than 1 arguments" do
+ expect { scope.function_enclose_ipv6([]) }.to( raise_error(Puppet::ParseError) )
+ end
+
+ it "should raise a ParseError if there is more than 1 arguments" do
+ expect { scope.function_enclose_ipv6(['argument1','argument2']) }.to( raise_error(Puppet::ParseError) )
+ end
+
+ it "should raise a ParseError when given garbage" do
+ expect { scope.function_enclose_ipv6(['garbage']) }.to( raise_error(Puppet::ParseError) )
+ end
+
+ it "should raise a ParseError when given something else than a string or an array" do
+ expect { scope.function_enclose_ipv6([['1' => '127.0.0.1']]) }.to( raise_error(Puppet::ParseError) )
+ end
+
+ it "should not raise a ParseError when given a single ip string" do
+ expect { scope.function_enclose_ipv6(['127.0.0.1']) }.to_not raise_error
+ end
+
+ it "should not raise a ParseError when given * as ip string" do
+ expect { scope.function_enclose_ipv6(['*']) }.to_not raise_error
+ end
+
+ it "should not raise a ParseError when given an array of ip strings" do
+ expect { scope.function_enclose_ipv6([['127.0.0.1','fe80::1']]) }.to_not raise_error
+ end
+
+ it "should not raise a ParseError when given differently notations of ip addresses" do
+ expect { scope.function_enclose_ipv6([['127.0.0.1','fe80::1','[fe80::1]']]) }.to_not raise_error
+ end
+
+ it "should raise a ParseError when given a wrong ipv4 address" do
+ expect { scope.function_enclose_ipv6(['127..0.0.1']) }.to( raise_error(Puppet::ParseError) )
+ end
+
+ it "should raise a ParseError when given a ipv4 address with square brackets" do
+ expect { scope.function_enclose_ipv6(['[127.0.0.1]']) }.to( raise_error(Puppet::ParseError) )
+ end
+
+ it "should raise a ParseError when given a wrong ipv6 address" do
+ expect { scope.function_enclose_ipv6(['fe80:::1']) }.to( raise_error(Puppet::ParseError) )
+ end
+
+ it "should embrace ipv6 adresses within an array of ip addresses" do
+ result = scope.function_enclose_ipv6([['127.0.0.1','fe80::1','[fe80::2]']])
+ expect(result).to(eq(['127.0.0.1','[fe80::1]','[fe80::2]']))
+ end
+
+ it "should embrace a single ipv6 adresse" do
+ result = scope.function_enclose_ipv6(['fe80::1'])
+ expect(result).to(eq(['[fe80::1]']))
+ end
+
+ it "should not embrace a single ipv4 adresse" do
+ result = scope.function_enclose_ipv6(['127.0.0.1'])
+ expect(result).to(eq(['127.0.0.1']))
+ end
+end
diff --git a/spec/unit/puppet/parser/functions/is_absolute_path_spec.rb b/spec/unit/puppet/parser/functions/is_absolute_path_spec.rb
new file mode 100644
index 0000000..8931208
--- /dev/null
+++ b/spec/unit/puppet/parser/functions/is_absolute_path_spec.rb
@@ -0,0 +1,86 @@
+require 'spec_helper'
+
+describe :is_absolute_path do
+ let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
+
+ let(:function_args) do
+ []
+ end
+
+ let(:function) do
+ scope.function_is_absolute_path(function_args)
+ end
+
+
+ describe 'validate arity' do
+ let(:function_args) do
+ [1,2]
+ end
+ it "should raise a ParseError if there is more than 1 arguments" do
+ lambda { function }.should( raise_error(ArgumentError))
+ end
+
+ end
+
+ it "should exist" do
+ Puppet::Parser::Functions.function(subject).should == "function_#{subject}"
+ end
+
+ # help enforce good function defination
+ it 'should contain arity' do
+
+ end
+
+ it "should raise a ParseError if there is less than 1 arguments" do
+ lambda { function }.should( raise_error(ArgumentError))
+ end
+
+
+ describe 'should retrun true' do
+ let(:return_value) do
+ true
+ end
+
+ describe 'windows' do
+ let(:function_args) do
+ ['c:\temp\test.txt']
+ end
+ it 'should return data' do
+ function.should eq(return_value)
+ end
+ end
+
+ describe 'non-windows' do
+ let(:function_args) do
+ ['/temp/test.txt']
+ end
+
+ it 'should return data' do
+ function.should eq(return_value)
+ end
+ end
+ end
+
+ describe 'should return false' do
+ let(:return_value) do
+ false
+ end
+ describe 'windows' do
+ let(:function_args) do
+ ['..\temp\test.txt']
+ end
+ it 'should return data' do
+ function.should eq(return_value)
+ end
+ end
+
+ describe 'non-windows' do
+ let(:function_args) do
+ ['../var/lib/puppet']
+ end
+ it 'should return data' do
+ function.should eq(return_value)
+ end
+ end
+ end
+end \ No newline at end of file