Search in sources :

Example 26 with DomainDao

use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.

the class CertPolicyDaoImpl_disassociatePolicyGroupsFromDomainTest method testDisassociatePolicyGroupsFromDomain_unknownDomain_assertException.

@Test
public void testDisassociatePolicyGroupsFromDomain_unknownDomain_assertException() {
    boolean exceptionOccured = false;
    final EntityManager mgr = mock(EntityManager.class);
    final DomainDao domainDao = mock(DomainDao.class);
    final CertPolicyDaoImpl dao = new CertPolicyDaoImpl();
    dao.setDomainDao(domainDao);
    dao.setEntityManager(mgr);
    CertPolicyDaoImpl spyDao = spy(dao);
    try {
        spyDao.disassociatePolicyGroupsFromDomain(1234);
    } catch (ConfigurationStoreException e) {
        exceptionOccured = true;
    }
    assertTrue(exceptionOccured);
    verify(domainDao, times(1)).getDomain(new Long(1234));
}
Also used : EntityManager(javax.persistence.EntityManager) CertPolicyDaoImpl(org.nhindirect.config.store.dao.impl.CertPolicyDaoImpl) DomainDao(org.nhindirect.config.store.dao.DomainDao) Test(org.junit.Test)

Example 27 with DomainDao

use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.

the class TrustBundleDaoImpl_getTrustBundlesByDomainTest method testGetTrustBundlesByDomain_errorInGet_assertException.

@Test
public void testGetTrustBundlesByDomain_errorInGet_assertException() {
    boolean exceptionOccured = false;
    final EntityManager mgr = mock(EntityManager.class);
    final Domain domain = mock(Domain.class);
    final DomainDao domainDao = mock(DomainDao.class);
    when(domainDao.getDomain(new Long(1234))).thenReturn(domain);
    final TrustBundleDomainReltn reltn = mock(TrustBundleDomainReltn.class);
    final Query findReltnQeury = mock(Query.class);
    when(findReltnQeury.getSingleResult()).thenReturn(reltn);
    doThrow(new RuntimeException("Just Passing Through")).when(findReltnQeury).getResultList();
    when(mgr.createQuery("SELECT tbd from TrustBundleDomainReltn tbd where tbd.domain = ?1")).thenReturn(findReltnQeury);
    final TrustBundleDaoImpl dao = new TrustBundleDaoImpl();
    dao.setDomainDao(domainDao);
    dao.setEntityManager(mgr);
    final TrustBundleDaoImpl spyDao = spy(dao);
    try {
        spyDao.getTrustBundlesByDomain(1234);
    } catch (ConfigurationStoreException e) {
        exceptionOccured = true;
    }
    assertTrue(exceptionOccured);
    verify(domainDao, times(1)).getDomain(new Long(1234));
    verify(findReltnQeury, times(1)).getResultList();
}
Also used : EntityManager(javax.persistence.EntityManager) Query(javax.persistence.Query) TrustBundleDaoImpl(org.nhindirect.config.store.dao.impl.TrustBundleDaoImpl) DomainDao(org.nhindirect.config.store.dao.DomainDao) Test(org.junit.Test)

Example 28 with DomainDao

use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.

the class TrustBundleDaoImpl_associateTrustBundleToDomainTest method testAssociateTrustBundleToDomain_errorInAdd_assertException.

@Test
public void testAssociateTrustBundleToDomain_errorInAdd_assertException() {
    boolean exceptionOccured = false;
    final EntityManager mgr = mock(EntityManager.class);
    doThrow(new RuntimeException("Just Passing Through")).when(mgr).persist((TrustBundleDomainReltn) any());
    final Domain domain = mock(Domain.class);
    final DomainDao domainDao = mock(DomainDao.class);
    when(domainDao.getDomain(new Long(1234))).thenReturn(domain);
    final TrustBundle bundle = mock(TrustBundle.class);
    final Query query = mock(Query.class);
    when(query.getSingleResult()).thenReturn(bundle);
    when(mgr.createQuery("SELECT tb from TrustBundle tb WHERE tb.id = ?1")).thenReturn(query);
    final TrustBundleDaoImpl dao = new TrustBundleDaoImpl();
    dao.setDomainDao(domainDao);
    dao.setEntityManager(mgr);
    final TrustBundleDaoImpl spyDao = spy(dao);
    try {
        spyDao.associateTrustBundleToDomain(1234, 5678, true, true);
    } catch (ConfigurationStoreException e) {
        exceptionOccured = true;
    }
    assertTrue(exceptionOccured);
    verify(domainDao, times(1)).getDomain(new Long(1234));
    verify(spyDao, times(1)).getTrustBundleById(5678);
    verify(mgr, times(1)).persist((TrustBundleDomainReltn) any());
}
Also used : EntityManager(javax.persistence.EntityManager) Query(javax.persistence.Query) TrustBundleDaoImpl(org.nhindirect.config.store.dao.impl.TrustBundleDaoImpl) DomainDao(org.nhindirect.config.store.dao.DomainDao) Test(org.junit.Test)

Example 29 with DomainDao

use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.

the class TrustBundleDaoImpl_associateTrustBundleToDomainTest method testAssociateTrustBundleToDomain_unknownTrustBundle_assertException.

