use of org.orcid.jaxb.model.record_rc3.Name in project ORCID-Source by ORCID.
the class OrcidSecurityManager_generalTest method testPersonalDetails_When_SomeLimited_NoSource_ReadLimitedToken.
@Test
public void testPersonalDetails_When_SomeLimited_NoSource_ReadLimitedToken() {
SecurityContextTestUtils.setUpSecurityContext(ORCID_1, CLIENT_1, ScopePathType.ORCID_BIO_READ_LIMITED);
Name name = createName(Visibility.LIMITED);
Biography bio = createBiography(Visibility.LIMITED);
OtherName o1 = createOtherName(Visibility.PUBLIC, CLIENT_2);
OtherName o2 = createOtherName(Visibility.LIMITED, 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);
assertEquals(name, p.getName());
assertEquals(bio, 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.record_rc3.Name in project ORCID-Source by ORCID.
the class OrcidSecurityManager_generalTest method testName_CantRead_When_DontHaveReadScope_IsPrivate.
@Test(expected = OrcidAccessControlException.class)
public void testName_CantRead_When_DontHaveReadScope_IsPrivate() {
SecurityContextTestUtils.setUpSecurityContext(ORCID_1, CLIENT_1, ScopePathType.ORCID_BIO_UPDATE);
Name name = createName(Visibility.PRIVATE);
orcidSecurityManager.checkAndFilter(ORCID_1, name, ScopePathType.ORCID_BIO_READ_LIMITED);
fail();
}
use of org.orcid.jaxb.model.record_rc3.Name in project ORCID-Source by ORCID.
the class OrcidSecurityManager_generalTest method testName_CanRead_When_ReadPublicToken_IsPublic.
/**
* =================== checkAndFilter test's ===================
*/
// ---- ELEMENTS WITHOUT SOURCE ----
// Name element tests
@Test
public void testName_CanRead_When_ReadPublicToken_IsPublic() {
SecurityContextTestUtils.setUpSecurityContext(ORCID_1, CLIENT_1, ScopePathType.READ_PUBLIC);
Name name = createName(Visibility.PUBLIC);
orcidSecurityManager.checkAndFilter(ORCID_1, name, ScopePathType.ORCID_BIO_READ_LIMITED);
}
use of org.orcid.jaxb.model.record_rc3.Name in project ORCID-Source by ORCID.
the class RecordNameManagerTest method testGetRecordName.
@Test
public void testGetRecordName() {
String orcid = "0000-0000-0000-0001";
Name name = recordNameManager.getRecordName(orcid, 0);
assertNotNull(name);
assertEquals("Leonardo", name.getGivenNames().getContent());
assertEquals("da Vinci", name.getFamilyName().getContent());
assertEquals("Leonardo", name.getCreditName().getContent());
assertEquals(Visibility.PRIVATE, name.getVisibility());
}
use of org.orcid.jaxb.model.record_rc3.Name in project ORCID-Source by ORCID.
the class RecordNameManagerTest method testFailOnCreatingOnARecordThatAlreadyHaveRecordName.
@Test(expected = IllegalArgumentException.class)
public void testFailOnCreatingOnARecordThatAlreadyHaveRecordName() {
Name name = new Name();
long time = System.currentTimeMillis();
name.setCreditName(new CreditName("Credit Name " + time));
name.setFamilyName(new FamilyName("Family Name " + time));
name.setGivenNames(new GivenNames("Given Names " + time));
name.setVisibility(Visibility.PRIVATE);
String orcid = "0000-0000-0000-0001";
recordNameManager.createRecordName(orcid, name);
fail();
}
Aggregations