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
36
37
38
39
40
41
42
43
44
45
46
47
48
|
require 'spec_helper'
require 'puppet/ssl/oids'
describe Puppet::SSL::Oids do
describe "defining application OIDs" do
{
'puppetlabs' => '1.3.6.1.4.1.34380',
'ppCertExt' => '1.3.6.1.4.1.34380.1',
'ppRegCertExt' => '1.3.6.1.4.1.34380.1.1',
'pp_uuid' => '1.3.6.1.4.1.34380.1.1.1',
'pp_instance_id' => '1.3.6.1.4.1.34380.1.1.2',
'pp_image_name' => '1.3.6.1.4.1.34380.1.1.3',
'pp_preshared_key' => '1.3.6.1.4.1.34380.1.1.4',
'ppPrivCertExt' => '1.3.6.1.4.1.34380.1.2',
}.each_pair do |sn, oid|
it "defines #{sn} as #{oid}" do
object_id = OpenSSL::ASN1::ObjectId.new(sn)
expect(object_id.oid).to eq oid
end
end
end
describe "checking if an OID is a subtree of another OID" do
it "can determine if an OID is contained in another OID" do
described_class.subtree_of?('1.3.6.1', '1.3.6.1.4.1').should be_true
described_class.subtree_of?('1.3.6.1.4.1', '1.3.6.1').should be_false
end
it "returns true if an OID is compared against itself and exclusive is false" do
described_class.subtree_of?('1.3.6.1', '1.3.6.1', false).should be_true
end
it "returns false if an OID is compared against itself and exclusive is true" do
described_class.subtree_of?('1.3.6.1', '1.3.6.1', true).should be_false
end
it "can compare OIDs defined as short names" do
described_class.subtree_of?('IANA', '1.3.6.1.4.1').should be_true
described_class.subtree_of?('1.3.6.1', 'enterprises').should be_true
end
it "returns false when an invalid OID shortname is passed" do
described_class.subtree_of?('IANA', 'bananas').should be_false
end
end
end
|