Sha256: 2c415337cb7bb890f8faedc78feccdf69c0dcff4078e15c6aca159f6f47ab102

Contents?: true

Size: 1.66 KB

Versions: 6

Compression:

Stored size: 1.66 KB

Contents

# frozen_string_literal: true
RSpec.describe HTTP::ContentType do
  describe ".parse" do
    context "with text/plain" do
      subject { described_class.parse "text/plain" }
      its(:mime_type) { is_expected.to eq "text/plain" }
      its(:charset)   { is_expected.to be_nil }
    end

    context "with tEXT/plaIN" do
      subject { described_class.parse "tEXT/plaIN" }
      its(:mime_type) { is_expected.to eq "text/plain" }
      its(:charset)   { is_expected.to be_nil }
    end

    context "with text/plain; charset=utf-8" do
      subject { described_class.parse "text/plain; charset=utf-8" }
      its(:mime_type) { is_expected.to eq "text/plain" }
      its(:charset)   { is_expected.to eq "utf-8" }
    end

    context 'with text/plain; charset="utf-8"' do
      subject { described_class.parse 'text/plain; charset="utf-8"' }
      its(:mime_type) { is_expected.to eq "text/plain" }
      its(:charset)   { is_expected.to eq "utf-8" }
    end

    context "with text/plain; charSET=utf-8" do
      subject { described_class.parse "text/plain; charSET=utf-8" }
      its(:mime_type) { is_expected.to eq "text/plain" }
      its(:charset)   { is_expected.to eq "utf-8" }
    end

    context "with text/plain; foo=bar; charset=utf-8" do
      subject { described_class.parse "text/plain; foo=bar; charset=utf-8" }
      its(:mime_type) { is_expected.to eq "text/plain" }
      its(:charset)   { is_expected.to eq "utf-8" }
    end

    context "with text/plain;charset=utf-8;foo=bar" do
      subject { described_class.parse "text/plain;charset=utf-8;foo=bar" }
      its(:mime_type) { is_expected.to eq "text/plain" }
      its(:charset)   { is_expected.to eq "utf-8" }
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
http-2.2.2 spec/lib/http/content_type_spec.rb
http-2.2.1 spec/lib/http/content_type_spec.rb
http-2.2.0 spec/lib/http/content_type_spec.rb
http-2.1.0 spec/lib/http/content_type_spec.rb
http-2.0.3 spec/lib/http/content_type_spec.rb
http-2.0.2 spec/lib/http/content_type_spec.rb