Search in sources :

Example 1 with OrcidProfileManagerImpl

use of org.orcid.core.manager.impl.OrcidProfileManagerImpl in project ORCID-Source by ORCID.

the class OrcidProfileManagerBaseTest method initMocks.

/**
 * The classes loaded from the app context are in fact proxies to the
 * OrcidProfileManagerImpl class, required for transactionality. However we
 * can only return the proxied interface from the app context
 * <p/>
 * We need to mock the call to the OrcidIndexManager whenever a persist
 * method is called, but this dependency is only accessible on the impl (as
 * it should be).
 * <p/>
 * To preserve the transactionality AND allow us to mock a dependency that
 * exists on the Impl we use the getTargetObject() method in the superclass
 *
 * @throws Exception
 */
@Before
public void initMocks() throws Exception {
    OrcidProfileManagerImpl orcidProfileManagerImpl = getTargetObject(orcidProfileManager, OrcidProfileManagerImpl.class);
    orcidProfileManagerImpl.setOrcidIndexManager(orcidIndexManager);
}
Also used : OrcidProfileManagerImpl(org.orcid.core.manager.impl.OrcidProfileManagerImpl) Before(org.junit.Before)

Example 2 with OrcidProfileManagerImpl

use of org.orcid.core.manager.impl.OrcidProfileManagerImpl in project ORCID-Source by ORCID.

the class OrcidProfileManagerImplTest method before.

