summaryrefslogtreecommitdiff
path: root/test/unit/wkd/url_test.rb
diff options
context:
space:
mode:
authorazul <azul@riseup.net>2017-09-23 14:44:56 +0000
committerazul <azul@riseup.net>2017-09-23 14:44:56 +0000
commit787287318c54b019a12ef79525c9f5b10d93724d (patch)
tree653c56240d681e1aaf5f7f0ef00904d0bd24301f /test/unit/wkd/url_test.rb
parentbc48ac30c232f1e3fa5f5ad455f14d5fec17abeb (diff)
parentc0410a5a5c5dbdd5fa182ac25d72ebb99e48bbb3 (diff)
Merge branch 'wkd' into 'master'
Fetch keys from web key directory See merge request leap/nickserver!18
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