Sha256: 3bc8edb86fa940e2f6304d49f06ff26ddbdf81c04d9a1d423721e19c489920cb

Contents?: true

Size: 1.76 KB

Versions: 137

Compression:

Stored size: 1.76 KB

Contents

#! /usr/bin/env ruby

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,
        "filebucket://puppetmaster:8140/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,
        "filebucket://puppetmaster:8140/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

  describe "saving binary files" do
    let(:binary) { "\xD1\xF2\r\n\x81NuSc\x00".force_encoding(Encoding::ASCII_8BIT) }

    it "does not error when the same contents are saved twice" do
      bucket_file = Puppet::FileBucket::File.new(binary)
      Puppet::FileBucket::File.indirection.save(bucket_file, bucket_file.name)
      Puppet::FileBucket::File.indirection.save(bucket_file, bucket_file.name)
    end
  end
end

Version data entries

137 entries across 137 versions & 1 rubygems

Version Path
puppet-5.3.2 spec/integration/file_bucket/file_spec.rb
puppet-5.3.2-x86-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-5.3.2-x64-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-5.3.2-universal-darwin spec/integration/file_bucket/file_spec.rb
puppet-5.3.1 spec/integration/file_bucket/file_spec.rb
puppet-5.3.1-x86-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-5.3.1-x64-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-5.3.1-universal-darwin spec/integration/file_bucket/file_spec.rb
puppet-4.10.8 spec/integration/file_bucket/file_spec.rb
puppet-4.10.8-x86-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-4.10.8-x64-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-4.10.8-universal-darwin spec/integration/file_bucket/file_spec.rb
puppet-5.2.0 spec/integration/file_bucket/file_spec.rb
puppet-5.2.0-x86-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-5.2.0-x64-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-5.2.0-universal-darwin spec/integration/file_bucket/file_spec.rb
puppet-4.10.7 spec/integration/file_bucket/file_spec.rb
puppet-4.10.7-x86-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-4.10.7-x64-mingw32 spec/integration/file_bucket/file_spec.rb
puppet-4.10.7-universal-darwin spec/integration/file_bucket/file_spec.rb