aboutsummaryrefslogtreecommitdiff
path: root/t/openiduser.t
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2010-03-13 20:10:50 -0500
committerJoey Hess <joey@gnu.kitenet.net>2010-03-13 20:10:50 -0500
commitc0ad4929deb455804ddfc6451820c6c67a298ea1 (patch)
treecd19eca3ca1972958f609204509cc267d2b8c279 /t/openiduser.t
parentfd43e83fcf7bf24493ecfff54111c1c5f1cab573 (diff)
downloadikiwiki-c0ad4929deb455804ddfc6451820c6c67a298ea1.tar
ikiwiki-c0ad4929deb455804ddfc6451820c6c67a298ea1.tar.gz
Improve openid url munging; do not display anchors and cgi parameters, as used by yahoo and google urls.
Diffstat (limited to 't/openiduser.t')
-rwxr-xr-xt/openiduser.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/openiduser.t b/t/openiduser.t
index 52d879484..caabbcefc 100755
--- a/t/openiduser.t
+++ b/t/openiduser.t
@@ -10,7 +10,7 @@ BEGIN {
eval q{use Test::More skip_all => "Net::OpenID::VerifiedIdentity not available"};
}
else {
- eval q{use Test::More tests => 9};
+ eval q{use Test::More tests => 11};
}
use_ok("IkiWiki::Plugin::openid");
}
@@ -28,6 +28,11 @@ $^W=1;
is(IkiWiki::openiduser('http://yam655.livejournal.com/'), 'yam655 [livejournal.com]');
is(IkiWiki::openiduser('http://id.mayfirst.org/jamie/'), 'jamie [id.mayfirst.org]');
+# yahoo has an anchor in the url
+is(IkiWiki::openiduser('https://me.yahoo.com/joeyhess#35f22'), 'joeyhess [me.yahoo.com]');
+# google urls are horrendous, but the worst bit is after a ?, so can be dropped
+is(IkiWiki::openiduser('https://www.google.com/accounts/o8/id?id=AItOawm-ebiIfxbKD3KNa-Cu9LvvD9edMLW7BAo'), 'id [www.google.com/accounts/o8]');
+
# and some less typical ones taken from the ikiwiki commit history
is(IkiWiki::openiduser('http://thm.id.fedoraproject.org/'), 'thm [id.fedoraproject.org]');