Module: RSpec::Puppet::DefineExampleGroup

Includes:
Matchers, Support
Defined in:
lib/rspec-puppet/example/define_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
43
44
45
46
47
48
# File 'lib/rspec-puppet/example/define_example_group.rb', line 10

def catalogue
  define_name = self.class.top_level_description.downcase

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

  # 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', define_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? :params
    param_str = params.keys.map { |r|
      "#{r.to_s} => #{params[r].inspect}"
    }.join(', ')
  else
    param_str = ""
  end

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

  Puppet[:code] = pre_cond + "\n" + import_str + define_name + " { \"" + title + "\": " + param_str + " }"

  nodename = self.respond_to?(:node) ? node : Puppet[:certname]
  facts_val = {
    'hostname' => nodename.split('.').first,
    'fqdn' => nodename,
  }
  facts_val.merge!(facts) if self.respond_to?(:facts)

  build_catalog(nodename, facts_val)
end

#subjectObject



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

def subject
  @catalogue ||= catalogue
end