Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Support WSS #33

Merged
merged 1 commit into from
Apr 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/uri.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,4 @@ module URI
require_relative 'uri/ldaps'
require_relative 'uri/mailto'
require_relative 'uri/ws'
require_relative 'uri/wss'
6 changes: 3 additions & 3 deletions test/uri/test_common.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ def test_ractor
end

def test_register_scheme
assert_equal(["FILE", "FTP", "HTTP", "HTTPS", "LDAP", "LDAPS", "MAILTO", "WS"].sort, URI.scheme_list.keys.sort)
assert_equal(["FILE", "FTP", "HTTP", "HTTPS", "LDAP", "LDAPS", "MAILTO", "WS", "WSS"].sort, URI.scheme_list.keys.sort)

foobar = Class.new(URI::Generic)
URI.register_scheme 'FOOBAR', foobar
begin
assert_equal(["FILE", "FTP", "HTTP", "HTTPS", "LDAP", "LDAPS", "MAILTO", "WS", "FOOBAR"].sort, URI.scheme_list.keys.sort)
assert_equal(["FILE", "FTP", "HTTP", "HTTPS", "LDAP", "LDAPS", "MAILTO", "WS", "WSS", "FOOBAR"].sort, URI.scheme_list.keys.sort)
ensure
URI.const_get(:Schemes).send(:remove_const, :FOOBAR)
end

assert_equal(["FILE", "FTP", "HTTP", "HTTPS", "LDAP", "LDAPS", "MAILTO", "WS"].sort, URI.scheme_list.keys.sort)
assert_equal(["FILE", "FTP", "HTTP", "HTTPS", "LDAP", "LDAPS", "MAILTO", "WS", "WSS"].sort, URI.scheme_list.keys.sort)
end

def test_regexp
Expand Down
71 changes: 71 additions & 0 deletions test/uri/test_wss.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# frozen_string_literal: false
require 'test/unit'
require 'uri/http'
require 'uri/wss'

module URI


class TestWSS < Test::Unit::TestCase
def setup
end

def teardown
end

def uri_to_ary(uri)
uri.class.component.collect {|c| uri.send(c)}
end

def test_build
u = URI::WSS.build(host: 'www.example.com', path: '/foo/bar')
assert_kind_of(URI::WSS, u)
end

def test_parse
u = URI.parse('wss://a')
assert_kind_of(URI::WSS, u)
assert_equal(['wss',
nil, 'a', URI::HTTPS.default_port,
'', nil], uri_to_ary(u))
end

def test_normalize
host = 'aBcD'
u1 = URI.parse('wss://' + host + '/eFg?HiJ')
u2 = URI.parse('wss://' + host.downcase + '/eFg?HiJ')
assert(u1.normalize.host == 'abcd')
assert(u1.normalize.path == u1.path)
assert(u1.normalize == u2.normalize)
assert(!u1.normalize.host.equal?(u1.host))
assert( u2.normalize.host.equal?(u2.host))

assert_equal('wss://abc/', URI.parse('wss://abc').normalize.to_s)
end

def test_equal
assert(URI.parse('wss://abc') == URI.parse('wss://ABC'))
assert(URI.parse('wss://abc/def') == URI.parse('wss://ABC/def'))
assert(URI.parse('wss://abc/def') != URI.parse('wss://ABC/DEF'))
end

def test_request_uri
assert_equal('/', URI.parse('wss://a.b.c/').request_uri)
assert_equal('/?abc=def', URI.parse('wss://a.b.c/?abc=def').request_uri)
assert_equal('/', URI.parse('wss://a.b.c').request_uri)
assert_equal('/?abc=def', URI.parse('wss://a.b.c?abc=def').request_uri)
assert_equal(nil, URI.parse('wss:foo').request_uri)
end

def test_select
assert_equal(['wss', 'a.b.c', 443], URI.parse('wss://a.b.c/').select(:scheme, :host, :port))
u = URI.parse('wss://a.b.c/')
assert_equal(uri_to_ary(u), u.select(*u.component))
assert_raise(ArgumentError) do
u.select(:scheme, :host, :not_exist, :port)
end
end
end


end