@Test
public void testAssociateTrustBundleToDomain_unknownTrustBundle_assertException() {
    boolean exceptionOccured = false;
    final EntityManager mgr = mock(EntityManager.class);
    final Domain domain = mock(Domain.class);
    final DomainDao domainDao = mock(DomainDao.class);
    when(domainDao.getDomain(new Long(1234))).thenReturn(domain);
    final TrustBundleDaoImpl dao = new TrustBundleDaoImpl();
    final Query query = mock(Query.class);
    doThrow(new NoResultException()).when(query).getSingleResult();
    when(mgr.createQuery("SELECT tb from TrustBundle tb WHERE tb.id = ?1")).thenReturn(query);
    dao.setDomainDao(domainDao);
    dao.setEntityManager(mgr);
    final TrustBundleDaoImpl spyDao = spy(dao);
    try {
        spyDao.associateTrustBundleToDomain(1234, 5678, true, true);
    } catch (ConfigurationStoreException e) {
        exceptionOccured = true;
    }
    assertTrue(exceptionOccured);
    verify(domainDao, times(1)).getDomain(new Long(1234));
    verify(spyDao, times(1)).getTrustBundleById(5678);
    verify(mgr, never()).persist((TrustBundleDomainReltn) any());
}
Also used : EntityManager(javax.persistence.EntityManager) Query(javax.persistence.Query) TrustBundleDaoImpl(org.nhindirect.config.store.dao.impl.TrustBundleDaoImpl) DomainDao(org.nhindirect.config.store.dao.DomainDao) NoResultException(javax.persistence.NoResultException) Test(org.junit.Test)

Example 30 with DomainDao

use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.

the class TrustBundleDaoImpl_disassociateTrustBundleFromDomainTest method testDisassociateTrustBundleFromDomain_unknownErrorInRemove_assertException.

@Test
public void testDisassociateTrustBundleFromDomain_unknownErrorInRemove_assertException() {
    boolean exceptionOccured = false;
    final EntityManager mgr = mock(EntityManager.class);
    doThrow(new RuntimeException("Just Passing Through")).when(mgr).remove((TrustBundleDomainReltn) any());
    final Domain domain = mock(Domain.class);
    final DomainDao domainDao = mock(DomainDao.class);
    when(domainDao.getDomain(new Long(1234))).thenReturn(domain);
    final TrustBundle bundle = mock(TrustBundle.class);
    final Query query = mock(Query.class);
    when(query.getSingleResult()).thenReturn(bundle);
    when(mgr.createQuery("SELECT tb from TrustBundle tb WHERE tb.id = ?1")).thenReturn(query);
    final TrustBundleDomainReltn reltn = mock(TrustBundleDomainReltn.class);
    final Query findReltnQeury = mock(Query.class);
    when(findReltnQeury.getSingleResult()).thenReturn(reltn);
    when(mgr.createQuery("SELECT tbd from TrustBundleDomainReltn tbd where tbd.domain  = ?1 " + " and tbd.trustBundle = ?2 ")).thenReturn(findReltnQeury);
    final TrustBundleDaoImpl dao = new TrustBundleDaoImpl();
    dao.setDomainDao(domainDao);
    dao.setEntityManager(mgr);
    final TrustBundleDaoImpl spyDao = spy(dao);
    try {
        spyDao.disassociateTrustBundleFromDomain(1234, 5678);
    } catch (ConfigurationStoreException e) {
        exceptionOccured = true;
    }
    assertTrue(exceptionOccured);
    verify(domainDao, times(1)).getDomain(new Long(1234));
    verify(spyDao, times(1)).getTrustBundleById(5678);
    verify(mgr, times(1)).remove((TrustBundleDomainReltn) any());
}
Also used : EntityManager(javax.persistence.EntityManager) Query(javax.persistence.Query) TrustBundleDaoImpl(org.nhindirect.config.store.dao.impl.TrustBundleDaoImpl) DomainDao(org.nhindirect.config.store.dao.DomainDao) Test(org.junit.Test)

Aggregations

DomainDao (org.nhindirect.config.store.dao.DomainDao)31 EntityManager (javax.persistence.EntityManager)20 Test (org.junit.Test)20 Query (javax.persistence.Query)14 CertPolicyDaoImpl (org.nhindirect.config.store.dao.impl.CertPolicyDaoImpl)10 TrustBundleDaoImpl (org.nhindirect.config.store.dao.impl.TrustBundleDaoImpl)10 Expectations (org.jmock.Expectations)9 DomainServiceImpl (org.nhindirect.config.service.impl.DomainServiceImpl)9 Domain (org.nhindirect.config.store.Domain)7 NoResultException (javax.persistence.NoResultException)4 ArrayList (java.util.ArrayList)2 Address (org.nhindirect.config.store.Address)2 Anchor (org.nhindirect.config.store.Anchor)2 CertPolicy (org.nhindirect.config.store.CertPolicy)2 CertPolicyGroup (org.nhindirect.config.store.CertPolicyGroup)2 Certificate (org.nhindirect.config.store.Certificate)2 DNSRecord (org.nhindirect.config.store.DNSRecord)2 EntityStatus (org.nhindirect.config.store.EntityStatus)2 Setting (org.nhindirect.config.store.Setting)2 TrustBundle (org.nhindirect.config.store.TrustBundle)2