Added modules
This commit is contained in:
parent
c53c931217
commit
59ec520742
646 changed files with 35182 additions and 0 deletions
83
modules/stdlib/spec/acceptance/is_domain_name_spec.rb
Executable file
83
modules/stdlib/spec/acceptance/is_domain_name_spec.rb
Executable file
|
@ -0,0 +1,83 @@
|
|||
#! /usr/bin/env ruby -S rspec
|
||||
require 'spec_helper_acceptance'
|
||||
|
||||
describe 'is_domain_name function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
|
||||
describe 'success' do
|
||||
it 'is_domain_names arrays' do
|
||||
pp = <<-EOS
|
||||
$a = ['aaa.com','bbb','ccc']
|
||||
$o = is_domain_name($a)
|
||||
notice(inline_template('is_domain_name is <%= @o.inspect %>'))
|
||||
EOS
|
||||
|
||||
apply_manifest(pp, :catch_failures => true) do |r|
|
||||
expect(r.stdout).to match(/is_domain_name is false/)
|
||||
end
|
||||
end
|
||||
it 'is_domain_names true' do
|
||||
pp = <<-EOS
|
||||
$a = true
|
||||
$o = is_domain_name($a)
|
||||
notice(inline_template('is_domain_name is <%= @o.inspect %>'))
|
||||
EOS
|
||||
|
||||
apply_manifest(pp, :catch_failures => true) do |r|
|
||||
expect(r.stdout).to match(/is_domain_name is false/)
|
||||
end
|
||||
end
|
||||
it 'is_domain_names false' do
|
||||
pp = <<-EOS
|
||||
$a = false
|
||||
$o = is_domain_name($a)
|
||||
notice(inline_template('is_domain_name is <%= @o.inspect %>'))
|
||||
EOS
|
||||
|
||||
apply_manifest(pp, :catch_failures => true) do |r|
|
||||
expect(r.stdout).to match(/is_domain_name is false/)
|
||||
end
|
||||
end
|
||||
it 'is_domain_names strings with hyphens' do
|
||||
pp = <<-EOS
|
||||
$a = "3foo-bar.2bar-fuzz.com"
|
||||
$b = true
|
||||
$o = is_domain_name($a)
|
||||
if $o == $b {
|
||||
notify { 'output correct': }
|
||||
}
|
||||
EOS
|
||||
|
||||
apply_manifest(pp, :catch_failures => true) do |r|
|
||||
expect(r.stdout).to match(/Notice: output correct/)
|
||||
end
|
||||
end
|
||||
it 'is_domain_names strings beginning with hyphens' do
|
||||
pp = <<-EOS
|
||||
$a = "-bar.2bar-fuzz.com"
|
||||
$b = false
|
||||
$o = is_domain_name($a)
|
||||
if $o == $b {
|
||||
notify { 'output correct': }
|
||||
}
|
||||
EOS
|
||||
|
||||
apply_manifest(pp, :catch_failures => true) do |r|
|
||||
expect(r.stdout).to match(/Notice: output correct/)
|
||||
end
|
||||
end
|
||||
it 'is_domain_names hashes' do
|
||||
pp = <<-EOS
|
||||
$a = {'aaa'=>'www.com'}
|
||||
$o = is_domain_name($a)
|
||||
notice(inline_template('is_domain_name is <%= @o.inspect %>'))
|
||||
EOS
|
||||
|
||||
apply_manifest(pp, :catch_failures => true) do |r|
|
||||
expect(r.stdout).to match(/is_domain_name is false/)
|
||||
end
|
||||
end
|
||||
end
|
||||
describe 'failure' do
|
||||
it 'handles improper argument counts'
|
||||
it 'handles non-arrays'
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue