This file is indexed.

/usr/share/puppet/modules.available/oslo/spec/unit/type/oslo_config_spec.rb is in puppet-module-oslo 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
require 'puppet'
require 'puppet/type/oslo_config'
describe 'Puppet::Type.type(:oslo_config)' do
  before :each do
    @oslo_config = Puppet::Type.type(:oslo_config).new(:name => 'DEFAULT/foo', :value => 'bar')
  end

  it 'should require a name' do
    expect {
      Puppet::Type.type(:oslo_config).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(:oslo_config).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(:oslo_config).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(:oslo_config).new(:name => 'DEFAULT/foo', :ensure => :absent)
  end

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

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

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

  it 'should not accept invalid ensure values' do
    expect {
      @oslo_config[: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 => 'oslo')
    catalog.add_resource package, @oslo_config
    dependency = @oslo_config.autorequire
    expect(dependency.size).to eq(1)
    expect(dependency[0].target).to eq(@oslo_config)
    expect(dependency[0].source).to eq(package)
  end


end