Bug #8630
equivalentIdentity values use uppercase letters when the same person subject values are lowercase
Status:
New
Priority:
Normal
Assignee:
-
Category:
d1_identity_manager
Target version:
-
Start date:
2018-06-26
Due date:
% Done:
0%
Story Points:
Sprint:
Description
I would expect a username to appear exactly the same everywhere in the identity service.
Here is an example where the equivalentIdentity
uses uppercase letters for the subject (UID=corinalogan,O=unaffiliated,DC=ecoinformatics,DC=org) when the person
>subject
uses lowercase letters (uid=corinalogan,o=unaffiliated,dc=ecoinformatics,dc=org):
https://cn.dataone.org/cn/v2/accounts/http%3A%2F%2Forcid.org%2F0000-0002-5944-906X
<ns2:subjectInfo xmlns:ns2="http://ns.dataone.org/service/types/v1"> <person> <subject>http://orcid.org/0000-0002-5944-906X</subject> <givenName>Corina</givenName> <familyName>Logan</familyName> <equivalentIdentity> UID=corinalogan,O=unaffiliated,DC=ecoinformatics,DC=org </equivalentIdentity> <verified>false</verified> </person> <person> <subject> uid=corinalogan,o=unaffiliated,dc=ecoinformatics,dc=org </subject> <givenName>Corina</givenName> <familyName>Logan</familyName> <equivalentIdentity>http://orcid.org/0000-0002-5944-906X</equivalentIdentity> <verified>false</verified> </person> </ns2:subjectInfo> ```~~~