-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(engine): Populating process instance id in jobs #4334
base: master
Are you sure you want to change the base?
Changes from 5 commits
4e97dc1
af36f9b
bdde986
100fa5b
bd1c38d
c374253
3af25b9
d211061
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -169,6 +169,11 @@ protected void createJobEntities(BatchEntity batch, T configuration, String depl | |||||||||||||||||
ByteArrayEntity configurationEntity = saveConfiguration(byteArrayManager, jobConfiguration); | ||||||||||||||||||
|
||||||||||||||||||
JobEntity job = createBatchJob(batch, configurationEntity); | ||||||||||||||||||
|
||||||||||||||||||
if (jobConfiguration.getIds() != null && jobConfiguration.getIds().size() == 1) { | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Something like this will be required to avoid populating the ids for entities that are not process instance:
Suggested change
|
||||||||||||||||||
job.setProcessInstanceId(jobConfiguration.getIds().get(0)); | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
job.setDeploymentId(deploymentId); | ||||||||||||||||||
postProcessJob(configuration, job, jobConfiguration); | ||||||||||||||||||
jobManager.insertAndHintJobExecutor(job); | ||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ | |
import org.camunda.bpm.engine.batch.Batch; | ||
import org.camunda.bpm.engine.batch.history.HistoricBatch; | ||
import org.camunda.bpm.engine.delegate.ExecutionListener; | ||
import org.camunda.bpm.engine.history.HistoricJobLog; | ||
import org.camunda.bpm.engine.history.HistoricProcessInstanceQuery; | ||
import org.camunda.bpm.engine.impl.cfg.ProcessEngineConfigurationImpl; | ||
import org.camunda.bpm.engine.impl.cfg.multitenancy.TenantIdProvider; | ||
|
@@ -1150,6 +1151,35 @@ public void shouldSetExecutionStartTimeInBatchAndHistory() { | |
Assertions.assertThat(historicBatch.getExecutionStartTime()).isEqualToIgnoringMillis(TEST_DATE); | ||
} | ||
|
||
@Test | ||
public void shouldSetProcessInstanceAndDefinitionIdInHistoryJobLog() { | ||
// given | ||
|
||
ProcessDefinition processDefinition = testRule.deployAndGetDefinition(ProcessModels.TWO_TASKS_PROCESS); | ||
ProcessInstance processInstance = runtimeService.createProcessInstanceById(processDefinition.getId()) | ||
.startBeforeActivity("userTask1") | ||
.execute(); | ||
runtimeService.deleteProcessInstance(processInstance.getId(), "test"); | ||
Batch batch = runtimeService.restartProcessInstances(processDefinition.getId()) | ||
.startAfterActivity("userTask2") | ||
.processInstanceIds(processInstance.getId()) | ||
.executeAsync(); | ||
helper.executeSeedJob(batch); | ||
|
||
Job executionJob = helper.getExecutionJobs(batch).get(0); | ||
assertEquals(processInstance.getProcessDefinitionId(), executionJob.getProcessDefinitionId()); | ||
assertEquals(processInstance.getRootProcessInstanceId(), executionJob.getProcessInstanceId()); | ||
|
||
yanavasileva marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// when | ||
helper.executeJob(executionJob); | ||
|
||
// then | ||
HistoricJobLog jobLog = historyService.createHistoricJobLogQuery().jobDefinitionType(Batch.TYPE_PROCESS_INSTANCE_RESTART).list().get(0); | ||
|
||
assertEquals(processInstance.getProcessDefinitionId(), jobLog.getProcessDefinitionId()); | ||
assertEquals(processInstance.getRootProcessInstanceId(), jobLog.getProcessInstanceId()); | ||
Comment on lines
+1179
to
+1180
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ❌ The checks are performed for the historic job log, I would expect to check the jobs as well. |
||
} | ||
|
||
protected void assertBatchCreated(Batch batch, int processInstanceCount) { | ||
assertNotNull(batch); | ||
assertNotNull(batch.getId()); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ Not needed anymore: