Sha256: d7a5602e085cdff5d6d07145f392dbde7637579ca3b97780b31e21dca0a06c3e

Contents?: true

Size: 1.33 KB

Versions: 33

Compression:

Stored size: 1.33 KB

Contents

require "open-uri"
require "fileutils"

module PopplerTestUtils
  def ensure_dir(dir)
    FileUtils.mkdir_p(dir)
    dir
  end

  def test_dir
    File.expand_path(File.dirname(__FILE__))
  end

  def fixtures_dir
    ensure_dir(File.join(test_dir, "fixtures"))
  end

  def fixture_path(*components)
    File.join(fixtures_dir, *components)
  end

  def tmp_dir
    ensure_dir(File.join(test_dir, "tmp"))
  end

  def form_pdf
    path = fixture_path("form.pdf")
    unless File.exist?(path)
      pdf = open("https://www.irs.gov/pub/irs-pdf/fw9.pdf").read
      File.open(path, "wb") do |output|
        output.print(pdf)
      end
    end
    path
  end

  def text_field_pdf
    fixture_path("text-field.pdf")
  end

  def image_pdf
    fixture_path("image.pdf")
  end

  def image_png
    fixture_path("image.png")
  end

  def outline_pdf
    fixture_path("outline.pdf")
  end

  def multiple_pages_pdf
    fixture_path("multiple-pages.pdf")
  end

  def only_poppler_version(major, minor, micro=nil)
    micro ||= 0
    unless Poppler::Version.or_later?(major, minor, micro)
      omit("Require Poppler >= #{major}.#{minor}.#{micro}")
    end
  end

  def only_old_poppler_version(major, minor, micro=nil)
    micro ||= 0
    if Poppler::Version.or_later?(major, minor, micro)
      omit("Require Poppler < #{major}.#{minor}.#{micro}")
    end
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
poppler-3.2.9-x64-mingw32 test/poppler-test-utils.rb
poppler-3.2.9-x86-mingw32 test/poppler-test-utils.rb
poppler-3.2.9 test/poppler-test-utils.rb
poppler-3.2.8-x64-mingw32 test/poppler-test-utils.rb
poppler-3.2.8-x86-mingw32 test/poppler-test-utils.rb
poppler-3.2.8 test/poppler-test-utils.rb
poppler-3.2.7-x64-mingw32 test/poppler-test-utils.rb
poppler-3.2.7-x86-mingw32 test/poppler-test-utils.rb
poppler-3.2.7 test/poppler-test-utils.rb
poppler-3.2.6-x64-mingw32 test/poppler-test-utils.rb
poppler-3.2.6-x86-mingw32 test/poppler-test-utils.rb
poppler-3.2.6 test/poppler-test-utils.rb
poppler-3.2.5-x64-mingw32 test/poppler-test-utils.rb
poppler-3.2.5-x86-mingw32 test/poppler-test-utils.rb
poppler-3.2.5 test/poppler-test-utils.rb
poppler-3.2.4-x64-mingw32 test/poppler-test-utils.rb
poppler-3.2.4-x86-mingw32 test/poppler-test-utils.rb
poppler-3.2.4 test/poppler-test-utils.rb
poppler-3.2.3-x64-mingw32 test/poppler-test-utils.rb
poppler-3.2.3-x86-mingw32 test/poppler-test-utils.rb