Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
175bb6d1
Commit
175bb6d1
authored
15 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
#575796
by Heine: Fixed OpenID XRI test violates the spec.
parent
6c0f8eba
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/openid/openid.inc
+8
-4
8 additions, 4 deletions
modules/openid/openid.inc
modules/openid/openid.test
+30
-0
30 additions, 0 deletions
modules/openid/openid.test
with
38 additions
and
4 deletions
modules/openid/openid.inc
+
8
−
4
View file @
175bb6d1
...
...
@@ -109,11 +109,15 @@ function openid_redirect_form(&$form_state, $url, $message) {
* Determine if the given identifier is an XRI ID.
*/
function
_openid_is_xri
(
$identifier
)
{
$firstchar
=
substr
(
$identifier
,
0
,
1
);
if
(
$firstchar
==
"@"
||
$firstchar
==
"="
)
return
TRUE
;
// Strip the xri:// scheme from the identifier if present.
if
(
stripos
(
$identifier
,
'xri://'
)
!==
FALSE
)
{
$identifier
=
substr
(
$identifier
,
6
);
}
if
(
stristr
(
$identifier
,
'xri://'
)
!==
FALSE
)
{
// Test whether the identifier starts with an XRI global context symbol or (.
$firstchar
=
substr
(
$identifier
,
0
,
1
);
if
(
strpos
(
"=@+$!("
,
$firstchar
)
!==
FALSE
)
{
return
TRUE
;
}
...
...
This diff is collapsed.
Click to expand it.
modules/openid/openid.test
+
30
−
0
View file @
175bb6d1
...
...
@@ -219,4 +219,34 @@ class OpenIDUnitTest extends DrupalWebTestCase {
$association
->
mac_key
=
"1234567890abcdefghij
\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9
"
;
$this
->
assertEqual
(
_openid_signature
(
$association
,
$response
,
array
(
'foo'
,
'bar'
)),
'QnKZQzSFstT+GNiJDFOptdcZjrc='
,
t
(
'Expected signature calculated.'
));
}
/**
* Test _openid_is_xri().
*/
function
testOpenidXRITest
()
{
// Test that the XRI test is according to OpenID Authentication 2.0,
// section 7.2. If the user-supplied string starts with xri:// it should be
// stripped and the resulting string should be treated as an XRI when it
// starts with "=", "@", "+", "$", "!" or "(".
$this
->
assertTrue
(
_openid_is_xri
(
'xri://=foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier with xri scheme.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'xri://@foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier with xri scheme.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'xri://+foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier with xri scheme.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'xri://$foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier with xri scheme.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'xri://!foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier with xri scheme..'
));
$this
->
assertTrue
(
_openid_is_xri
(
'xri://(foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier with xri scheme..'
));
$this
->
assertTrue
(
_openid_is_xri
(
'=foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'@foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'+foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'$foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'!foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier.'
));
$this
->
assertTrue
(
_openid_is_xri
(
'(foo'
),
t
(
'_openid_is_xri returned expected result for an xri identifier.'
));
$this
->
assertFalse
(
_openid_is_xri
(
'foo'
),
t
(
'_openid_is_xri returned expected result for an http URL.'
));
$this
->
assertFalse
(
_openid_is_xri
(
'xri://foo'
),
t
(
'_openid_is_xri returned expected result for an http URL.'
));
$this
->
assertFalse
(
_openid_is_xri
(
'http://foo/'
),
t
(
'_openid_is_xri returned expected result for an http URL.'
));
$this
->
assertFalse
(
_openid_is_xri
(
'http://example.com/'
),
t
(
'_openid_is_xri returned expected result for an http URL.'
));
$this
->
assertFalse
(
_openid_is_xri
(
'user@example.com/'
),
t
(
'_openid_is_xri returned expected result for an http URL.'
));
$this
->
assertFalse
(
_openid_is_xri
(
'http://user@example.com/'
),
t
(
'_openid_is_xri returned expected result for an http URL.'
));
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment