Skip to content

Commit

Permalink
Merge branch 'update-tabs-table' into new-build-screen
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Feb 29, 2024
2 parents d9513e8 + 7b60b02 commit a3ab4c2
Show file tree
Hide file tree
Showing 6 changed files with 108 additions and 15 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());
});
}

}
6 changes: 3 additions & 3 deletions war/src/main/scss/abstracts/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $semantics: (

// Color palette
--very-light-grey: #f8f8f8;
--light-grey: hsl(240, 20%, 96.5%);
--light-grey: hsl(240, 25%, 96.5%);
--medium-grey: #9ba7af;
--dark-grey: #4d545d;

Expand Down Expand Up @@ -144,8 +144,8 @@ $semantics: (
--table-header-foreground: var(--text-color);
--table-body-background: var(--background);
--table-body-foreground: var(--text-color);
--table-border-radius: 10px;
--table-row-border-radius: 4px;
--table-border-radius: 0.75rem;
--table-row-border-radius: 0.3125rem;

// Deprecated
--even-row-color: var(--very-light-grey);
Expand Down
17 changes: 14 additions & 3 deletions war/src/main/scss/components/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,25 @@
.jenkins-table {
--table-padding: 0.55rem;

position: relative;
width: 100%;
background: var(--table-background);
border-radius: calc(var(--table-border-radius) + 2px);
border: 5px solid var(--table-background);
border-bottom-width: 3px;
border-radius: calc(var(--table-border-radius) + 4px);
border: 4px solid var(--table-background);
border-bottom-width: 2px;
border-spacing: 0 2px;
background-clip: padding-box;
margin-bottom: var(--section-padding);

&::before {
content: "";
position: absolute;
inset: -4px -4px -2px;
border: var(--card-border-width) solid var(--table-border-color);
border-radius: inherit;
pointer-events: none;
}

* {
-webkit-border-horizontal-spacing: 0;
-webkit-border-vertical-spacing: 0;
Expand Down
14 changes: 12 additions & 2 deletions war/src/main/scss/components/_tabs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,24 @@
}

.tabBar {
position: relative;
display: inline-flex;
align-items: center;
flex-wrap: wrap;
background: var(--tabs-background);
border-radius: var(--tabs-border-radius);
padding: 2.5px;
padding: 2px;
margin-bottom: var(--section-padding);

&::before {
content: "";
position: absolute;
inset: 0;
border: var(--card-border-width) solid var(--tabs-border-color);
border-radius: inherit;
pointer-events: none;
}

.tab {
float: left;
}
Expand All @@ -23,7 +33,7 @@
justify-content: center;
min-width: 3rem;
text-decoration: none;
margin: 2.5px;
margin: 2px;
padding: 0.4rem 1.2rem;
border-radius: 100px;
background: var(--tabs-item-background);
Expand Down

0 comments on commit a3ab4c2

Please sign in to comment.