use of org.apache.harmony.security.x509.OtherName in project ORCID-Source by ORCID.
the class PersonalDetailsManagerTest method getPersonalDetailsTest3.
@Test
public void getPersonalDetailsTest3() {
PersonalDetails personalDetails = personalDetailsManager.getPersonalDetails(ORCID3);
assertNotNull(personalDetails);
assertNotNull(personalDetails.getOtherNames());
assertNotNull(personalDetails.getOtherNames().getOtherNames());
assertEquals(5, personalDetails.getOtherNames().getOtherNames().size());
boolean found1 = false, found2 = false, found3 = false, found4 = false, found5 = false;
for (OtherName otherName : personalDetails.getOtherNames().getOtherNames()) {
long putCode = otherName.getPutCode();
if (putCode == 13) {
found1 = true;
} else if (putCode == 14) {
found2 = true;
} else if (putCode == 15) {
found3 = true;
} else if (putCode == 16) {
found4 = true;
} else if (putCode == 17) {
found5 = true;
} else {
fail("Invalid put code found " + putCode);
}
}
assertTrue(found1);
assertTrue(found2);
assertTrue(found3);
assertTrue(found4);
assertTrue(found5);
assertNotNull(personalDetails.getBiography());
assertEquals(Visibility.PUBLIC, personalDetails.getBiography().getVisibility());
assertEquals("Biography for 0000-0000-0000-0003", personalDetails.getBiography().getContent());
assertNotNull(personalDetails.getName());
assertEquals("Credit Name", personalDetails.getName().getCreditName().getContent());
assertEquals("Family Name", personalDetails.getName().getFamilyName().getContent());
assertEquals("Given Names", personalDetails.getName().getGivenNames().getContent());
assertEquals(Visibility.PUBLIC, personalDetails.getName().getVisibility());
}
use of org.apache.harmony.security.x509.OtherName in project ORCID-Source by ORCID.
the class PersonalDetailsManagerTest method getPersonalDetailsTest1.
@Test
public void getPersonalDetailsTest1() {
PersonalDetails personalDetails = personalDetailsManager.getPersonalDetails(ORCID1);
assertNotNull(personalDetails);
assertNotNull(personalDetails.getOtherNames());
assertNotNull(personalDetails.getOtherNames().getOtherNames());
assertEquals(3, personalDetails.getOtherNames().getOtherNames().size());
boolean found1 = false, found2 = false, found3 = false;
for (OtherName otherName : personalDetails.getOtherNames().getOtherNames()) {
long putCode = otherName.getPutCode();
if (putCode == 18) {
found1 = true;
} else if (putCode == 19) {
found2 = true;
} else if (putCode == 20) {
found3 = true;
} else {
fail("Invalid put code found " + putCode);
}
}
assertTrue(found1);
assertTrue(found2);
assertTrue(found3);
assertNotNull(personalDetails.getBiography());
assertEquals(Visibility.PRIVATE, personalDetails.getBiography().getVisibility());
assertEquals("Biography for 0000-0000-0000-0001", personalDetails.getBiography().getContent());
assertNotNull(personalDetails.getName());
assertEquals("Leonardo", personalDetails.getName().getCreditName().getContent());
assertEquals("da Vinci", personalDetails.getName().getFamilyName().getContent());
assertEquals("Leonardo", personalDetails.getName().getGivenNames().getContent());
assertEquals(Visibility.PRIVATE, personalDetails.getName().getVisibility());
}
use of org.apache.harmony.security.x509.OtherName in project ORCID-Source by ORCID.
the class BlackBoxBaseRC2 method unmarshallFromPath.
public Object unmarshallFromPath(String path, Class<?> type) {
try (Reader reader = new InputStreamReader(getClass().getResourceAsStream(path))) {
Object obj = unmarshall(reader, type);
Object result = null;
if (Address.class.equals(type)) {
result = (Address) obj;
} else if (Education.class.equals(type)) {
result = (Education) obj;
} else if (Employment.class.equals(type)) {
result = (Employment) obj;
} else if (Funding.class.equals(type)) {
result = (Funding) obj;
} else if (Keyword.class.equals(type)) {
result = (Keyword) obj;
} else if (Work.class.equals(type)) {
result = (Work) obj;
} else if (PeerReview.class.equals(type)) {
result = (PeerReview) obj;
} else if (ResearcherUrl.class.equals(type)) {
result = (ResearcherUrl) obj;
} else if (PersonalDetails.class.equals(type)) {
result = (PersonalDetails) obj;
} else if (OtherName.class.equals(type)) {
result = (OtherName) obj;
} else if (PersonExternalIdentifier.class.equals(type)) {
result = (PersonExternalIdentifier) obj;
}
return result;
} catch (IOException e) {
throw new RuntimeException("Error reading notification from classpath", e);
}
}
use of org.apache.harmony.security.x509.OtherName in project ORCID-Source by ORCID.
the class BlackBoxBaseV2_1Release method createOtherName.
@SuppressWarnings({ "deprecation", "rawtypes" })
public Long createOtherName(String value, String userOrcid, String accessToken) {
OtherName otherName = new OtherName();
otherName.setContent(value);
ClientResponse response = memberV2_1ApiClient.createOtherName(userOrcid, otherName, accessToken);
assertNotNull(response);
assertEquals(ClientResponse.Status.CREATED.getStatusCode(), response.getStatus());
Map map = response.getMetadata();
assertNotNull(map);
assertTrue(map.containsKey("Location"));
List resultWithPutCode = (List) map.get("Location");
String location = resultWithPutCode.get(0).toString();
Long putCode = Long.valueOf(location.substring(location.lastIndexOf('/') + 1));
return putCode;
}
use of org.apache.harmony.security.x509.OtherName in project ORCID-Source by ORCID.
the class BlackBoxBaseV2_1Release method unmarshallFromPath.
public Object unmarshallFromPath(String path, Class<?> type) {
try (Reader reader = new InputStreamReader(getClass().getResourceAsStream(path))) {
Object obj = unmarshall(reader, type);
Object result = null;
if (Address.class.equals(type)) {
result = (Address) obj;
} else if (Education.class.equals(type)) {
result = (Education) obj;
} else if (Employment.class.equals(type)) {
result = (Employment) obj;
} else if (Funding.class.equals(type)) {
result = (Funding) obj;
} else if (Keyword.class.equals(type)) {
result = (Keyword) obj;
} else if (Work.class.equals(type)) {
result = (Work) obj;
} else if (PeerReview.class.equals(type)) {
result = (PeerReview) obj;
} else if (ResearcherUrl.class.equals(type)) {
result = (ResearcherUrl) obj;
} else if (PersonalDetails.class.equals(type)) {
result = (PersonalDetails) obj;
} else if (OtherName.class.equals(type)) {
result = (OtherName) obj;
} else if (PersonExternalIdentifier.class.equals(type)) {
result = (PersonExternalIdentifier) obj;
}
return result;
} catch (IOException e) {
throw new RuntimeException("Error reading notification from classpath", e);
}
}
Aggregations