public HistoricBatch getHistoricBatch(Batch batch) { return engineRule .getHistoryService() .createHistoricBatchQuery() .batchId(batch.getId()) .singleResult(); }
public List<HistoricJobLog> getHistoricBatchJobLog(Batch batch) { return engineRule .getHistoryService() .createHistoricJobLogQuery() .jobDefinitionId(batch.getBatchJobDefinitionId()) .orderPartiallyByOccurrence() .asc() .list(); }
@Test public void testQueryNoAuthorizations() { // when authRule.enableAuthorization("user"); long count = engineRule.getHistoryService().createHistoricBatchQuery().count(); authRule.disableAuthorization(); // then Assert.assertEquals(0, count); }
@Before public void setUp() { processEngineConfiguration = engineRule.getProcessEngineConfiguration(); identityService = engineRule.getIdentityService(); caseService = engineRule.getCaseService(); historyService = engineRule.getHistoryService(); testRule.deployForTenant(TENANT_ONE, CMMN_MODEL); caseInstanceId = createCaseInstance(null); caseExecutionId = getCaseExecution().getId(); }
/** Remove all batches and historic batches. Usually called in {@link org.junit.After} method. */ public void removeAllRunningAndHistoricBatches() { HistoryService historyService = engineRule.getHistoryService(); ManagementService managementService = engineRule.getManagementService(); for (Batch batch : managementService.createBatchQuery().list()) { managementService.deleteBatch(batch.getId(), true); } // remove history of completed batches for (HistoricBatch historicBatch : historyService.createHistoricBatchQuery().list()) { historyService.deleteHistoricBatch(historicBatch.getId()); } }
@Test public void testQueryListAccessAll() { // given authRule.createGrantAuthorization(Resources.BATCH, "*", "user", Permissions.READ_HISTORY); // when authRule.enableAuthorization("user"); List<HistoricBatch> batches = engineRule.getHistoryService().createHistoricBatchQuery().list(); authRule.disableAuthorization(); // then Assert.assertEquals(2, batches.size()); }
@Test public void testQueryCount() { // given authRule.createGrantAuthorization( Resources.BATCH, batch1.getId(), "user", Permissions.READ_HISTORY); // when authRule.enableAuthorization("user"); long count = engineRule.getHistoryService().createHistoricBatchQuery().count(); authRule.disableAuthorization(); // then Assert.assertEquals(1, count); }
@Before public void setUp() { decisionService = engineRule.getDecisionService(); repositoryService = engineRule.getRepositoryService(); historyService = engineRule.getHistoryService(); identityService = engineRule.getIdentityService(); testRule.deployForTenant(TENANT_ONE, DISH_DRG_DMN); decisionService .evaluateDecisionByKey(DISH_DECISION) .decisionDefinitionTenantId(TENANT_ONE) .variables( Variables.createVariables().putValue(TEMPERATURE, 21).putValue(DAY_TYPE, WEEKEND)) .evaluate(); }