Search in sources :

Example 6 with Address

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

the class SpringBaseTest method cleanDataStore.

protected void cleanDataStore() throws Exception {
    final ApplicationContext ctx = ConfigServiceRunner.getSpringApplicationContext();
    final AddressDao addressDao = (AddressDao) ctx.getBean("addressDaoImpl");
    final TrustBundleDao trustDao = (TrustBundleDao) ctx.getBean("trustBundleDao");
    final DomainDao domainDao = (DomainDao) ctx.getBean("domainDao");
    final AnchorDao anchorDao = (AnchorDao) ctx.getBean("anchorDao");
    final CertificateDao certDao = (CertificateDao) ctx.getBean("certificateDao");
    final DNSDao dnsDao = (DNSDao) ctx.getBean("DNSDaoImpl");
    final SettingDao settingDao = (SettingDao) ctx.getBean("settingDao");
    final CertPolicyDao policyDao = (CertPolicyDao) ctx.getBean("certPolicyDao");
    // clean anchors
    final List<Anchor> anchors = anchorDao.listAll();
    if (!anchors.isEmpty()) {
        final List<Long> anchorIds = new ArrayList<Long>();
        for (Anchor anchor : anchors) anchorIds.add(anchor.getId());
        anchorDao.delete(anchorIds);
    }
    // clean domains and the trust bundle domain relationships
    final List<Domain> domains = domainDao.listDomains(null, domainDao.count());
    if (domains != null) {
        for (Domain domain : domains) {
            Collection<Address> addresses = addressDao.getByDomain(domain, null);
            if (addresses != null) {
                for (Address address : addresses) {
                    addressDao.delete(address.getEmailAddress());
                }
            }
            trustDao.disassociateTrustBundlesFromDomain(domain.getId());
            domainDao.delete(domain.getId());
        }
    }
    assertEquals(0, domainDao.count());
    //clean trust bundles
    Collection<TrustBundle> bundles = trustDao.getTrustBundles();
    for (TrustBundle bundle : bundles) trustDao.deleteTrustBundles(new long[] { bundle.getId() });
    bundles = trustDao.getTrustBundles();
    assertEquals(0, bundles.size());
    // clean certificates
    final List<Certificate> certs = certDao.list((String) null);
    if (!certs.isEmpty()) {
        for (Certificate cert : certs) {
            certDao.delete(cert.getOwner());
        }
    }
    // clean DNS records
    final Collection<DNSRecord> records = dnsDao.get(Type.ANY);
    if (!records.isEmpty()) {
        for (DNSRecord record : records) dnsDao.remove(record.getId());
    }
    // clean settings
    final Collection<Setting> settings = settingDao.getAll();
    if (!settings.isEmpty()) {
        for (Setting setting : settings) settingDao.delete(Arrays.asList(setting.getName()));
    }
    // clean policies
    final Collection<CertPolicy> policies = policyDao.getPolicies();
    if (!policies.isEmpty()) {
        for (CertPolicy policy : policies) policyDao.deletePolicies(new long[] { policy.getId() });
    }
    // clean policy groups
    final Collection<CertPolicyGroup> groups = policyDao.getPolicyGroups();
    if (!groups.isEmpty()) {
        for (CertPolicyGroup group : groups) policyDao.deletePolicyGroups(new long[] { group.getId() });
    }
}
Also used : CertificateDao(org.nhindirect.config.store.dao.CertificateDao) Address(org.nhindirect.config.store.Address) ArrayList(java.util.ArrayList) TrustBundleDao(org.nhindirect.config.store.dao.TrustBundleDao) AnchorDao(org.nhindirect.config.store.dao.AnchorDao) ApplicationContext(org.springframework.context.ApplicationContext) SettingDao(org.nhindirect.config.store.dao.SettingDao) DomainDao(org.nhindirect.config.store.dao.DomainDao) TrustBundle(org.nhindirect.config.store.TrustBundle) AddressDao(org.nhindirect.config.store.dao.AddressDao) CertPolicyDao(org.nhindirect.config.store.dao.CertPolicyDao) DNSRecord(org.nhindirect.config.store.DNSRecord) Setting(org.nhindirect.config.store.Setting) DNSDao(org.nhindirect.config.store.dao.DNSDao) Anchor(org.nhindirect.config.store.Anchor) CertPolicy(org.nhindirect.config.store.CertPolicy) CertPolicyGroup(org.nhindirect.config.store.CertPolicyGroup) Domain(org.nhindirect.config.store.Domain) Certificate(org.nhindirect.config.store.Certificate)

Example 7 with Address

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

the class AddressServiceTest method testUpdateAddress.

/**
     * Test the updateAddress method.
     */
public void testUpdateAddress() {
    final AddressDao addressDao = context.mock(AddressDao.class);
    final Address address = new Address();
    context.checking(new Expectations() {

        {
        // TODO
        }
    });
    AddressServiceImpl service = new AddressServiceImpl();
    service.setDao(addressDao);
    try {
        service.updateAddress(address);
    } catch (Exception e) {
        fail("Exception thrown");
    }
}
Also used : Expectations(org.jmock.Expectations) AddressServiceImpl(org.nhindirect.config.service.impl.AddressServiceImpl) Address(org.nhindirect.config.store.Address) AddressDao(org.nhindirect.config.store.dao.AddressDao)

