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

Refine tests #71

Merged
merged 2 commits into from
May 5, 2023
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
10 changes: 2 additions & 8 deletions test/uri/test_common.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
require 'envutil'
require 'uri'

module URI


class TestCommon < Test::Unit::TestCase
class URI::TestCommon < Test::Unit::TestCase
def setup
end

Expand Down Expand Up @@ -116,7 +113,7 @@ def test_parse_timeout
pre = ->(n) {
'https://example.com/dir/' + 'a' * (n * 100) + '/##.jpg'
}
assert_linear_performance((1..10).map {|i| i * 100}, rehearsal: 1000, pre: pre) do |uri|
assert_linear_performance((1..3).map {|i| 10**i}, rehearsal: 1000, pre: pre) do |uri|
assert_raise(URI::InvalidURIError) do
URI.parse(uri)
end
Expand Down Expand Up @@ -292,6 +289,3 @@ def test_decode_www_form
private
def s(str) str.force_encoding(Encoding::Windows_31J); end
end


end
10 changes: 2 additions & 8 deletions test/uri/test_ftp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
require 'test/unit'
require 'uri/ftp'

module URI


class TestFTP < Test::Unit::TestCase
class URI::TestFTP < Test::Unit::TestCase
def setup
end

Expand All @@ -29,7 +26,7 @@ def test_parse
end

def test_parse_invalid
assert_raise(InvalidURIError){URI.parse('ftp:example')}
assert_raise(URI::InvalidURIError) {URI.parse('ftp:example')}
end

def test_paths
Expand Down Expand Up @@ -62,6 +59,3 @@ def test_select
end
end
end


end
8 changes: 1 addition & 7 deletions test/uri/test_http.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
require 'uri/http'
require 'uri/https'

module URI


class TestHTTP < Test::Unit::TestCase
class URI::TestHTTP < Test::Unit::TestCase
def setup
end

Expand Down Expand Up @@ -82,6 +79,3 @@ def test_origin
assert_equal('https://a.b.c', URI.parse('https://a.b.c/').origin)
end
end


end
8 changes: 1 addition & 7 deletions test/uri/test_ldap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
require 'test/unit'
require 'uri/ldap'

module URI


class TestLDAP < Test::Unit::TestCase
class URI::TestLDAP < Test::Unit::TestCase
def setup
end

Expand Down Expand Up @@ -100,6 +97,3 @@ def test_parse_invalid_uri
assert_raise(URI::InvalidURIError) {URI.parse("ldap:https://example.com")}
end
end


end
8 changes: 1 addition & 7 deletions test/uri/test_ws.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
require 'uri/http'
require 'uri/ws'

module URI


class TestWS < Test::Unit::TestCase
class URI::TestWS < Test::Unit::TestCase
def setup
end

Expand Down Expand Up @@ -66,6 +63,3 @@ def test_select
end
end
end


end
8 changes: 1 addition & 7 deletions test/uri/test_wss.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
require 'uri/https'
require 'uri/wss'

module URI


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

Expand Down Expand Up @@ -66,6 +63,3 @@ def test_select
end
end
end


end