Module: RSpec::Puppet::ClassExampleGroup

Includes:
Matchers, Support
Defined in:
lib/rspec-puppet/example/class_example_group.rb

Instance Method Summary collapse

Instance Method Details

#catalogueObject



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
# File 'lib/rspec-puppet/example/class_example_group.rb', line 10

def catalogue
  Puppet[:modulepath] = self.respond_to?(:module_path) ? module_path : RSpec.configuration.module_path

  klass_name = self.class.top_level_description.downcase

  # If we're testing a standalone module (i.e. one that's outside of a
  # puppet tree), the autoloader won't work, so we need to fudge it a bit.
  if File.exists?(File.join(Puppet[:modulepath], 'manifests', 'init.pp'))
    path_to_manifest = File.join([Puppet[:modulepath], 'manifests', klass_name.split('::')[1..-1]].flatten)
    import_str = "import '#{Puppet[:modulepath]}/manifests/init.pp'\nimport '#{path_to_manifest}.pp'\n"
  else
    import_str = ""
  end

  if self.respond_to? :pre_condition
    pre_cond = pre_condition
  else
    pre_cond = ''
  end

  if !self.respond_to?(:params) || params == {}
    Puppet[:code] = import_str + "include #{klass_name}"
  else
    Puppet[:code] = import_str + 'class' + " { \"" + klass_name + "\": " + params.keys.map { |r| "#{r.to_s} => #{params[r].inspect}"
  }.join(',' ) + " }"
  end
  Puppet[:code] = pre_cond + "\n" + Puppet[:code]

  nodename = self.respond_to?(:node) ? node : Puppet[:certname]
  facts_val = self.respond_to?(:facts) ? facts : {}

  build_catalog(nodename, facts_val)
end

#subjectObject



6
7
8
# File 'lib/rspec-puppet/example/class_example_group.rb', line 6

def subject
  @catalogue ||= catalogue
end