Sha256: 5dbdeea889c59f05b2ac6b96b1bcf8a8daba1666f40d5941b7b00806db1a8a30

Contents?: true

Size: 1.09 KB

Versions: 8

Compression:

Stored size: 1.09 KB

Contents

#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../spec_helper'

require 'puppet/configurer'

describe Puppet::Configurer do
  describe "when downloading plugins" do
    it "should use the :pluginsignore setting, split on whitespace, for ignoring remote files" do
      resource = Puppet::Type.type(:notify).new :name => "yay"
      Puppet::Type.type(:file).expects(:new).with { |args| args[:ignore] == Puppet[:pluginsignore].split(/\s+/) }.returns resource

      configurer = Puppet::Configurer.new
      configurer.stubs(:download_plugins?).returns true
      configurer.download_plugins
    end
  end

  describe "when running" do
    it "should send a transaction report with valid data" do
      catalog = Puppet::Resource::Catalog.new
      catalog.add_resource(Puppet::Type.type(:notify).new(:title => "testing"))

      configurer = Puppet::Configurer.new

      Puppet::Transaction::Report.indirection.expects(:save).with do |x, report|
        report.time.class == Time and report.logs.length > 0
      end

      Puppet[:report] = true

      configurer.run :catalog => catalog
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
puppet-2.6.7 spec/integration/configurer_spec.rb
puppet-2.6.6 spec/integration/configurer_spec.rb
puppet-2.6.5 spec/integration/configurer_spec.rb
puppet-2.6.4 spec/integration/configurer_spec.rb
puppet-2.6.3 spec/integration/configurer_spec.rb
puppet-2.6.2 spec/integration/configurer_spec.rb
puppet-2.6.1 spec/integration/configurer_spec.rb
puppet-2.6.0 spec/integration/configurer_spec.rb