Sha256: 2dbdfe4951709fc8c84a1d3d70b67d0382889eac1f4b623620b62e6a49b93b08

Contents?: true

Size: 1.75 KB

Versions: 11

Compression:

Stored size: 1.75 KB

Contents

require File.expand_path('../helper', __FILE__)

describe "recipe download" do
  include Minitest::Hooks

  attr :recipe

  def server_must_receive_connection(connections = 3, &block)
    request_count = 0

    server = TCPServer.open('localhost', TestCase::HTTP_PORT)
    thread = Thread.new do
      connections.times do
        conn = server.accept
        request_count += 1
        conn.puts "CONNECTION SUCESSFULLY MADE" rescue SystemCallError
        conn.close
      end
    end

    begin
      block.call
    ensure
      thread.kill
      server.close
    end

    request_count.must_be :>, 0
  end

  before do
    @request_count = 0
    @recipe = MiniPortile.new("test-download", "1.1.1")
  end

  describe "urls" do
    it "ftp" do
      @recipe.files << "ftp://localhost:#{TestCase::HTTP_PORT}/foo"
      server_must_receive_connection 1 do
        @recipe.download
      end
    end

    it "handles http" do
      @recipe.files << "http://localhost:#{TestCase::HTTP_PORT}/foo"
      server_must_receive_connection 3 do
        @recipe.download
      end
    end

    it "handles https" do
      @recipe.files << "https://localhost:#{TestCase::HTTP_PORT}/foo"
      server_must_receive_connection 3 do
        @recipe.download
      end
    end

    it "file" do
      dest = "ports/archives/test-download-archive.tar.gz"
      FileUtils.rm_f dest
      path = File.expand_path(File.join(File.dirname(__FILE__), "assets", "test-download-archive.tar.gz"))
      @recipe.files << "file://#{path}"
      @recipe.download
      assert File.exist?(dest)
      Digest::MD5.file(dest).hexdigest.must_equal "ee0e9f44e72213015ef976d5ac23931d"
    end

    it "other" do
      @recipe.files << "foo://foo"
      proc { @recipe.download }.must_raise ArgumentError
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
mini_portile2-2.8.6 test/test_download.rb
mini_portile2-2.8.5 test/test_download.rb
mini_portile2-2.8.5.rc2 test/test_download.rb
mini_portile2-2.8.5.rc1 test/test_download.rb
mini_portile2-2.8.4 test/test_download.rb
mini_portile2-2.8.3 test/test_download.rb
mini_portile2-2.8.2 test/test_download.rb
mini_portile2-2.8.1 test/test_download.rb
tdiary-5.2.1 vendor/bundle/ruby/3.1.0/gems/mini_portile2-2.8.0/test/test_download.rb
mini_portile2-2.8.0 test/test_download.rb
mini_portile2-2.7.1 test/test_download.rb