Skip to content
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: add method for "run a scheduled pipeline immediately" #914

Merged
merged 5 commits into from
Mar 29, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/main/java/org/gitlab4j/api/PipelineApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,19 @@ public PipelineSchedule takeOwnershipPipelineSchedule(Object projectIdOrPath, Lo
return (response.readEntity(PipelineSchedule.class));
}

/**
* Trigger a new scheduled pipeline, which runs immediately.
*
* <pre><code>POST /projects/:id/pipeline_schedules/:pipeline_schedule_id/play</code></pre>
*
* @param projectIdOrPath projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
* @param pipelineScheduleId the pipelineSchedule instance id which should run immediately
* @throws GitLabApiException if any exception occurs during execution
*/
public void playPipelineSchedule(Object projectIdOrPath, Long pipelineScheduleId) throws GitLabApiException {
post(Response.Status.CREATED, "", "projects", getProjectIdOrPath(projectIdOrPath), "pipeline_schedules", pipelineScheduleId, "play");
}

/**
* Create a pipeline schedule variable.
*
Expand Down
20 changes: 20 additions & 0 deletions src/test/java/org/gitlab4j/api/TestPipelineApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,26 @@ public void testCreateAndUpdateProjectPipeLineSchedule() throws GitLabApiExcepti
assertTrue(scheduleDecriptions.contains(newScheduleDescription));
}

@Test
void testPlayScheduledPipeline() throws GitLabApiException {
assertNotNull(testProject);

String scheduleDescription = SCHEDULE_DESCRIPTION + " - test playScheduledPipeline()";
PipelineSchedule newPipelineSchedule = new PipelineSchedule();
newPipelineSchedule.setDescription(scheduleDescription);
newPipelineSchedule.setCron("3 4 * * *");
newPipelineSchedule.setRef("master");
PipelineSchedule createdPipelineSchedule = gitLabApi.getPipelineApi().createPipelineSchedule(testProject, newPipelineSchedule);
assertNotNull(createdPipelineSchedule);

// Make sure the created schedule is present before playing
List<PipelineSchedule> pipelineSchedules = gitLabApi.getPipelineApi().getPipelineSchedules(testProject);
assertNotNull(pipelineSchedules);
assertTrue(pipelineSchedules.stream().map(PipelineSchedule::getDescription).collect(toList()).contains(scheduleDescription));

gitLabApi.getPipelineApi().playPipelineSchedule(testProject, createdPipelineSchedule.getId());
}

@Test
public void testDeleteProjectPipeLineSchedule() throws GitLabApiException {

Expand Down