File: multiple.rb

package info (click to toggle)
ruby-protocol-http 0.59.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 864 kB
  • sloc: ruby: 7,612; makefile: 4
file content (42 lines) | stat: -rw-r--r-- 1,035 bytes parent folder | download
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
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2020-2025, by Samuel Williams.

require "protocol/http/header/multiple"

describe Protocol::HTTP::Header::Multiple do
	let(:header) {subject.parse(description)}
	
	with "first-value" do
		it "can add several values" do
			header << "second-value"
			header << "third-value"
			
			expect(header).to be == ["first-value", "second-value", "third-value"]
			expect(header).to have_attributes(
				to_s: be == "first-value\nsecond-value\nthird-value"
			)
		end
	end
	
	with ".trailer?" do
		it "is not allowed in trailers by default" do
			expect(subject).not.to be(:trailer?)
		end
	end
	
	with ".coerce" do
		it "coerces array to Multiple" do
			result = subject.coerce(["value1", "value2"])
			expect(result).to be_a(subject)
			expect(result).to be == ["value1", "value2"]
		end
		
		it "coerces string to Multiple" do
			result = subject.coerce("single-value")
			expect(result).to be_a(subject)
			expect(result).to be == ["single-value"]
		end
	end
end