/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.module.purap.document; import static org.kuali.kfs.sys.fixture.UserNameFixture.parke; import org.kuali.kfs.module.purap.fixture.BulkReceivingDocumentFixture; import org.kuali.kfs.module.purap.fixture.PurchaseOrderDocumentFixture; import org.kuali.kfs.sys.ConfigureContext; import org.kuali.kfs.sys.context.KualiTestBase; import org.kuali.kfs.sys.context.SpringContext; import org.kuali.kfs.sys.document.AccountingDocumentTestUtils; import org.kuali.kfs.sys.document.workflow.WorkflowTestUtils; import org.kuali.rice.kew.api.exception.WorkflowException; import org.kuali.rice.krad.document.Document; import org.kuali.rice.krad.exception.ValidationException; import org.kuali.rice.krad.service.DocumentService; import org.kuali.rice.krad.util.GlobalVariables; public class BulkReceivingDocumentTest extends KualiTestBase { @Override protected void setUp() throws Exception { super.setUp(); } @Override protected void tearDown() throws Exception { super.tearDown(); } @ConfigureContext(session = parke,shouldCommitTransactions=true) public final void testRouteDocument() throws Exception { BulkReceivingDocument doc = BulkReceivingDocumentFixture.SIMPLE_DOCUMENT.createBulkReceivingDocument(); doc.prepareForSave(); DocumentService documentService = SpringContext.getBean(DocumentService.class); routeDocument(doc, "routing bulk receiving document", documentService); WorkflowTestUtils.waitForDocumentApproval(doc.getDocumentNumber()); Document document = documentService.getByDocumentHeaderId(doc.getDocumentNumber()); assertTrue("Document should now be final.", doc.getDocumentHeader().getWorkflowDocument().isFinal()); } @ConfigureContext(session = parke, shouldCommitTransactions=true) public final void testRouteDocumentWithPO() throws Exception { PurchaseOrderDocument po = PurchaseOrderDocumentFixture.PO_ONLY_REQUIRED_FIELDS.createPurchaseOrderDocument(); DocumentService documentService = SpringContext.getBean(DocumentService.class); po.prepareForSave(); AccountingDocumentTestUtils.routeDocument(po, "saving copy source document", null, documentService); WorkflowTestUtils.waitForDocumentApproval(po.getDocumentNumber()); PurchaseOrderDocument poResult = (PurchaseOrderDocument) documentService.getByDocumentHeaderId(po.getDocumentNumber()); BulkReceivingDocument doc = BulkReceivingDocumentFixture.SIMPLE_DOCUMENT_FOR_PO.createBulkReceivingDocument(po); doc.prepareForSave(); routeDocument(doc, "routing bulk receiving document", documentService); WorkflowTestUtils.waitForDocumentApproval(doc.getDocumentNumber()); Document document = documentService.getByDocumentHeaderId(doc.getDocumentNumber()); assertTrue("Document should now be final.", doc.getDocumentHeader().getWorkflowDocument().isFinal()); } private void routeDocument(Document document, String annotation, DocumentService documentService) throws WorkflowException { try { documentService.routeDocument(document, annotation, null); } catch (ValidationException e) { e.printStackTrace(); // If the business rule evaluation fails then give us more info for debugging this test. fail(e.getMessage() + ", " + GlobalVariables.getMessageMap()); } } }