9cef0b2510
v4.2.1 08b00d9229961d7b3c3cba997bfb35c8d47e4c4b Change-Id: I12a3fa8eea5647d6410469b542317bff2bee896c Implements: blueprint merge-openstack-puppet-modules
23 lines
650 B
Ruby
Executable File
23 lines
650 B
Ruby
Executable File
#! /usr/bin/env ruby -S rspec
|
|
require 'spec_helper_acceptance'
|
|
|
|
describe 'str2saltedsha512 function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
|
|
describe 'success' do
|
|
it 'works with "y"' do
|
|
pp = <<-EOS
|
|
$o = str2saltedsha512('password')
|
|
notice(inline_template('str2saltedsha512 is <%= @o.inspect %>'))
|
|
EOS
|
|
|
|
apply_manifest(pp, :catch_failures => true) do |r|
|
|
expect(r.stdout).to match(/str2saltedsha512 is "[a-f0-9]{136}"/)
|
|
end
|
|
end
|
|
end
|
|
describe 'failure' do
|
|
it 'handles no arguments'
|
|
it 'handles more than one argument'
|
|
it 'handles non strings'
|
|
end
|
|
end
|