File: mime_type_test.rb

package info (click to toggle)
ruby-marcel 1.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,300 kB
  • sloc: xml: 8,111; ruby: 638; makefile: 7; javascript: 3
file content (56 lines) | stat: -rw-r--r-- 1,689 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
require 'test_helper'
require 'rack'

class Marcel::MimeTypeTest < Marcel::TestCase
  def setup
    @path = files("image.gif").to_s
  end

  test "gets content type from Files" do
    content_type = File.open @path do |file|
      Marcel::MimeType.for file
    end
    assert_equal "image/gif", content_type
  end

  test "gets content type from Pathnames" do
    content_type = Marcel::MimeType.for Pathname.new(@path)
    assert_equal "image/gif", content_type
  end

  test "closes Pathname files after use" do
    skip if RUBY_ENGINE == "jruby"
    open_files = ObjectSpace.each_object(File).reject(&:closed?)
    assert open_files.none? { |f| f.path == @path }
  end

  test "gets content type from Tempfiles" do
    Tempfile.open("Marcel") do |tempfile|
      tempfile.write(File.read(@path))
      content_type = Marcel::MimeType.for tempfile
      assert_equal "image/gif", content_type
    end
  end

  test "gets content type from IOs" do
    io = StringIO.new(File.read(@path))
    content_type = Marcel::MimeType.for io
    assert_equal "image/gif", content_type
  end

  test "gets content type from sources that conform to Rack RewindableInput" do
    io = StringIO.new(File.read(@path))
    wrapper = Rack::RewindableInput.new(io)
    content_type = Marcel::MimeType.for wrapper
    assert_equal "image/gif", content_type
  end

  if Rack::Lint.const_defined?(:InputWrapper)
    test "gets content type from sources that conform to Rack 2's Rack::Lint::InputWrapper" do
      io = StringIO.new(File.read(@path))
      wrapper = Rack::Lint::InputWrapper.new(io)
      content_type = Marcel::MimeType.for wrapper
      assert_equal "image/gif", content_type
    end
  end
end