Skip to content

Commit

Permalink
[JENKINS-26399] JenkinsRuleExt.waitForCompletion/Message
Browse files Browse the repository at this point in the history
Originally-Committed-As: fac5ce62db53f18cabb2347f0bb6ae9e3f3ea1f9
  • Loading branch information
jglick committed Mar 18, 2015
1 parent 2872ce3 commit 301f436
Showing 1 changed file with 6 additions and 12 deletions.
Expand Up @@ -27,6 +27,7 @@
import java.util.List;
import org.jenkinsci.plugins.scriptsecurity.scripts.ScriptApproval;
import org.jenkinsci.plugins.workflow.BuildWatcher;
import org.jenkinsci.plugins.workflow.JenkinsRuleExt;
import org.junit.ClassRule;
import org.jvnet.hudson.test.FailureBuilder;
import org.jvnet.hudson.test.Issue;
Expand Down Expand Up @@ -119,11 +120,7 @@ public void abortBuild() throws Exception {
}
fb.getExecutor().interrupt();

while (fb.isBuilding()) {
Thread.sleep(100);
}

assertEquals(Result.ABORTED, fb.getResult());
j.assertBuildStatus(Result.ABORTED, JenkinsRuleExt.waitForCompletion(fb));
j.assertBuildStatus(Result.FAILURE,q.get());
}

Expand Down Expand Up @@ -175,13 +172,10 @@ public void cancelBuildQueue() throws Exception {
// Should be the same as, e.g., GerritTrigger.RunningJobs.cancelJob, which calls Executor.interrupt directly.
// (Not if the Executor.currentExecutable is an AfterRestartTask.Body, though in that case probably the FreeStyleBuild would have been killed by restart anyway!)
usb.doStop();
while (usb.isBuilding() || ds1b.isBuilding() || ds2b.isBuilding() || ds3b.isBuilding()) {
Thread.sleep(100);
}
assertEquals(Result.ABORTED, usb.getResult());
assertEquals(Result.ABORTED, ds1b.getResult());
assertEquals(Result.ABORTED, ds2b.getResult());
assertEquals(Result.ABORTED, ds3b.getResult());
j.assertBuildStatus(Result.ABORTED, JenkinsRuleExt.waitForCompletion(usb));
j.assertBuildStatus(Result.ABORTED, JenkinsRuleExt.waitForCompletion(ds1b));
j.assertBuildStatus(Result.ABORTED, JenkinsRuleExt.waitForCompletion(ds2b));
j.assertBuildStatus(Result.ABORTED, JenkinsRuleExt.waitForCompletion(ds3b));
}

@SuppressWarnings("deprecation")
Expand Down

0 comments on commit 301f436

Please sign in to comment.