Skip to content

Commit

Permalink
Merge branch 'master' into revamp-dropdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik authored Feb 29, 2024
2 parents d34465b + d42e078 commit 9e2af88
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 7 deletions.
14 changes: 9 additions & 5 deletions core/src/main/java/hudson/ProxyConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ public void setTestUrl(String testUrl) {

@DataBoundSetter
public void setUserName(String userName) {
this.userName = userName;
this.userName = Util.fixEmptyAndTrim(userName);
}

@DataBoundSetter
Expand Down Expand Up @@ -290,6 +290,7 @@ private Object readResolve() {
secretPassword = Secret.fromString(Scrambler.descramble(password));
password = null;
authenticator = newAuthenticator();
userName = Util.fixEmptyAndTrim(userName);
return this;
}

Expand Down Expand Up @@ -363,12 +364,9 @@ public static InputStream getInputStream(URL url) throws IOException {
*
* <p>Equivalent to {@code newHttpClientBuilder().followRedirects(HttpClient.Redirect.NORMAL).build()}.
*
* <p>The Jenkins-specific default settings include a proxy server and proxy authentication (as
* configured by {@link ProxyConfiguration}) and a connection timeout (as configured by {@link
* ProxyConfiguration#DEFAULT_CONNECT_TIMEOUT_MILLIS}).
*
* @return a new {@link HttpClient}
* @since 2.379
* @see #newHttpClientBuilder
*/
public static HttpClient newHttpClient() {
return newHttpClientBuilder().followRedirects(HttpClient.Redirect.NORMAL).build();
Expand All @@ -383,6 +381,12 @@ public static HttpClient newHttpClient() {
* configured by {@link ProxyConfiguration}) and a connection timeout (as configured by {@link
* ProxyConfiguration#DEFAULT_CONNECT_TIMEOUT_MILLIS}).
*
* <p><strong>Warning:</strong> if both {@link #getName} and {@link #getUserName} are set
* (meaning that an authenticated proxy is defined),
* you will not be able to pass an {@code Authorization} header to the real server
* when running on Java 17 and later
* (pending <a href="https://bugs.openjdk.org/browse/JDK-8326949">JDK-8326949</a>.
*
* @return an {@link HttpClient.Builder}
* @since 2.379
*/
Expand Down
3 changes: 1 addition & 2 deletions core/src/main/java/jenkins/model/Jenkins.java
Original file line number Diff line number Diff line change
Expand Up @@ -3388,6 +3388,7 @@ public void load() throws IOException {
primaryView = v.getViewName();
}
primaryView = AllView.migrateLegacyPrimaryAllViewLocalizedName(views, primaryView);
clouds.setOwner(this);
configLoaded = true;
try {
checkRawBuildsDir(buildsDir);
Expand Down Expand Up @@ -3497,8 +3498,6 @@ public void run(Reactor session) throws Exception {
} else {
nodes.load();
}

clouds.setOwner(Jenkins.this);
}
});

Expand Down
69 changes: 69 additions & 0 deletions test/src/test/java/hudson/ProxyConfigurationManagerGUITest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/*
* The MIT License
*
* Copyright 2024 CloudBees, 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 hudson;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;

import hudson.util.Secret;
import java.io.File;
import org.apache.commons.io.FileUtils;
import org.junit.Rule;
import org.junit.Test;
import org.jvnet.hudson.test.JenkinsSessionRule;

public final class ProxyConfigurationManagerGUITest {

@Rule public JenkinsSessionRule rr = new JenkinsSessionRule();

@Test public void configRoundtrip() throws Throwable {
rr.then(r -> {
assertNull(r.jenkins.proxy);
r.jenkins.proxy = new ProxyConfiguration("proxy.mycorp", 80);
r.configRoundtrip();
FileUtils.copyFile(new File(r.jenkins.root, "proxy.xml"), System.out);
});
rr.then(r -> {
ProxyConfiguration pc = r.jenkins.proxy;
assertNotNull(pc);
assertEquals("proxy.mycorp", pc.getName());
assertEquals(80, pc.getPort());
assertNull(pc.getUserName());
pc.setUserName("proxyuser");
pc.setSecretPassword(Secret.fromString("proxypass"));
r.configRoundtrip();
FileUtils.copyFile(new File(r.jenkins.root, "proxy.xml"), System.out);
});
rr.then(r -> {
ProxyConfiguration pc = r.jenkins.proxy;
assertEquals("proxy.mycorp", pc.getName());
assertEquals(80, pc.getPort());
assertEquals("proxyuser", pc.getUserName());
assertEquals("proxypass", pc.getSecretPassword().getPlainText());
});
}

}

0 comments on commit 9e2af88

Please sign in to comment.