Sha256: 47d7734d280679d5af2ecb5287a779416101269ac49c15b0c8f4cdcf62f46a3a

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

require './test/helper'

class AttachmentAdapterTest < Test::Unit::TestCase
  def setup
    rebuild_model :path => "tmp/:class/:attachment/:style/:filename"
    @attachment = Dummy.new.avatar
    @file = File.new(fixture_file("5k.png"))
    @file.binmode

    @attachment.assign(@file)
    @attachment.save
    @subject = Paperclip.io_adapters.for(@attachment)
  end

  should "get the right filename" do
    assert_equal "5k.png", @subject.original_filename
  end

  should "force binmode on tempfile" do
    assert @subject.instance_variable_get("@tempfile").binmode?
  end

  should "get the content type" do
    assert_equal "image/png", @subject.content_type
  end

  should "get the file's size" do
    assert_equal 4456, @subject.size
  end

  should "return false for a call to nil?" do
    assert ! @subject.nil?
  end

  should "generate a MD5 hash of the contents" do
    expected = Digest::MD5.file(@file.path).to_s
    assert_equal expected, @subject.fingerprint
  end

  should "read the contents of the file" do
    expected = @file.read
    actual = @subject.read
    assert expected.length > 0
    assert_equal expected.length, actual.length
    assert_equal expected, actual
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
paperclip-3.0.2 test/attachment_adapter_test.rb