Abhiram Gundala
Abhiram Gundala
In addition to previous changes associated, Migrated tests within IntermediateEventTest.java The test can be identified by referring to IntermediateEventTest.java: https://github.com/apache/incubator-kie-kogito-runtimes/blob/main/jbpm/jbpm-tests/src/test/java/org/jbpm/bpmn2/IntermediateEventTest.java Closes https://github.com/apache/incubator-kie-issues/issues/1131.
In addition to previous changes associated, Migrated tests within StandaloneBPMNProcessTest.java- 2 The test can be identified by referring to StandaloneBPMNProcessTest.java: https://github.com/apache/incubator-kie-kogito-runtimes/blob/main/jbpm/jbpm-tests/src/test/java/org/jbpm/bpmn2/StandaloneBPMNProcessTest.java Closes https://github.com/apache/incubator-kie-issues/issues/1131. **Note:** Considering **"testLane"** ``` public void testLane()...
Added getBusinessCalendar method to the ProcessConfig and wired it in AbstractProcessConfig Modified BusinessCalendarImpl to make the actual BusinessCalendarImpl load the content of calendar.properties file in resources. Modified the ProcessConfig templates...
Many thanks for submitting your Pull Request :heart:! Closes/Fixes/Resolves #ISSUE-NUMBER **Description:** Please make sure that your PR meets the following requirements: - [ ] You have read the [contributors guide](CONTRIBUTING.md)...
Few tests within jbpm-tests are disabled as on-exit is not supported. Check if they can be enabled and converted. Reference issue link: https://issues.redhat.com/browse/KOGITO-2067 Below are the tests: (https://github.com/apache/incubator-kie-kogito-runtimes/tree/main/jbpm/jbpm-tests/src/test/java/org/jbpm/bpmn2) Below tests...
Below are the migrated tests in IntermediateEventTest.java and SLAComplianceTest.java. **They pass if the test is run inividually but fail when whole class is run.** Tried to resolve using @after and...
Migrated below tests 1. ErrorEventTest - testErrorBoundaryEvent 2. Flow Test - testMultiInstanceLoopCharacteristicsProcessWithORGateway The test can be identified by referring to EscalationEventTest.java and FlowTest,java https://github.com/apache/incubator-kie-kogito-runtimes/blob/main/jbpm/jbpm-tests/src/test/java/org/jbpm/bpmn2/EscalationEventTest.java Closes https://github.com/apache/incubator-kie-issues/issues/1131.
Migrated testErrorBetweenProcessesProcess within ActivityTest.java based on the changes suggested as below, ``` Application app = ProcessTestHelper.newApplication(); ProcessTestHelper.registerProcessEventListener(app, new DefaultKogitoProcessEventListener() { @Override public void afterProcessCompleted(ProcessCompletedEvent event) { if ("ErrorsBetweenSubProcess".equals(event.getProcessInstance().getProcessId())) { assertThat(event.getProcessInstance().getState()).isEqualTo(ProcessInstance.STATE_ABORTED);...
Below are the tests with issues, commented the same for each test. **1. CompensationTest** - **compensationInSubSubProcesses** It appears there are a few nodes that are missing outbound or inbound connections....
Below are the tests with issues, commented the same for each test. 1. IntermediateEventTest - For tests, testIntermediateCatchEventCondition, testIntermediateCatchEventConditionFilterByProcessInstance, testConditionalBoundaryEventOnTaskComplete, testConditionalBoundaryEventInterrupting for the tests with getKieSession, How to add the...