Example 8 with Address

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

the class AddressServiceTest method testAddAddress.

/**
     * Test the addAddress method.
     */
public void testAddAddress() {
    final AddressDao addressDao = context.mock(AddressDao.class);
    final Collection<Address> addresses = Arrays.asList(new Address(new Domain("healthdomain.com"), "beau@healthdomain.com"), new Address(new Domain("healthdomain2.com"), "beau@healthdomain2.com"));
    context.checking(new Expectations() {

        {
        // TODO
        }
    });
    AddressServiceImpl service = new AddressServiceImpl();
    service.setDao(addressDao);
    try {
        service.addAddress(addresses);
    } catch (Exception e) {
        fail("Exception thrown");
    }
}
Also used : Expectations(org.jmock.Expectations) AddressServiceImpl(org.nhindirect.config.service.impl.AddressServiceImpl) Address(org.nhindirect.config.store.Address) Domain(org.nhindirect.config.store.Domain) AddressDao(org.nhindirect.config.store.dao.AddressDao)

Example 9 with Address

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

the class ConfigurationServiceTest method testAddAddress.

/**
     * Test the addAddress method.
     */
public void testAddAddress() throws Exception {
    final AddressService addressService = context.mock(AddressService.class);
    final Collection<Address> collection = Arrays.asList(new Address(new Domain("domain"), "address"));
    context.checking(new Expectations() {

        {
            oneOf(addressService).addAddress(collection);
        }
    });
    ConfigurationServiceImpl service = new ConfigurationServiceImpl();
    service.setAddressSvc(addressService);
    try {
        service.addAddress(collection);
    } catch (Exception e) {
        fail("Exception thrown");
    }
}
Also used : Expectations(org.jmock.Expectations) Address(org.nhindirect.config.store.Address) Domain(org.nhindirect.config.store.Domain) ConfigurationServiceImpl(org.nhindirect.config.service.impl.ConfigurationServiceImpl)

Example 10 with Address

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

the class DomainDaoImpl method add.

/*
     * (non-Javadoc)
     * 
     * @see org.nhindirect.config.store.dao.DomainDao#add(org.nhindirect.config.store.Domain)
     */
@Transactional(readOnly = false)
public void add(Domain item) {
    if (log.isDebugEnabled())
        log.debug("Enter");
    if (item.getDomainName() == null || item.getDomainName().isEmpty())
        throw new ConfigurationStoreException("Domain name cannot be empty or null");
    // to work.
    if (item != null) {
        String pm = item.getPostMasterEmail();
        Long pmId = item.getPostmasterAddressId();
        Collection<Address> addresses = item.getAddresses();
        if ((pmId != null) && (pmId.longValue() == 0)) {
            item.setPostmasterAddressId((Long) null);
        }
        item.setAddresses(null);
        item.setCreateTime(Calendar.getInstance());
        item.setUpdateTime(item.getCreateTime());
        if (log.isDebugEnabled())
            log.debug("Calling JPA to persist the Domain");
        entityManager.persist(item);
        entityManager.flush();
        if (log.isDebugEnabled())
            log.debug("Persisted the bare Domain");
        boolean needUpdate = false;
        if ((addresses != null) && (addresses.size() > 0)) {
            item.setAddresses(addresses);
            needUpdate = true;
        }
        if ((pm != null) && (pm.length() > 0)) {
            item.setPostMasterEmail(pm);
            needUpdate = true;
        }
        if (needUpdate) {
            if (log.isDebugEnabled())
                log.debug("Updating the domain with Address info");
            update(item);
        }
        if (log.isDebugEnabled())
            log.debug("Returned from JPA: Domain ID=" + item.getId());
    }
    if (log.isDebugEnabled())
        log.debug("Exit");
}
Also used : Address(org.nhindirect.config.store.Address) ConfigurationStoreException(org.nhindirect.config.store.ConfigurationStoreException) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

Address (org.nhindirect.config.store.Address)12 Transactional (org.springframework.transaction.annotation.Transactional)6 Domain (org.nhindirect.config.store.Domain)5 ArrayList (java.util.ArrayList)4 Expectations (org.jmock.Expectations)4 AddressDao (org.nhindirect.config.store.dao.AddressDao)4 Query (javax.persistence.Query)3 List (java.util.List)2 AddressServiceImpl (org.nhindirect.config.service.impl.AddressServiceImpl)2 ConfigurationServiceImpl (org.nhindirect.config.service.impl.ConfigurationServiceImpl)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 Setting (org.nhindirect.config.store.Setting)2 TrustBundle (org.nhindirect.config.store.TrustBundle)2 AnchorDao (org.nhindirect.config.store.dao.AnchorDao)2 CertPolicyDao (org.nhindirect.config.store.dao.CertPolicyDao)2 CertificateDao (org.nhindirect.config.store.dao.CertificateDao)2