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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
# frozen_string_literal: true
# Released under the MIT License.
# Copyright, 2025, by Samuel Williams.
require "protocol/http/header/trailer"
describe Protocol::HTTP::Header::Trailer do
let(:header) {subject.parse(description)}
with "etag" do
it "contains etag header" do
expect(header).to be(:include?, "etag")
end
it "has one header" do
expect(header.length).to be == 1
end
end
with "etag, content-md5" do
it "contains multiple headers" do
expect(header).to be(:include?, "etag")
expect(header).to be(:include?, "content-md5")
end
it "has correct count" do
expect(header.length).to be == 2
end
end
with "etag, content-md5, expires" do
it "handles three headers" do
expect(header).to be(:include?, "etag")
expect(header).to be(:include?, "content-md5")
expect(header).to be(:include?, "expires")
end
it "serializes correctly" do
expect(header.to_s).to be == "etag,content-md5,expires"
end
end
with "etag , content-md5 , expires" do
it "strips whitespace" do
expect(header.length).to be == 3
expect(header).to be(:include?, "etag")
expect(header).to be(:include?, "content-md5")
end
end
with "empty header value" do
let(:header) {subject.new}
it "handles empty trailer" do
expect(header).to be(:empty?)
expect(header.to_s).to be == ""
end
end
with "#<<" do
let(:header) {subject.parse("etag")}
it "can add headers" do
header << "content-md5, expires"
expect(header.length).to be == 3
expect(header).to be(:include?, "expires")
end
end
with ".trailer?" do
it "should be forbidden in trailers" do
expect(subject).not.to be(:trailer?)
end
end
with ".new" do
it "preserves values when given array" do
header = subject.new(["etag", "content-md5"])
expect(header).to be(:include?, "etag")
expect(header).to be(:include?, "content-md5")
end
it "can initialize with string (backward compatibility)" do
header = subject.new("etag, content-md5")
expect(header).to be(:include?, "etag")
expect(header).to be(:include?, "content-md5")
end
it "raises ArgumentError for invalid value types" do
expect{subject.new(123)}.to raise_exception(ArgumentError)
end
end
end
|