Sha256: f38ac81c50f9ad2f184d2b07f484ceace99275a9130d27a8b4d5cc8f862ea4dd

Contents?: true

Size: 1.4 KB

Versions: 18

Compression:

Stored size: 1.4 KB

Contents

#!/usr/bin/env rspec

require 'spec_helper'

require 'puppet/file_bucket/file'

describe Puppet::FileBucket::File do
  describe "#indirection" do
    before :each do
      # Never connect to the network, no matter what
      described_class.indirection.terminus(:rest).class.any_instance.stubs(:find)
    end

    describe "when running the master application" do
      before :each do
        Puppet::Application[:master].setup_terminuses
      end

      {
        "md5/d41d8cd98f00b204e9800998ecf8427e" => :file,
        "https://puppetmaster:8140/production/file_bucket_file/md5/d41d8cd98f00b204e9800998ecf8427e" => :file,
      }.each do |key, terminus|
        it "should use the #{terminus} terminus when requesting #{key.inspect}" do
          described_class.indirection.terminus(terminus).class.any_instance.expects(:find)

          described_class.indirection.find(key)
        end
      end
    end

    describe "when running another application" do
      {
        "md5/d41d8cd98f00b204e9800998ecf8427e" => :file,
        "https://puppetmaster:8140/production/file_bucket_file/md5/d41d8cd98f00b204e9800998ecf8427e" => :rest,
      }.each do |key, terminus|
        it "should use the #{terminus} terminus when requesting #{key.inspect}" do
          described_class.indirection.terminus(terminus).class.any_instance.expects(:find)

          described_class.indirection.find(key)
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
puppet-2.7.26 spec/integration/file_bucket/file_spec.rb
puppet-2.7.25 spec/integration/file_bucket/file_spec.rb
puppet-2.7.24 spec/integration/file_bucket/file_spec.rb
puppet-2.7.23 spec/integration/file_bucket/file_spec.rb
puppet-2.7.22 spec/integration/file_bucket/file_spec.rb
puppet-2.7.21 spec/integration/file_bucket/file_spec.rb
puppet-2.6.18 spec/integration/file_bucket/file_spec.rb
puppet-2.7.20 spec/integration/file_bucket/file_spec.rb
puppet-2.7.20.rc1 spec/integration/file_bucket/file_spec.rb
puppet-3.0.0.rc8 spec/integration/file_bucket/file_spec.rb
puppet-3.0.0.rc7 spec/integration/file_bucket/file_spec.rb
librarian-puppet-0.9.4 vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/file_bucket/file_spec.rb
puppet-3.0.0.rc5 spec/integration/file_bucket/file_spec.rb
puppet-3.0.0.rc4 spec/integration/file_bucket/file_spec.rb
puppet-2.7.19 spec/integration/file_bucket/file_spec.rb
librarian-puppet-0.9.3 vendor/gems/ruby/1.8/gems/puppet-2.7.18/spec/integration/file_bucket/file_spec.rb
puppet-2.7.18 spec/integration/file_bucket/file_spec.rb
puppet-2.6.17 spec/integration/file_bucket/file_spec.rb