summaryrefslogtreecommitdiff
path: root/test/unit/wkd/url_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/wkd/url_test.rb')
-rw-r--r--test/unit/wkd/url_test.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/unit/wkd/url_test.rb b/test/unit/wkd/url_test.rb
new file mode 100644
index 0000000..9bf8f64
--- /dev/null
+++ b/test/unit/wkd/url_test.rb
@@ -0,0 +1,26 @@
+require 'test_helper'
+require 'nickserver/wkd/url'
+require 'nickserver/email_address'
+
+module Nickserver::Wkd
+ class UrlTest < Minitest::Test
+ # TODO: test utf8 behavior
+
+ # https://tools.ietf.org/html/draft-koch-openpgp-webkey-service-00#section-3.1
+ def test_sample_from_draft
+ url = Url.new sample_email
+ assert_equal sample_url, url.to_s
+ end
+
+ protected
+
+ def sample_email
+ Nickserver::EmailAddress.new 'Joe.Doe@Example.ORG'
+ end
+
+ def sample_url
+ 'https://example.org/.well-known/openpgpkey/' +
+ 'hu/example.org/iy9q119eutrkn8s1mk4r39qejnbu3n5q'
+ end
+ end
+end