提交 1c781526 编写于 作者: O Oliver Gondža

Test BuildTrigger waits for parent completion

上级 3964189c
/*
* The MIT License
*
* Copyright (c) 2015 Red Hat, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.jvnet.hudson.test;
import hudson.tasks.BuildStepDescriptor;
import hudson.tasks.BuildStepMonitor;
import hudson.tasks.Notifier;
import hudson.tasks.Publisher;
import hudson.model.AbstractProject;
/**
* Partial {@link Notifier} implementation to facilitate notifier implementation for testing.
*/
public abstract class TestNotifier extends Notifier {
@Override
public BuildStepDescriptor<Publisher> getDescriptor() {
return new BuildStepDescriptor<Publisher>() {
@Override
public boolean isApplicable(Class<? extends AbstractProject> jobType) {
return true;
}
@Override
public String getDisplayName() {
return "Bogus";
}
};
}
public BuildStepMonitor getRequiredMonitorService() {
return BuildStepMonitor.NONE;
}
private Object writeReplace() { return new Object(); }
}
......@@ -28,15 +28,19 @@ import static org.junit.Assert.*;
import com.gargoylesoftware.htmlunit.html.HtmlForm;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
import hudson.Launcher;
import hudson.maven.MavenModuleSet;
import hudson.maven.MavenModuleSetBuild;
import hudson.model.AbstractBuild;
import hudson.model.AbstractProject;
import hudson.model.BuildListener;
import hudson.model.Cause;
import hudson.model.Computer;
import hudson.model.FreeStyleBuild;
import hudson.model.FreeStyleProject;
import hudson.model.Item;
import hudson.model.Result;
import hudson.model.PermalinkProjectAction.Permalink;
import hudson.model.Run;
import hudson.model.User;
import hudson.security.ACL;
......@@ -47,6 +51,7 @@ import hudson.security.ProjectMatrixAuthorizationStrategy;
import hudson.util.FormValidation;
import java.io.File;
import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
......@@ -68,8 +73,12 @@ import org.junit.Rule;
import org.junit.Test;
import org.jvnet.hudson.test.ExtractResourceSCM;
import org.jvnet.hudson.test.JenkinsRule;
import org.jvnet.hudson.test.JenkinsRule.WebClient;
import org.jvnet.hudson.test.TestBuilder;
import org.jvnet.hudson.test.TestNotifier;
import org.jvnet.hudson.test.MockBuilder;
import org.jvnet.hudson.test.MockQueueItemAuthenticator;
import org.xml.sax.SAXException;
/**
* Tests for hudson.tasks.BuildTrigger
......@@ -290,4 +299,45 @@ public class BuildTriggerTest {
assertEquals(result.renderHtml(), expectedError);
}
}
@Test
public void downstreamProjectShouldObserveCompletedParent() throws Exception {
final WebClient wc = j.createWebClient();
final FreeStyleProject us = j.createFreeStyleProject();
us.getPublishersList().add(new BuildTrigger("downstream", true));
us.getPublishersList().add(new TestNotifier() {
@Override
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
Thread.sleep(5000); // Build does not complete just after the BuildTrigger
return true;
}
});
FreeStyleProject ds = createDownstreamProject();
ds.getBuildersList().add(new TestBuilder() {
@Override
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
// Parent should be completed by now
FreeStyleBuild upstream = us.getLastBuild();
assertNotNull(upstream);
assertEquals(1, upstream.getNumber());
try {
wc.getPage(us, "lastBuild");
} catch (SAXException ex) {
throw new AssertionError(ex);
}
return true;
}
});
j.jenkins.rebuildDependencyGraph();
j.buildAndAssertSuccess(us);
final FreeStyleBuild dsb = ds.getBuildByNumber(1);
j.waitForCompletion(dsb);
j.assertBuildStatusSuccess(dsb);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册