-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5153 from caseyduquettesc/casey-master
Add system property to override inbound TCP agent address
- Loading branch information
Showing
4 changed files
with
134 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
test/src/test/java/hudson/slaves/AgentInboundUrlTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Copyright (c) 2021, Snap, Inc., Casey Duquette | ||
* | ||
* 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.slaves; | ||
|
||
import com.gargoylesoftware.htmlunit.xml.XmlPage; | ||
import hudson.Util; | ||
import hudson.model.Computer; | ||
import hudson.model.Node; | ||
import hudson.model.Slave; | ||
import jenkins.model.Jenkins; | ||
import org.dom4j.Document; | ||
import org.dom4j.io.DOMReader; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.jvnet.hudson.test.FlagRule; | ||
import org.jvnet.hudson.test.Issue; | ||
import org.jvnet.hudson.test.JenkinsRule; | ||
import org.jvnet.hudson.test.LoggerRule; | ||
import org.jvnet.hudson.test.MockAuthorizationStrategy; | ||
|
||
import java.io.File; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.logging.Level; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotNull; | ||
|
||
/** | ||
* Tests of {@link JNLPLauncher} using a custom inbound agent url. | ||
*/ | ||
public class AgentInboundUrlTest { | ||
@Rule | ||
public JenkinsRule j = new JenkinsRule(); | ||
|
||
@Rule | ||
public LoggerRule logging = new LoggerRule().record(Slave.class, Level.FINE); | ||
|
||
// Override the inbound agent url | ||
private static final String customInboundUrl = "http://localhost:8080/jenkins"; | ||
|
||
@Rule | ||
public final FlagRule<String> customInboundUrlRule = FlagRule.systemProperty(JNLPLauncher.CUSTOM_INBOUND_URL_PROPERTY, customInboundUrl); | ||
|
||
@Issue("JENKINS-63222") | ||
@Test | ||
public void testInboundAgentUrlOverride() throws Exception { | ||
j.jenkins.setSecurityRealm(j.createDummySecurityRealm()); | ||
MockAuthorizationStrategy authorizationStrategy = new MockAuthorizationStrategy(); | ||
authorizationStrategy.grant(Jenkins.ADMINISTER).everywhere().toEveryone(); | ||
j.jenkins.setAuthorizationStrategy(authorizationStrategy); | ||
|
||
// Create an agent | ||
addTestAgent(); | ||
|
||
// parse the JNLP page into DOM to inspect the jnlp url argument. | ||
JenkinsRule.WebClient agent = j.createWebClient(); | ||
XmlPage jnlp = (XmlPage) agent.goTo("computer/test/jenkins-agent.jnlp", "application/x-java-jnlp-file"); | ||
Document dom = new DOMReader().read(jnlp.getXmlDocument()); | ||
Object arg = dom.selectSingleNode("//application-desc/argument[3]/following-sibling::argument[1]"); | ||
String val = ((org.dom4j.Element) arg).getText(); | ||
assertEquals(customInboundUrl, val); | ||
} | ||
|
||
/** | ||
* Adds an Inbound TCP agent to the system and returns it. | ||
*/ | ||
private void addTestAgent() throws Exception { | ||
addTestAgent(new JNLPLauncher(false)); | ||
} | ||
|
||
/** | ||
* Adds an Inbound TCP agent to the system and returns it. | ||
*/ | ||
private void addTestAgent(ComputerLauncher launcher) throws Exception { | ||
List<Node> agents = new ArrayList<>(j.jenkins.getNodes()); | ||
File dir = Util.createTempDir(); | ||
agents.add(new DumbSlave("test", "dummy", dir.getAbsolutePath(), "1", Node.Mode.NORMAL, "", | ||
launcher, RetentionStrategy.INSTANCE, new ArrayList<>())); | ||
j.jenkins.setNodes(agents); | ||
Computer c = j.jenkins.getComputer("test"); | ||
assertNotNull(c); | ||
} | ||
} |