2012-07-20 00:27:52 +02:00
|
|
|
#! /usr/bin/env ruby -S rspec
|
2011-06-29 22:21:55 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "the values_at function" do
|
2012-07-23 17:28:06 +02:00
|
|
|
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
|
2011-06-29 22:21:55 +02:00
|
|
|
|
|
|
|
it "should exist" do
|
|
|
|
Puppet::Parser::Functions.function("values_at").should == "function_values_at"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should raise a ParseError if there is less than 1 arguments" do
|
2012-07-20 01:14:37 +02:00
|
|
|
lambda { scope.function_values_at([]) }.should( raise_error(Puppet::ParseError))
|
2011-06-29 22:21:55 +02:00
|
|
|
end
|
|
|
|
|
2011-07-29 22:17:19 +02:00
|
|
|
it "should raise a ParseError if you try to use a range where stop is greater then start" do
|
2012-07-20 01:14:37 +02:00
|
|
|
lambda { scope.function_values_at([['a','b'],["3-1"]]) }.should( raise_error(Puppet::ParseError))
|
2011-07-29 22:17:19 +02:00
|
|
|
end
|
|
|
|
|
2011-07-24 01:39:17 +02:00
|
|
|
it "should return a value at from an array" do
|
2012-07-20 01:14:37 +02:00
|
|
|
result = scope.function_values_at([['a','b','c'],"1"])
|
2011-07-24 01:39:17 +02:00
|
|
|
result.should(eq(['b']))
|
|
|
|
end
|
|
|
|
|
2011-07-29 22:17:19 +02:00
|
|
|
it "should return a value at from an array when passed a range" do
|
2012-07-20 01:14:37 +02:00
|
|
|
result = scope.function_values_at([['a','b','c'],"0-1"])
|
2011-07-29 22:17:19 +02:00
|
|
|
result.should(eq(['a','b']))
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return chosen values from an array when passed number of indexes" do
|
2012-07-20 01:14:37 +02:00
|
|
|
result = scope.function_values_at([['a','b','c'],["0","2"]])
|
2011-07-29 22:17:19 +02:00
|
|
|
result.should(eq(['a','c']))
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return chosen values from an array when passed ranges and multiple indexes" do
|
2012-07-20 01:14:37 +02:00
|
|
|
result = scope.function_values_at([['a','b','c','d','e','f','g'],["0","2","4-5"]])
|
2011-07-29 22:17:19 +02:00
|
|
|
result.should(eq(['a','c','e','f']))
|
|
|
|
end
|
2011-06-29 22:21:55 +02:00
|
|
|
end
|