File: C:/Ruby27-x64/lib/ruby/gems/2.7.0/gems/ruby-openid-2.9.2/test/test_urinorm.rb
require "minitest/autorun"
require "testutil"
require "openid/urinorm"
class URINormTestCase < Minitest::Test
include OpenID::TestDataMixin
def test_normalize
lines = read_data_file('urinorm.txt')
while lines.length > 0
case_name = lines.shift.strip
actual = lines.shift.strip
expected = lines.shift.strip
lines.shift #=> newline
if expected == 'fail'
begin
OpenID::URINorm.urinorm(actual)
rescue URI::InvalidURIError
assert true
else
raise 'Should have gotten URI error'
end
else
normalized = OpenID::URINorm.urinorm(actual)
assert_equal(expected, normalized, case_name)
end
end
end
end