Skip to content

Commit

Permalink
[FIXED JENKINS-9843] PreBuildMergeOptions.getMergeRemote() cannot be @…
Browse files Browse the repository at this point in the history
…exported, since the return type is not @ExportedBean.

Corrects attempted fix b3ddce6.
(cherry picked from commit ec81310)
  • Loading branch information
jglick committed Jun 24, 2014
1 parent d434841 commit e7f355b
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
Expand Up @@ -31,7 +31,6 @@ public class PreBuildMergeOptions implements Serializable {
*/
public String mergeStrategy = MergeCommand.Strategy.DEFAULT.toString();

@Exported
public RemoteConfig getMergeRemote() {
return mergeRemote;
}
Expand Down
49 changes: 49 additions & 0 deletions src/test/java/hudson/plugins/git/opt/PreBuildMergeOptionsTest.java
@@ -0,0 +1,49 @@
/*
* The MIT License
*
* Copyright 2014 Jesse Glick.
*
* 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 hudson.plugins.git.opt;

import hudson.model.FreeStyleProject;
import hudson.plugins.git.GitSCM;
import hudson.plugins.git.UserMergeOptions;
import hudson.plugins.git.UserRemoteConfig;
import hudson.plugins.git.extensions.GitSCMExtension;
import hudson.plugins.git.extensions.impl.PreBuildMerge;
import java.util.Collections;
import org.jenkinsci.plugins.gitclient.MergeCommand;
import org.junit.Test;
import org.junit.Rule;
import org.jvnet.hudson.test.JenkinsRule;

public class PreBuildMergeOptionsTest {

@Rule public JenkinsRule r = new JenkinsRule();

@Test public void exporting() throws Exception {
FreeStyleProject p = r.createFreeStyleProject();
p.setScm(new GitSCM(Collections.singletonList(new UserRemoteConfig("http://wherever/thing.git", "repo", null, null)), null, null, null, null, null, Collections.<GitSCMExtension>singletonList(new PreBuildMerge(new UserMergeOptions("repo", "master", MergeCommand.Strategy.DEFAULT.name())))));
r.createWebClient().goToXml(p.getUrl() + "api/xml?depth=2");
}

}

0 comments on commit e7f355b

Please sign in to comment.