Module: RSpec::Puppet::DefineExampleGroup

Includes:
ManifestMatchers, 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/rspec-puppet/example/define_example_group.rb', line 10

def catalogue
  define_name = self.class.top_level_description.downcase

  vardir = Dir.mktmpdir
  Puppet[:vardir] = vardir
  Puppet[:hiera_config] = File.join(vardir, "hiera.yaml") if Puppet[:hiera_config] == File.expand_path("/dev/null")
  Puppet[:modulepath] = self.respond_to?(:module_path) ? module_path : RSpec.configuration.module_path
  Puppet[:manifestdir] = self.respond_to?(:manifest_dir) ? manifest_dir : RSpec.configuration.manifest_dir
  Puppet[:manifest] = self.respond_to?(:manifest) ? manifest : RSpec.configuration.manifest
  Puppet[:templatedir] = self.respond_to?(:template_dir) ? template_dir : RSpec.configuration.template_dir
  Puppet[:config] = self.respond_to?(:config) ? config : RSpec.configuration.config

  # 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"
  elsif File.exists?(Puppet[:modulepath])
    import_str = "import '#{Puppet[:manifest]}'\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
    if pre_condition.kind_of?(Array)
      pre_cond = pre_condition.join("\n")
    else
      pre_cond = pre_condition
    end
  else
    pre_cond = ""
  end

  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,
    'domain' => nodename.split('.', 2).last,
  }
  facts_val.merge!(munge_facts(facts)) if self.respond_to?(:facts)

  catalogue = build_catalog(nodename, facts_val, code)
  FileUtils.rm_rf(vardir) if File.directory?(vardir)
  catalogue
end

#subjectObject



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

def subject
  @catalogue ||= catalogue
end