Updated things for compound testing
This commit is contained in:
parent
4e6732c09b
commit
5c3f865604
16 changed files with 160 additions and 56 deletions
|
@ -12,6 +12,11 @@ export default class Initiator {
|
|||
this.onLog = options.onLog ?? ((d) => console.log(`job: ${d}`));
|
||||
this.onClose = options.onClose ?? (() => {});
|
||||
this.onCreate = options.onCreate ?? ((id) => console.log(`job id: ${id}`));
|
||||
this.onPipelineClose =
|
||||
options.onPipelineClose ??
|
||||
(() => {
|
||||
console.log("job pipeline closed");
|
||||
});
|
||||
}
|
||||
|
||||
async newJob(jobRequest, onLog, onClose, onCreate) {
|
||||
|
@ -31,4 +36,58 @@ export default class Initiator {
|
|||
})
|
||||
);
|
||||
}
|
||||
|
||||
async newPipelineJob(
|
||||
jobRequest,
|
||||
onLog,
|
||||
onClose,
|
||||
onCreate,
|
||||
onPipelineTrigger,
|
||||
onPipelineClose
|
||||
) {
|
||||
const mgr = new Manager(this.url, {
|
||||
query: { mode: this.mode, job: JSON.stringify(jobRequest) },
|
||||
});
|
||||
onLog = onLog ?? this.onLog.bind(this);
|
||||
onClose = onClose ?? this.onClose.bind(this);
|
||||
onCreate = onCreate ?? this.onCreate.bind(this);
|
||||
onPipelineTrigger =
|
||||
onPipelineTrigger ??
|
||||
((trigger) => {
|
||||
console.log("job trg:", trigger);
|
||||
const testName = trigger.pipelineTriggers;
|
||||
const pipelineData = trigger.pipelineData;
|
||||
const pipelineTriggers = trigger.newPipelineTriggers;
|
||||
const jobReq = {
|
||||
...jobRequest,
|
||||
testName,
|
||||
pipelineData,
|
||||
pipelineTriggers,
|
||||
};
|
||||
setTimeout(
|
||||
() =>
|
||||
this.newPipelineJob(
|
||||
jobReq,
|
||||
onLog,
|
||||
onClose,
|
||||
onCreate,
|
||||
onPipelineTrigger,
|
||||
onPipelineClose
|
||||
),
|
||||
trigger.pipelineDelay
|
||||
);
|
||||
});
|
||||
onPipelineClose = onPipelineClose ?? this.onPipelineClose.bind(this);
|
||||
const sk = mgr.socket("/");
|
||||
sk.on(events.JOB_LOG, onLog);
|
||||
sk.on(events.JOB_CLS, onClose);
|
||||
sk.on(events.PPL_TRG, onPipelineTrigger);
|
||||
sk.on(events.PPL_CLS, onPipelineClose);
|
||||
return new Promise((res) =>
|
||||
sk.on(events.JOB_CRT, function onJobCreate(id) {
|
||||
onCreate(id);
|
||||
res({ ...jobRequest, id });
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue