use of org.orcid.jaxb.model.v3.dev1.record.Biography in project ORCID-Source by ORCID.
the class OrcidSecurityManager_generalTest method testPersonalDetails_When_AllPrivate_Source_ReadLimitedToken.
@Test
public void testPersonalDetails_When_AllPrivate_Source_ReadLimitedToken() {
SecurityContextTestUtils.setUpSecurityContext(ORCID_1, CLIENT_1, ScopePathType.ORCID_BIO_READ_LIMITED);
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.Biography in project ORCID-Source by ORCID.
the class OrcidSecurityManager_generalTest method testBio_CantRead_When_HaveReadScope_IsPrivate.
@Test(expected = OrcidVisibilityException.class)
public void testBio_CantRead_When_HaveReadScope_IsPrivate() {
SecurityContextTestUtils.setUpSecurityContext(ORCID_1, CLIENT_1, ScopePathType.ORCID_BIO_READ_LIMITED);
Biography bio = createBiography(Visibility.PRIVATE);
orcidSecurityManager.checkAndFilter(ORCID_1, bio, ScopePathType.ORCID_BIO_READ_LIMITED);
fail();
}
use of org.orcid.jaxb.model.v3.dev1.record.Biography in project ORCID-Source by ORCID.
the class BiographyManagerTest method testUpdateBiography.
@Test
public void testUpdateBiography() {
String orcid = "0000-0000-0000-0001";
Biography bio = biographyManager.getBiography(orcid);
assertNotNull(bio);
assertEquals("Biography for 0000-0000-0000-0001", bio.getContent());
assertEquals(Visibility.PRIVATE, bio.getVisibility());
long now = System.currentTimeMillis();
bio.setContent("Updated bio " + now);
bio.setVisibility(Visibility.PUBLIC);
biographyManager.updateBiography(orcid, bio);
Biography newBio = biographyManager.getBiography(orcid);
assertNotNull(newBio);
assertEquals("Updated bio " + now, newBio.getContent());
assertEquals(Visibility.PUBLIC, newBio.getVisibility());
}
use of org.orcid.jaxb.model.v3.dev1.record.Biography in project ORCID-Source by ORCID.
the class BiographyManagerTest method testCreateBiography.
@Test
public void testCreateBiography() {
String orcid = "0000-0000-0000-0004";
Biography bio = new Biography();
bio.setContent("This is my biography");
bio.setVisibility(Visibility.LIMITED);
biographyManager.createBiography(orcid, bio);
Biography newBio = biographyManager.getBiography(orcid);
assertNotNull(newBio);
assertEquals("This is my biography", newBio.getContent());
assertEquals(Visibility.LIMITED, newBio.getVisibility());
}
use of org.orcid.jaxb.model.v3.dev1.record.Biography in project ORCID-Source by ORCID.
the class BiographyManagerTest method testGetPublicBiography.
@Test
public void testGetPublicBiography() {
String orcid = "0000-0000-0000-0002";
Biography bio = biographyManager.getPublicBiography(orcid);
assertNull(bio);
orcid = "0000-0000-0000-0003";
bio = biographyManager.getPublicBiography(orcid);
assertNotNull(bio);
assertEquals("Biography for 0000-0000-0000-0003", bio.getContent());
assertEquals(Visibility.PUBLIC, bio.getVisibility());
}
Aggregations