File: feature_spec.rb

package info (click to toggle)
puppet 3.7.2-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 18,896 kB
  • sloc: ruby: 210,387; sh: 2,050; xml: 1,554; lisp: 300; makefile: 142; python: 108; sql: 103; yacc: 72
file content (53 lines) | stat: -rwxr-xr-x 1,498 bytes parent folder | download | duplicates (3)
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
#! /usr/bin/env ruby
require 'spec_helper'

require 'puppet/util/feature'
require 'puppet_spec/files'

describe Puppet::Util::Feature do
  include PuppetSpec::Files

  it "should be able to load features from disk" do
    libdir = tmpfile("feature_lib")
    Dir.mkdir(libdir)

    $LOAD_PATH << libdir

    $features = Puppet::Util::Feature.new("feature_lib")

    Dir.mkdir(File.join(libdir, "feature_lib"))

    File.open(File.join(libdir, "feature_lib", "able_to_load.rb"), "w") do |f|
      f.puts "$features.add(:able_to_load) { true }"
    end

    $features.should be_able_to_load
  end

  # TODO: Make this a spec test or remove it.
  def test_dynamic_loading
    $features = @features
    cleanup { $features = nil }
    # Now create a feature and make sure it loads.
    FileUtils.mkdir_p(@path)
    nope = File.join(@path, "nope.rb")
    File.open(nope, "w") { |f|
      f.puts "$features.add(:nope, :libs => %w{nosuchlib})"
    }
    assert_nothing_raised("Failed to autoload features") do
      assert(! @features.nope?, "'nope' returned true")
    end

    # First make sure "yep?" returns false
    assert_nothing_raised("Missing feature threw an exception") do
      assert(! @features.notyep?, "'notyep' returned true before definition")
    end

    yep = File.join(@path, "yep.rb")
    File.open(yep, "w") { |f|
      f.puts "$features.add(:yep, :libs => %w{puppet})"
    }

    assert(@features.yep?, "false 'yep' is apparently cached or feature could not be loaded")
  end
end