use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.
the class CertPolicyDaoImpl_disassociatePolicyGroupFromDomainTest method testDisassociatePolicyGroupFromDomain_unknownErrorInRemove_assertException.
@Test
public void testDisassociatePolicyGroupFromDomain_unknownErrorInRemove_assertException() {
boolean exceptionOccured = false;
final EntityManager mgr = mock(EntityManager.class);
doThrow(new RuntimeException("Just Passing Through")).when(mgr).remove((CertPolicyGroupDomainReltn) any());
final Domain domain = mock(Domain.class);
final DomainDao domainDao = mock(DomainDao.class);
when(domainDao.getDomain(new Long(1234))).thenReturn(domain);
final CertPolicyGroup group = mock(CertPolicyGroup.class);
final Query query = mock(Query.class);
when(query.getSingleResult()).thenReturn(group);
when(mgr.createQuery("SELECT cpg from CertPolicyGroup cpg WHERE cpg.id = ?1")).thenReturn(query);
final CertPolicyGroupDomainReltn reltn = mock(CertPolicyGroupDomainReltn.class);
final Query findReltnQeury = mock(Query.class);
when(findReltnQeury.getSingleResult()).thenReturn(reltn);
when(mgr.createQuery("SELECT cpr from CertPolicyGroupDomainReltn cpr where cpr.domain = ?1 " + " and cpr.certPolicyGroup = ?2 ")).thenReturn(findReltnQeury);
final CertPolicyDaoImpl dao = new CertPolicyDaoImpl();
dao.setDomainDao(domainDao);
dao.setEntityManager(mgr);
final CertPolicyDaoImpl spyDao = spy(dao);
try {
spyDao.disassociatePolicyGroupFromDomain(1234, 5678);
} catch (ConfigurationStoreException e) {
exceptionOccured = true;
}
assertTrue(exceptionOccured);
verify(domainDao, times(1)).getDomain(1234L);
verify(spyDao, times(1)).getPolicyGroupById(5678);
verify(mgr, times(1)).remove((CertPolicyGroupDomainReltn) any());
}
use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.
the class CertPolicyDaoImpl_disassociatePolicyGroupsFromDomainTest method testDisassociatePolicyGroupsFromDomain_unknownErrorInRemove_assertException.
@Test
public void testDisassociatePolicyGroupsFromDomain_unknownErrorInRemove_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 Query deleteQuery = mock(Query.class);
doThrow(new RuntimeException("Just Passing Through")).when(deleteQuery).executeUpdate();
when(mgr.createQuery("DELETE from CertPolicyGroupDomainReltn cpr where cpr.domain = ?1")).thenReturn(deleteQuery);
final CertPolicyDaoImpl dao = new CertPolicyDaoImpl();
dao.setDomainDao(domainDao);
dao.setEntityManager(mgr);
final CertPolicyDaoImpl spyDao = spy(dao);
try {
spyDao.disassociatePolicyGroupsFromDomain(1234);
} catch (ConfigurationStoreException e) {
exceptionOccured = true;
}
assertTrue(exceptionOccured);
verify(domainDao, times(1)).getDomain(new Long(1234));
verify(deleteQuery, times(1)).executeUpdate();
}
use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.
the class TrustBundleDaoImpl_associateTrustBundleToDomainTest method testAssociateTrustBundleToDomain_unknownDomain_assertException.
@Test
public void testAssociateTrustBundleToDomain_unknownDomain_assertException() {
boolean exceptionOccured = false;
final EntityManager mgr = mock(EntityManager.class);
final DomainDao domainDao = mock(DomainDao.class);
final TrustBundleDaoImpl dao = new TrustBundleDaoImpl();
dao.setDomainDao(domainDao);
dao.setEntityManager(mgr);
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, never()).getTrustBundleById(5678);
}
use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.
the class TrustBundleDaoImpl_disassociateTrustBundleFromDomainTest method testDisassociateTrustBundleFromDomain_unknownDomain_assertException.
@Test
public void testDisassociateTrustBundleFromDomain_unknownDomain_assertException() {
boolean exceptionOccured = false;
final EntityManager mgr = mock(EntityManager.class);
final DomainDao domainDao = mock(DomainDao.class);
final TrustBundleDaoImpl dao = new TrustBundleDaoImpl();
dao.setDomainDao(domainDao);
dao.setEntityManager(mgr);
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, never()).getTrustBundleById(5678);
}
use of org.nhindirect.config.store.dao.DomainDao in project nhin-d by DirectProject.
the class TrustBundleDaoImpl_disassociateTrustBundleFromDomainsTest method testDisassociateTrustBundleFromDomains_unknownErrorInRemove_assertException.
@Test
public void testDisassociateTrustBundleFromDomains_unknownErrorInRemove_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 Query deleteQuery = mock(Query.class);
doThrow(new RuntimeException("Just Passing Through")).when(deleteQuery).executeUpdate();
when(mgr.createQuery("DELETE from TrustBundleDomainReltn tbd where tbd.trustBundle = ?1")).thenReturn(deleteQuery);
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.disassociateTrustBundleFromDomains(1234);
} catch (ConfigurationStoreException e) {
exceptionOccured = true;
}
assertTrue(exceptionOccured);
verify(query, times(1)).getSingleResult();
verify(deleteQuery, times(1)).executeUpdate();
}
Aggregations