use of org.orcid.jaxb.model.v3.dev1.record.PersonalDetails in project ORCID-Source by ORCID.
the class OrcidSecurityManager_generalTest method testPersonalDetails_When_AllPrivate_Source_ReadPublicToken.
@Test
public void testPersonalDetails_When_AllPrivate_Source_ReadPublicToken() {
SecurityContextTestUtils.setUpSecurityContext(ORCID_1, CLIENT_1, ScopePathType.READ_PUBLIC);
Name name = createName(Visibility.PRIVATE);
Biography bio = createBiography(Visibility.PRIVATE);
OtherName o1 = createOtherName(Visibility.PRIVATE, CLIENT_1);
OtherName o2 = createOtherName(Visibility.PRIVATE, CLIENT_1);
OtherName o3 = createOtherName(Visibility.PRIVATE, CLIENT_1);
OtherNames otherNames = new OtherNames();
otherNames.setOtherNames(new ArrayList<OtherName>(Arrays.asList(o1, o2, o3)));
PersonalDetails p = new PersonalDetails();
p.setBiography(bio);
p.setName(name);
p.setOtherNames(otherNames);
orcidSecurityManager.checkAndFilter(ORCID_1, p);
assertNotNull(p);
assertNull(p.getName());
assertNull(p.getBiography());
assertNotNull(p.getOtherNames());
assertNotNull(p.getOtherNames().getOtherNames());
assertEquals(3, p.getOtherNames().getOtherNames().size());
assertTrue(p.getOtherNames().getOtherNames().contains(o1));
assertTrue(p.getOtherNames().getOtherNames().contains(o2));
assertTrue(p.getOtherNames().getOtherNames().contains(o3));
}
use of org.orcid.jaxb.model.v3.dev1.record.PersonalDetails in project ORCID-Source by ORCID.
the class OrcidSecurityManager_generalTest method testPersonalDetails_When_SomeLimited_ReadPublicToken.
@Test
public void testPersonalDetails_When_SomeLimited_ReadPublicToken() {
SecurityContextTestUtils.setUpSecurityContext(ORCID_1, CLIENT_1, ScopePathType.READ_PUBLIC);
Name name = createName(Visibility.LIMITED);
Biography bio = createBiography(Visibility.PUBLIC);
OtherName o1 = createOtherName(Visibility.LIMITED, CLIENT_2);
OtherName o2 = createOtherName(Visibility.PUBLIC, CLIENT_2);
OtherName o3 = createOtherName(Visibility.LIMITED, CLIENT_2);
OtherNames otherNames = new OtherNames();
otherNames.setOtherNames(new ArrayList<OtherName>(Arrays.asList(o1, o2, o3)));
PersonalDetails p = new PersonalDetails();
p.setBiography(bio);
p.setName(name);
p.setOtherNames(otherNames);
orcidSecurityManager.checkAndFilter(ORCID_1, p);
assertNotNull(p);
assertNull(p.getName());
assertEquals(bio, p.getBiography());
assertNotNull(p.getOtherNames());
assertNotNull(p.getOtherNames().getOtherNames());
assertEquals(1, p.getOtherNames().getOtherNames().size());
assertFalse(p.getOtherNames().getOtherNames().contains(o1));
assertTrue(p.getOtherNames().getOtherNames().contains(o2));
assertFalse(p.getOtherNames().getOtherNames().contains(o3));
}
use of org.orcid.jaxb.model.v3.dev1.record.PersonalDetails in project ORCID-Source by ORCID.
the class OrcidSecurityManager_generalTest method testPersonalDetails_When_AllPrivate_NoSource_ReadPublicToken.
@Test
public void testPersonalDetails_When_AllPrivate_NoSource_ReadPublicToken() {
SecurityContextTestUtils.setUpSecurityContext(ORCID_1, CLIENT_1, ScopePathType.READ_PUBLIC);
Name name = createName(Visibility.PRIVATE);
Biography bio = createBiography(Visibility.PRIVATE);
OtherName o1 = createOtherName(Visibility.PRIVATE, CLIENT_2);
OtherName o2 = createOtherName(Visibility.PRIVATE, CLIENT_2);
OtherName o3 = createOtherName(Visibility.PRIVATE, CLIENT_2);
OtherNames otherNames = new OtherNames();
otherNames.setOtherNames(new ArrayList<OtherName>(Arrays.asList(o1, o2, o3)));
PersonalDetails p = new PersonalDetails();
p.setBiography(bio);
p.setName(name);
p.setOtherNames(otherNames);
orcidSecurityManager.checkAndFilter(ORCID_1, p);
assertNotNull(p);
assertNull(p.getName());
assertNull(p.getBiography());
assertNotNull(p.getOtherNames());
assertNotNull(p.getOtherNames().getOtherNames());
assertTrue(p.getOtherNames().getOtherNames().isEmpty());
}
use of org.orcid.jaxb.model.v3.dev1.record.PersonalDetails 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.orcid.jaxb.model.v3.dev1.record.PersonalDetails 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());
}
Aggregations