This file is indexed.

/usr/share/puppet/modules.available/glance/spec/unit/type/glance_registry_paste_ini_spec.rb is in puppet-module-glance 9.4.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
require 'puppet'
require 'puppet/type/glance_registry_paste_ini'

describe 'Puppet::Type.type(:glance_registry_paste_ini)' do
  before :each do
    Puppet::Type.rmtype(:glance_registry_paste_ini)
    Facter.fact(:osfamily).stubs(:value).returns(platform_params[:osfamily])
    @glance_registry_paste_ini = Puppet::Type.type(:glance_registry_paste_ini).new(:name => 'DEFAULT/foo', :value => 'bar')
  end

  shared_examples_for 'glance_registry_paste_ini' do

    it 'should require a name' do
      expect {
        Puppet::Type.type(:glance_registry_paste_ini).new({})
      }.to raise_error(Puppet::Error, 'Title or name must be provided')
    end

    it 'should not expect a name with whitespace' do
      expect {
        Puppet::Type.type(:glance_registry_paste_ini).new(:name => 'f oo')
      }.to raise_error(Puppet::Error, /Parameter name failed/)
    end

    it 'should fail when there is no section' do
      expect {
        Puppet::Type.type(:glance_registry_paste_ini).new(:name => 'foo')
      }.to raise_error(Puppet::Error, /Parameter name failed/)
    end

    it 'should not require a value when ensure is absent' do
      Puppet::Type.type(:glance_registry_paste_ini).new(:name => 'DEFAULT/foo', :ensure => :absent)
    end

    it 'should accept a valid value' do
      @glance_registry_paste_ini[:value] = 'bar'
      expect(@glance_registry_paste_ini[:value]).to eq('bar')
    end

    it 'should not accept a value with whitespace' do
      @glance_registry_paste_ini[:value] = 'b ar'
      expect(@glance_registry_paste_ini[:value]).to eq('b ar')
    end

    it 'should accept valid ensure values' do
      @glance_registry_paste_ini[:ensure] = :present
      expect(@glance_registry_paste_ini[:ensure]).to eq(:present)
      @glance_registry_paste_ini[:ensure] = :absent
      expect(@glance_registry_paste_ini[:ensure]).to eq(:absent)
    end

    it 'should not accept invalid ensure values' do
      expect {
        @glance_registry_paste_ini[:ensure] = :latest
      }.to raise_error(Puppet::Error, /Invalid value/)
    end

    it 'should autorequire the package that install the file' do
      catalog = Puppet::Resource::Catalog.new
      package = Puppet::Type.type(:package).new(:name => platform_params[:package_name])
      catalog.add_resource package, @glance_registry_paste_ini
      dependency = @glance_registry_paste_ini.autorequire
      expect(dependency.size).to eq(1)
      expect(dependency[0].target).to eq(@glance_registry_paste_ini)
      expect(dependency[0].source).to eq(package)
    end
  end

  context 'on Debian platforms' do
    let :platform_params do
      { :package_name => 'glance-registry',
        :osfamily     => 'Debian' }
    end

    it_behaves_like 'glance_registry_paste_ini'
  end

  context 'on RedHat platforms' do
    let :platform_params do
      { :package_name => 'openstack-glance',
        :osfamily     => 'RedHat'}
    end

    it_behaves_like 'glance_registry_paste_ini'
  end

end