1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00
rest-client--rest-client/spec/unit/utils_spec.rb
Andy Brody bad70fb1d8 Add more tests for Utils.encode_query_string.
These tests, which follow the yard-doc examples, exercise the
new ParamsArray behavior.
2016-01-26 23:02:07 -05:00

147 lines
5.3 KiB
Ruby

require_relative '_lib'
describe RestClient::Utils do
describe '.get_encoding_from_headers' do
it 'assumes no encoding by default for text' do
headers = {:content_type => 'text/plain'}
RestClient::Utils.get_encoding_from_headers(headers).
should eq nil
end
it 'returns nil on failures' do
RestClient::Utils.get_encoding_from_headers(
{:content_type => 'blah'}).should eq nil
RestClient::Utils.get_encoding_from_headers(
{}).should eq nil
RestClient::Utils.get_encoding_from_headers(
{:content_type => 'foo; bar=baz'}).should eq nil
end
it 'handles various charsets' do
RestClient::Utils.get_encoding_from_headers(
{:content_type => 'text/plain; charset=UTF-8'}).should eq 'UTF-8'
RestClient::Utils.get_encoding_from_headers(
{:content_type => 'application/json; charset=ISO-8859-1'}).
should eq 'ISO-8859-1'
RestClient::Utils.get_encoding_from_headers(
{:content_type => 'text/html; charset=windows-1251'}).
should eq 'windows-1251'
RestClient::Utils.get_encoding_from_headers(
{:content_type => 'text/html; charset="UTF-16"'}).
should eq 'UTF-16'
end
end
describe '.cgi_parse_header' do
it 'parses headers' do
RestClient::Utils.cgi_parse_header('text/plain').
should eq ['text/plain', {}]
RestClient::Utils.cgi_parse_header('text/vnd.just.made.this.up ; ').
should eq ['text/vnd.just.made.this.up', {}]
RestClient::Utils.cgi_parse_header('text/plain;charset=us-ascii').
should eq ['text/plain', {'charset' => 'us-ascii'}]
RestClient::Utils.cgi_parse_header('text/plain ; charset="us-ascii"').
should eq ['text/plain', {'charset' => 'us-ascii'}]
RestClient::Utils.cgi_parse_header(
'text/plain ; charset="us-ascii"; another=opt').
should eq ['text/plain', {'charset' => 'us-ascii', 'another' => 'opt'}]
RestClient::Utils.cgi_parse_header(
'attachment; filename="silly.txt"').
should eq ['attachment', {'filename' => 'silly.txt'}]
RestClient::Utils.cgi_parse_header(
'attachment; filename="strange;name"').
should eq ['attachment', {'filename' => 'strange;name'}]
RestClient::Utils.cgi_parse_header(
'attachment; filename="strange;name";size=123;').should eq \
['attachment', {'filename' => 'strange;name', 'size' => '123'}]
RestClient::Utils.cgi_parse_header(
'form-data; name="files"; filename="fo\\"o;bar"').should eq \
['form-data', {'name' => 'files', 'filename' => 'fo"o;bar'}]
end
end
describe '.encode_query_string' do
it 'handles simple hashes' do
{
{foo: 123, bar: 456} => 'foo=123&bar=456',
{'foo' => 123, 'bar' => 456} => 'foo=123&bar=456',
{foo: 'abc', bar: 'one two'} => 'foo=abc&bar=one+two',
{escaped: '1+2=3'} => 'escaped=1%2B2%3D3',
{'escaped + key' => 'foo'} => 'escaped+%2B+key=foo',
}.each_pair do |input, expected|
RestClient::Utils.encode_query_string(input).should eq expected
end
end
it 'handles simple arrays' do
{
{foo: [1, 2, 3]} => 'foo[]=1&foo[]=2&foo[]=3',
{foo: %w{a b c}, bar: [1, 2, 3]} => 'foo[]=a&foo[]=b&foo[]=c&bar[]=1&bar[]=2&bar[]=3',
{foo: ['one two', 3]} => 'foo[]=one+two&foo[]=3',
{'a+b' => [1,2,3]} => 'a%2Bb[]=1&a%2Bb[]=2&a%2Bb[]=3',
}.each_pair do |input, expected|
RestClient::Utils.encode_query_string(input).should eq expected
end
end
it 'handles nested hashes' do
{
{outer: {foo: 123, bar: 456}} => 'outer[foo]=123&outer[bar]=456',
{outer: {foo: [1, 2, 3], bar: 'baz'}} => 'outer[foo][]=1&outer[foo][]=2&outer[foo][]=3&outer[bar]=baz',
}.each_pair do |input, expected|
RestClient::Utils.encode_query_string(input).should eq expected
end
end
it 'handles null and empty values' do
{
{string: '', empty: nil, list: [], hash: {}, falsey: false } =>
'string=&empty&list&hash&falsey=false',
}.each_pair do |input, expected|
RestClient::Utils.encode_query_string(input).should eq expected
end
end
it 'handles nested nulls' do
{
{foo: {string: '', empty: nil}} => 'foo[string]=&foo[empty]',
}.each_pair do |input, expected|
RestClient::Utils.encode_query_string(input).should eq expected
end
end
it 'handles deep nesting' do
{
{coords: [{x: 1, y: 0}, {x: 2}, {x: 3}]} => 'coords[][x]=1&coords[][y]=0&coords[][x]=2&coords[][x]=3',
}.each_pair do |input, expected|
RestClient::Utils.encode_query_string(input).should eq expected
end
end
it 'handles multiple fields with the same name using ParamsArray' do
{
RestClient::ParamsArray.new([[:foo, 1], [:foo, 2], [:foo, 3]]) => 'foo=1&foo=2&foo=3',
}.each_pair do |input, expected|
RestClient::Utils.encode_query_string(input).should eq expected
end
end
it 'handles nested ParamsArrays' do
{
{foo: RestClient::ParamsArray.new([[:a, 1], [:a, 2]])} => 'foo[a]=1&foo[a]=2',
RestClient::ParamsArray.new([[:foo, {a: 1}], [:foo, {a: 2}]]) => 'foo[a]=1&foo[a]=2',
}.each_pair do |input, expected|
RestClient::Utils.encode_query_string(input).should eq expected
end
end
end
end