@Before
@Transactional
@Rollback
public void before() throws Exception {
    OrcidProfileManagerImpl orcidProfileManagerImpl = getTargetObject(orcidProfileManager, OrcidProfileManagerImpl.class);
    orcidProfileManagerImpl.setNotificationManager(notificationManager);
    if (profileDao.find(TEST_ORCID) != null) {
        profileDao.remove(TEST_ORCID);
    }
    subjectDao.merge(new SubjectEntity("Computer Science"));
    subjectDao.merge(new SubjectEntity("Dance"));
    OrcidProfile delegateProfile = new OrcidProfile();
    delegateProfile.setOrcidIdentifier(DELEGATE_ORCID);
    OrcidBio delegateBio = new OrcidBio();
    delegateProfile.setOrcidBio(delegateBio);
    PersonalDetails delegatePersonalDetails = new PersonalDetails();
    delegateBio.setPersonalDetails(delegatePersonalDetails);
    CreditName delegateCreditName = new CreditName("H. Shearer");
    delegateCreditName.setVisibility(Visibility.PUBLIC);
    delegatePersonalDetails.setCreditName(delegateCreditName);
    orcidProfileManager.createOrcidProfile(delegateProfile, false, false);
    OrcidProfile applicationProfile = new OrcidProfile();
    applicationProfile.setOrcidIdentifier(APPLICATION_ORCID);
    OrcidBio applicationBio = new OrcidBio();
    applicationProfile.setOrcidBio(applicationBio);
    PersonalDetails applicationPersonalDetails = new PersonalDetails();
    applicationBio.setPersonalDetails(applicationPersonalDetails);
    applicationPersonalDetails.setCreditName(new CreditName("Brown University"));
    orcidProfileManager.createOrcidProfile(applicationProfile, false, false);
    ClientDetailsEntity clientDetails = new ClientDetailsEntity();
    clientDetails.setId(applicationProfile.getOrcidIdentifier().getPath());
    ProfileEntity applicationProfileEntity = profileDao.find(applicationProfile.getOrcidIdentifier().getPath());
    profileDao.refresh(applicationProfileEntity);
    clientDetails.setGroupProfileId(applicationProfileEntity.getId());
    clientDetailsManager.merge(clientDetails);
    ClientDetailsEntity clientDetails2 = new ClientDetailsEntity();
    clientDetails2.setId(APPLICATION_ORCID_2);
    clientDetails.setGroupProfileId(applicationProfileEntity.getId());
    clientDetailsManager.merge(clientDetails2);
    OrcidOauth2TokenDetail token = new OrcidOauth2TokenDetail();
    token.setTokenValue("1234");
    token.setClientDetailsId(clientDetails.getId());
    token.setProfile(profileDao.find(delegateProfile.getOrcidIdentifier().getPath()));
    token.setScope(StringUtils.join(new String[] { ScopePathType.ORCID_BIO_READ_LIMITED.value(), ScopePathType.ORCID_BIO_UPDATE.value() }, " "));
    SortedSet<OrcidOauth2TokenDetail> tokens = new TreeSet<>();
    tokens.add(token);
    ProfileEntity delegateProfileEntity = profileDao.find(delegateProfile.getOrcidIdentifier().getPath());
    delegateProfileEntity.setTokenDetails(tokens);
    profileDao.merge(delegateProfileEntity);
    SecurityQuestionEntity existingSecurityQuestionEntity = securityQuestionDao.find(3);
    if (existingSecurityQuestionEntity == null) {
        SecurityQuestionEntity securityQuestionEntity = new SecurityQuestionEntity();
        securityQuestionEntity.setId(3);
        securityQuestionEntity.setQuestion("What?");
        securityQuestionDao.persist(securityQuestionEntity);
    }
    orcidProfileManager.setCompareWorksUsingScopusWay(true);
    MockitoAnnotations.initMocks(this);
    TargetProxyHelper.injectIntoProxy(jaxb2JpaAdapter, "sourceManager", mockSourceManager);
    TargetProxyHelper.injectIntoProxy(orcidProfileManager, "sourceManager", mockSourceManager);
    SourceEntity sourceEntity = new SourceEntity();
    sourceEntity.setSourceClient(clientDetails);
    when(mockSourceManager.retrieveSourceEntity()).thenReturn(sourceEntity);
    SourceEntity sourceEntity2 = new SourceEntity();
    sourceEntity2.setSourceClient(clientDetails2);
    when(anotherMockSourceManager.retrieveSourceEntity()).thenReturn(sourceEntity2);
}
Also used : ClientDetailsEntity(org.orcid.persistence.jpa.entities.ClientDetailsEntity) OrcidBio(org.orcid.jaxb.model.message.OrcidBio) SubjectEntity(org.orcid.persistence.jpa.entities.SubjectEntity) SourceEntity(org.orcid.persistence.jpa.entities.SourceEntity) CreditName(org.orcid.jaxb.model.message.CreditName) PersonalDetails(org.orcid.jaxb.model.message.PersonalDetails) ProfileEntity(org.orcid.persistence.jpa.entities.ProfileEntity) SecurityQuestionEntity(org.orcid.persistence.jpa.entities.SecurityQuestionEntity) OrcidProfile(org.orcid.jaxb.model.message.OrcidProfile) OrcidProfileManagerImpl(org.orcid.core.manager.impl.OrcidProfileManagerImpl) TreeSet(java.util.TreeSet) OrcidOauth2TokenDetail(org.orcid.persistence.jpa.entities.OrcidOauth2TokenDetail) Before(org.junit.Before) Rollback(org.springframework.test.annotation.Rollback) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

Before (org.junit.Before)2 OrcidProfileManagerImpl (org.orcid.core.manager.impl.OrcidProfileManagerImpl)2 TreeSet (java.util.TreeSet)1 CreditName (org.orcid.jaxb.model.message.CreditName)1 OrcidBio (org.orcid.jaxb.model.message.OrcidBio)1 OrcidProfile (org.orcid.jaxb.model.message.OrcidProfile)1 PersonalDetails (org.orcid.jaxb.model.message.PersonalDetails)1 ClientDetailsEntity (org.orcid.persistence.jpa.entities.ClientDetailsEntity)1 OrcidOauth2TokenDetail (org.orcid.persistence.jpa.entities.OrcidOauth2TokenDetail)1 ProfileEntity (org.orcid.persistence.jpa.entities.ProfileEntity)1 SecurityQuestionEntity (org.orcid.persistence.jpa.entities.SecurityQuestionEntity)1 SourceEntity (org.orcid.persistence.jpa.entities.SourceEntity)1 SubjectEntity (org.orcid.persistence.jpa.entities.SubjectEntity)1 Rollback (org.springframework.test.annotation.Rollback)1 Transactional (org.springframework.transaction.annotation.Transactional)1