View Javadoc

1   /**
2    * Copyright 2005-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.student.krms;
17  
18  import org.junit.Before;
19  import org.junit.Ignore;
20  import org.junit.Test;
21  import org.kuali.rice.core.api.lifecycle.Lifecycle;
22  import org.kuali.rice.core.framework.resourceloader.SpringResourceLoader;
23  import org.kuali.rice.krad.service.BusinessObjectService;
24  import org.kuali.rice.krad.service.KRADServiceLocator;
25  import org.kuali.rice.krms.api.KrmsApiServiceLocator;
26  import org.kuali.rice.krms.api.engine.*;
27  import org.kuali.rice.krms.api.repository.agenda.AgendaDefinition;
28  import org.kuali.rice.krms.api.repository.context.ContextDefinition;
29  import org.kuali.rice.krms.api.repository.term.TermDefinition;
30  import org.kuali.rice.krms.api.repository.type.KrmsTypeRepositoryService;
31  import org.kuali.rice.krms.framework.engine.BasicRule;
32  import org.kuali.rice.krms.framework.type.ValidationActionTypeService;
33  import org.kuali.rice.krms.impl.repository.*;
34  import org.kuali.rice.test.BaselineTestCase.BaselineMode;
35  import org.kuali.rice.test.BaselineTestCase.Mode;
36  
37  import javax.xml.namespace.QName;
38  import java.util.HashMap;
39  import java.util.List;
40  import java.util.Map;
41  
42  import static junit.framework.Assert.assertNotNull;
43  
44  @Ignore
45  public class TestKRMSAgendasExecution extends KSKRMSTestCase {
46  
47  	public TestKRMSAgendasExecution() {
48  		super();
49  		this.setClearTables(false);
50  	}
51  
52  	static final String KSNAMESPACE = "KR-RULE-TEST";
53  	protected ContextBoService contextRepository;
54  	protected KrmsTypeRepositoryService krmsTypeRepository;
55  	private AgendaBoService agendaBoService;
56  	private RuleBoService ruleBoService;
57  	private FunctionBoServiceImpl functionBoService;
58  
59  	// Services needed for creation:
60  	private TermBoService termBoService;
61  	private SpringResourceLoader krmsTestResourceLoader;
62  
63  
64  	@Before
65  	public void setup() {
66  		getLoadApplicationLifecycle();
67  		termBoService = KrmsRepositoryServiceLocator.getTermBoService();
68  		agendaBoService = KrmsRepositoryServiceLocator.getAgendaBoService();
69  		contextRepository = KrmsRepositoryServiceLocator.getContextBoService();
70  		ruleBoService = KrmsRepositoryServiceLocator.getRuleBoService();
71  		krmsTypeRepository = KrmsRepositoryServiceLocator
72  				.getKrmsTypeRepositoryService();
73  		functionBoService = KrmsRepositoryServiceLocator
74  				.getBean("functionRepositoryService");
75  
76  	}
77  
78  	@Override
79  	protected List<String> getPerTestTablesNotToClear() {
80  		List<String> tablesNotToClear = super.getPerTestTablesNotToClear();
81  		// tablesNotToClear.add("KRMS_.*");
82  		return tablesNotToClear;
83  	}
84  
85  	@Override
86  	protected Lifecycle getLoadApplicationLifecycle() {
87  		if (krmsTestResourceLoader == null) {
88  			krmsTestResourceLoader = new SpringResourceLoader(new QName(
89  					"KRMSTestHarnessApplicationResourceLoader"),
90  					"classpath:KRMSTestHarnessSpringBeans.xml", null);
91  			krmsTestResourceLoader
92  					.setParentSpringResourceLoader(getTestHarnessSpringResourceLoader());
93  			getTestHarnessSpringResourceLoader().addResourceLoader(
94  					krmsTestResourceLoader);
95  		}
96  		return krmsTestResourceLoader;
97  	}
98  
99  	public TermDefinition krmsTermLookup(String termName) {
100 		// this may be called more than once, we only want to create one though
101 		Map<String, String> queryArgs = new HashMap<String, String>();
102 		queryArgs.put("desc_txt", termName);
103 		TermBo termBo = getBoService()
104 				.findByPrimaryKey(TermBo.class, queryArgs);
105 		if (termBo != null) {
106 			return TermBo.to(termBo);
107 		}
108 		return null;
109 	}
110 
111 	protected BusinessObjectService getBoService() {
112 		return KRADServiceLocator.getBusinessObjectService();
113 	}
114 	
115 	@Test
116 	public void testHello() {
117 			System.out.println("Test hello");
118 	}
119 	
120 	@Test
121 	public void testAllRulesKSAgenda() {
122 
123 //		Rule rule1 = new BasicRule("r1", trueProp, Collections.<Action>singletonList(new ActionMock("a1")));
124 //		Rule rule2 = new BasicRule("r2", falseProp, Collections.<Action>singletonList(new ActionMock("a2")));
125 //		Rule rule3 = new BasicRule("r3", trueProp, Collections.<Action>singletonList(new ActionMock("a3")));
126 		
127 //		AgendaTreeEntry entry1 = new BasicAgendaTreeEntry(rule1);
128 //		AgendaTreeEntry entry2 = new BasicAgendaTreeEntry(rule2);
129 //		AgendaTreeEntry entry3 = new BasicAgendaTreeEntry(rule3);
130 //		BasicAgendaTree agendaTree = new BasicAgendaTree(entry1, entry2, entry3);
131 		
132 		ContextDefinition contextDef = getKRMSContext(KSKRMSConstants.CONTEXT_STUD_ELIGIBILITY);
133 		AgendaDefinition adgendaDef = getKRMSAgenda(KSKRMSConstants.AGENDA1, contextDef);
134 		assertNotNull(contextDef);
135 		assertNotNull(adgendaDef);
136 //		Agenda agenda = new BasicAgenda(Collections.singletonMap(AgendaDefinition.Constants.EVENT, "test"), agendaTree);
137 		
138 //		execute(agenda);
139 
140 //		assertTrue(ActionMock.actionFired("a1"));
141 //		assertFalse(ActionMock.actionFired("a2"));
142 //		assertTrue(ActionMock.actionFired("a3"));
143 	}
144 	
145 	public AgendaDefinition getKRMSAgenda(String agendaName, ContextDefinition contextDef) {
146 		AgendaDefinition agendaDef = agendaBoService
147 				.getAgendaByNameAndContextId(agendaName,
148 						contextDef.getId());
149 		return agendaDef;
150 	}
151 
152 	public ContextDefinition getKRMSContext(String context) {
153 		return contextRepository.getContextByNameAndNamespace(
154 				context, KSKRMSConstants.KSNAMESPACE);
155 	}
156 	
157 	//
158     public void populateContextQualifiers(Map<String, String> qualifiers) {
159         qualifiers.put("namespaceCode", KSKRMSConstants.KSNAMESPACE);
160         qualifiers.put("name", KSKRMSConstants.CONTEXT_STUD_ELIGIBILITY);
161     }
162     
163     public void populateAgendaQualifiers(Map<String,String> agendaQualifiers) {
164     	agendaQualifiers.put("name", KSKRMSConstants.AGENDA1);  // specify a single agenda by name
165 	}
166     
167     public void addFacts(Facts.Builder factsBuilder) {
168 //        AwardFactBuilderService fbService = KraServiceLocator.getService(AwardFactBuilderService.class);
169 //        fbService.addFacts(factsBuilder, this);
170     }
171 	//
172     
173     @Test
174 	public void loadAndisRuleValid() {
175 //		KrmsRulesContext rulesContext;
176         // TODO : this cached map should only be set up if it is empty
177         Map <String, Boolean> ruleResults = new HashMap<String, Boolean>();
178         
179         // TODO : may need a ruleid -> name map
180         Map<String, String> contextQualifiers = new HashMap<String, String>();
181         populateContextQualifiers(contextQualifiers);
182 
183         Map<String,String> agendaQualifiers = new HashMap<String,String>();
184         // TODO : "name" qualifier should be working after 2.1.  currently, there is a bug.
185         // TODO : may create a kcrulecontext which will extend krmsrulecontext.   the kcrulecontexgt can have 'getnamespace'
186         String namespace = null;
187         String contextKey = null;
188 //        if (rulesContext instanceof ProposalDevelopmentDocument) {
189 //            namespace = Constants.MODULE_NAMESPACE_PROPOSAL_DEVELOPMENT;
190 //            contextKey = ((ProposalDevelopmentDocument)rulesContext).getDevelopmentProposal().getProposalNumber()+"-0";
191 //        } else {
192 //            namespace = Constants.MODULE_NAMESPACE_PROTOCOL;
193 //            contextKey = ((ProtocolDocument)rulesContext).getProtocol().getProtocolNumber()+"-"+((ProtocolDocument)rulesContext).getProtocol().getSequenceNumber();
194 //        }
195 //        agendaQualifiers.put("name", getAgendaName(Constants.MODULE_NAMESPACE_PROPOSAL_DEVELOPMENT));  // specify a single agenda by name
196 //        populateAgendaQualifiers(agendaQualifiers);
197        
198         SelectionCriteria selectionCriteria = SelectionCriteria.createCriteria(null, contextQualifiers, agendaQualifiers);
199 
200         Facts.Builder factsBuilder = Facts.Builder.create();
201         // not sure about this addfacts.  there are many  
202         addFacts(factsBuilder);
203 
204         ExecutionOptions xOptions = new ExecutionOptions();
205         xOptions.setFlag(ExecutionFlag.LOG_EXECUTION, true);
206 
207         EngineResults results = KrmsApiServiceLocator.getEngine().execute(selectionCriteria, factsBuilder.build(), xOptions);
208         
209         String errors = (String) results.getAttribute(ValidationActionTypeService.VALIDATIONS_ACTION_ATTRIBUTE);
210         boolean isValid = false;
211         if (results.getResultsOfType(ResultEvent.RULE_EVALUATED) != null && results.getResultsOfType(ResultEvent.RULE_EVALUATED).size() > 0) {
212 //            String ruleName = KrmsApiServiceLocator.getRuleRepositoryService().getRule(ruleId).getName();  
213             for (ResultEvent resultEvent : results.getResultsOfType(ResultEvent.RULE_EVALUATED)) {
214                 ruleResults.put(((BasicRule)resultEvent.getSource()).getName(), resultEvent.getResult());
215                 System.out.println(resultEvent.getDescription() + ' ' + resultEvent.getResult());
216 //                if (StringUtils.equals(ruleName, ((BasicRule)resultEvent.getSource()).getName())) {
217 //                    isValid = resultEvent.getResult();
218 //                }
219             }
220 //            ResultEvent resultEvent = results.getResultsOfType(ResultEvent.RULE_EVALUATED).get(0);
221 //            // can't access 'proposition of basicrule
222 //            // ((BasicRule)resultEvent.getSource()).
223 //            isValid = results.getResultsOfType(ResultEvent.RULE_EVALUATED).get(0).getResult();
224         }
225 //        if (StringUtils.isBlank(errors)) {
226             
227 //            String[] errorArray = StringUtils.split(errors, ",");
228 //            return Arrays.asList(errorArray);
229 //        }
230 //        return StringUtils.isNotBlank(errors);
231         // use session to cache the evaluation results for now
232 //        GlobalVariables.getUserSession().addObject(namespace + "-" + contextKey + "-ruleresults", ruleResults);
233 //        GlobalVariables.getUserSession().addObject(namespace + "-" + contextKey + "-rulereferenced", new HashMap<String, Boolean>());
234 //        return isValid;
235     }
236 }