Sha256: c38a8dd702bfaeb028e0d4191e6fee8371e94e1b533ac945c570576d22cd5aa5

Contents?: true

Size: 1.84 KB

Versions: 8

Compression:

Stored size: 1.84 KB

Contents

# frozen_string_literal: true

# Copyright, 2020, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'trenni/query'

RSpec.describe Trenni::Query do
	def parse(string)
		subject.parse(Trenni::Buffer.new(string))
		
		return subject
	end
	
	it "can parse query string with integer key" do
		expect(parse "q[0]=0").to be == {q: {0 => "0"}}
	end
	
	it "can parse query string with mixed integer/string key" do
		expect(parse "q[2d]=3d").to be == {q: {:'2d' => "3d"}}
	end
	
	it "can parse query string appending items to array" do
		expect(parse "q[]=a&q[]=b").to be == {q: ["a", "b"]}
	end
	
	it "can decode encoded keys" do
		expect(parse "hello+world=true").to be == {:"hello world" => "true"}
	end
	
	it "can decode encoded values" do
		expect(parse "message=hello+world").to be == {message: "hello world"}
	end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
trenni-3.14.0 spec/trenni/query_spec.rb
trenni-3.13.2 spec/trenni/query_spec.rb
trenni-3.13.1 spec/trenni/query_spec.rb
trenni-3.13.0 spec/trenni/query_spec.rb
trenni-3.12.0 spec/trenni/query_spec.rb
trenni-3.11.0 spec/trenni/query_spec.rb
trenni-3.10.0 spec/trenni/query_spec.rb
trenni-3.9.0 spec/trenni/query_spec.rb