001/**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.location.web;
017
018import org.junit.Assert;
019import org.junit.Before;
020import org.junit.Test;
021import org.kuali.rice.kew.api.document.Document;
022import org.kuali.rice.kew.api.exception.WorkflowException;
023import org.kuali.rice.kns.service.KNSServiceLocator;
024import org.kuali.rice.krad.exception.ValidationException;
025import org.kuali.rice.krad.maintenance.MaintenanceDocument;
026import org.kuali.rice.krad.service.KRADServiceLocator;
027import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
028import org.kuali.rice.krad.util.KRADConstants;
029import org.kuali.rice.location.api.services.LocationApiServiceLocator;
030import org.kuali.rice.location.impl.country.CountryBo;
031import org.kuali.rice.location.impl.county.CountyBo;
032import org.kuali.rice.location.impl.state.StateBo;
033import org.kuali.rice.krad.test.BaseMaintenanceDocumentTest;
034
035import static org.junit.Assert.assertNotNull;
036
037/**
038 * Tests creating, editing, and savingn County maintenance doc
039 */
040public class CountyMaintenanceDocumentTest extends BaseMaintenanceDocumentTest {
041    /**
042     * Make sure we have a test country and state
043     */
044    @Before
045    public void insertTestCountryAndState() {
046        CountryBo country = new CountryBo();
047        country.setCode("CC");
048        country.setName("New Country");
049        country.setActive(true);
050        KNSServiceLocator.getBusinessObjectService().save(country);
051
052        StateBo state = new StateBo();
053        state.setCode("SS");
054        state.setCountryCode("CC");
055        state.setName("New State");
056        state.setActive(true);
057        KNSServiceLocator.getBusinessObjectService().save(state);
058    }
059
060    @Override
061    protected Object getNewMaintainableObject()  {
062        CountyBo county = new CountyBo();
063        county.setName("Tompkins");
064        county.setCode("TOMPKINS");
065        county.setCountryCode("US");
066        county.setStateCode("CA");
067        return county;
068    }
069
070    @Override
071    protected String getDocumentTypeName() {
072        return "CountyMaintenanceDocument";
073    }
074
075    @Override
076    protected String getInitiatorPrincipalName() {
077        return "quickstart";
078    }
079
080    @Override
081    protected Object getOldMaintainableObject() {
082        return getNewMaintainableObject();
083    }
084
085    @Test(expected = ValidationException.class)
086    /**
087     * test that a validation error occurs when a business object is missing required fields
088     */
089    public void test_MismatchedStateCountry() throws WorkflowException {
090        assertNotNull(LocationApiServiceLocator.getCountryService().getCountry("CC"));
091        assertNotNull(LocationApiServiceLocator.getStateService().getState("CC", "SS"));
092
093        CountyBo county = new CountyBo();
094        county.setName("Tompkins");
095        county.setCode("TOMPKINS");
096        county.setCountryCode("US");
097        // our test state is not in the US country
098        // by virtue of the country/state join on State reference
099        // and the State reference existence check
100        // this will yield a validation error
101        county.setStateCode("SS");
102
103        MaintenanceDocument document = getDocument();
104        document.getOldMaintainableObject().setDataObject(null);
105        document.getOldMaintainableObject().setDataObjectClass(county.getClass());
106        document.getNewMaintainableObject().setDataObject(county);
107        document.getNewMaintainableObject().setDataObjectClass(county.getClass());
108
109        document.getNewMaintainableObject().setMaintenanceAction(KRADConstants.MAINTENANCE_NEW_ACTION);
110
111        KRADServiceLocatorWeb.getDocumentService().routeDocument(getDocument(), "submit", null);
112        Assert.assertTrue("ValidationException should have been thrown instead of this assertion failure", getDocument().getDocumentHeader().getWorkflowDocument().isEnroute());
113    }
114}