blob: effb029ea6c3f6481ebb2b8bb9c27899b6464f4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/ssl/digest'
describe Puppet::SSL::Digest do
it "defaults to sha256" do
digest = described_class.new(nil, 'blah')
digest.name.should == 'SHA256'
digest.digest.hexdigest.should == "8b7df143d91c716ecfa5fc1730022f6b421b05cedee8fd52b1fc65a96030ad52"
end
describe '#name' do
it "prints the hashing algorithm used by the openssl digest" do
described_class.new('SHA224', 'blah').name.should == 'SHA224'
end
it "upcases the hashing algorithm" do
described_class.new('sha224', 'blah').name.should == 'SHA224'
end
end
describe '#to_hex' do
it "returns ':' separated upper case hex pairs" do
described_class.new(nil, 'blah').to_hex =~ /\A([A-Z0-9]:)+[A-Z0-9]\Z/
end
end
describe '#to_s' do
it "formats the digest algorithm and the digest as a string" do
digest = described_class.new('sha512', 'some content')
digest.to_s.should == "(#{digest.name}) #{digest.to_hex}"
end
end
end
|