/* * 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.butt; import static org.kuali.kfs.sys.fixture.UserNameFixture.parke; import static org.kuali.kfs.sys.fixture.UserNameFixture.rorenfro; import java.util.List; import org.kuali.kfs.module.purap.businessobject.ContractManagerAssignmentDetail; import org.kuali.kfs.module.purap.fixture.ContractManagerAssignmentDocumentFixture; import org.kuali.kfs.module.purap.fixture.RequisitionDocumentFixture; import org.kuali.kfs.sys.ConfigureContext; import org.kuali.kfs.sys.KFSConstants; import org.kuali.kfs.sys.context.KFSConfigurer; 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.document.DocumentStatus; 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; /** * Sets up documents optionally to be used by the following PurAp JMeter performance tests: * * purapComplexSearch.jmx (needs Closed RequisitionDocument) * purapPaymentRequestDocument.jmx (needs Open PurchaseOrderDocument) * * To run, change the value of SETUP_PERFORMANCE_TESTS to true. */ public class PurapPerformanceDocumentTest extends KualiTestBase { protected RequisitionDocument requisitionDocument = null; protected boolean SETUP_PERFORMANCE_TESTS = false; // Set to true locally to setup performance tests. protected DocumentService documentService = null; @Override protected void setUp() throws Exception { super.setUp(); documentService = SpringContext.getBean(DocumentService.class); } @Override protected void tearDown() throws Exception { requisitionDocument = null; super.tearDown(); } @ConfigureContext(session = parke, shouldCommitTransactions = true) public final void testFullRoutePerformanceDocuments() throws Exception { if( !SETUP_PERFORMANCE_TESTS ) { assertTrue(true); } else { requisitionDocument = RequisitionDocumentFixture.REQ_PERFORMANCE.createRequisitionDocument(); requisitionDocument.getDocumentHeader().setDocumentDescription("Load Testing"); final String docId = requisitionDocument.getDocumentNumber(); AccountingDocumentTestUtils.routeDocument(requisitionDocument, documentService); WorkflowTestUtils.waitForNodeChange(requisitionDocument.getDocumentHeader().getWorkflowDocument(), KFSConstants.RouteLevelNames.ACCOUNT); changeCurrentUser(rorenfro); //Approving as Fiscal Officer. requisitionDocument = (RequisitionDocument)documentService.getByDocumentHeaderId(docId); assertTrue("At incorrect node.", WorkflowTestUtils.isAtNode(requisitionDocument, KFSConstants.RouteLevelNames.ACCOUNT)); assertTrue("Document should be enroute.", requisitionDocument.getDocumentHeader().getWorkflowDocument().isEnroute()); assertTrue("Fiscal Officer should have an approve request.", requisitionDocument.getDocumentHeader().getWorkflowDocument().isApprovalRequested()); SpringContext.getBean(DocumentService.class).approveDocument(requisitionDocument, "Test approving as Fiscal Officer.", null); WorkflowTestUtils.waitForDocumentApproval(requisitionDocument.getDocumentNumber()); changeCurrentUser(parke); //Switch back to original User. requisitionDocument = (RequisitionDocument)documentService.getByDocumentHeaderId(docId); assertTrue("Document should now be final.", requisitionDocument.getDocumentHeader().getWorkflowDocument().isFinal()); ContractManagerAssignmentDocument cmaDocument = buildContractManagerAssignmentDocument(); cmaDocument.prepareForSave(); assertFalse(DocumentStatus.ENROUTE.equals(cmaDocument.getDocumentHeader().getWorkflowDocument().getStatus())); routeDocument(cmaDocument, "saving copy source document", documentService); WorkflowTestUtils.waitForDocumentApproval(cmaDocument.getDocumentNumber()); cmaDocument = (ContractManagerAssignmentDocument)documentService.getByDocumentHeaderId(cmaDocument.getDocumentNumber()); assertTrue("Document should now be final.", cmaDocument.getDocumentHeader().getWorkflowDocument().isFinal()); String poNumber = requisitionDocument.getRelatedViews().getRelatedPurchaseOrderViews().get(0).getDocumentNumber(); PurchaseOrderDocument poDoc = (PurchaseOrderDocument) documentService.getByDocumentHeaderId(poNumber); poDoc.setVendorName("KUALI UNIVERSITY"); poDoc.setVendorHeaderGeneratedIdentifier(1001); poDoc.setVendorDetailAssignedIdentifier(0); poDoc.setVendorLine1Address("341 PINE TREE RD"); poDoc.setVendorCityName("ITHACA"); poDoc.setVendorStateCode("NY"); poDoc.setVendorPostalCode("14850"); poDoc.setVendorCountryCode("US"); poDoc.setVendorPaymentTermsCode("00N30"); poDoc.setPurchaseOrderVendorChoiceCode("ONLY"); routeDocument(poDoc, "Test routing as parke", documentService); changeCurrentUser(butt); //Approving at the Budget Level poDoc = (PurchaseOrderDocument)documentService.getByDocumentHeaderId(poNumber); assertTrue("Document should be enroute.", poDoc.getDocumentHeader().getWorkflowDocument().isEnroute()); assertTrue("Budget Approver should have an approve request.", poDoc.getDocumentHeader().getWorkflowDocument().isApprovalRequested()); SpringContext.getBean(DocumentService.class).approveDocument(poDoc, "Test approving as Budget Approver.", null); WorkflowTestUtils.waitForDocumentApproval(poDoc.getDocumentNumber()); changeCurrentUser(parke); //Switch back to original User. poDoc = (PurchaseOrderDocument)documentService.getByDocumentHeaderId(poNumber); assertTrue("Document should now be final.", poDoc.getDocumentHeader().getWorkflowDocument().isFinal()); } } private ContractManagerAssignmentDocument buildContractManagerAssignmentDocument() throws Exception { ContractManagerAssignmentDocument cmaDocument = null; List<ContractManagerAssignmentDetail> details = ContractManagerAssignmentDocumentFixture.ACM_DOCUMENT_PERFORMANCE.getContractManagerAssignmentDetails(); for (ContractManagerAssignmentDetail detail : details) { detail.setRequisitionIdentifier(requisitionDocument.getPurapDocumentIdentifier()); detail.refreshNonUpdateableReferences(); } cmaDocument = ContractManagerAssignmentDocumentFixture.ACM_DOCUMENT_PERFORMANCE.createContractManagerAssignmentDocument(); for (ContractManagerAssignmentDetail detail : details) { detail.setContractManagerAssignmentDocument(cmaDocument); } cmaDocument.setContractManagerAssignmentDetailss(details); return cmaDocument; } private void routeDocument(Document document, String annotation, DocumentService documentService) throws WorkflowException { try { documentService.routeDocument(document, annotation, null); } catch (ValidationException e) { // If the business rule evaluation fails then give us more info for debugging this test. fail(e.getMessage() + ", " + GlobalVariables.getMessageMap()); } } }