Skip to content

Commit

Permalink
[JENKINS-48946] - Move whitelist ordering test to core to fail fast
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-nenashev committed Jan 15, 2018
1 parent ad8fecf commit 260a257
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 16 deletions.
6 changes: 6 additions & 0 deletions core/pom.xml
Expand Up @@ -179,6 +179,12 @@ THE SOFTWARE.
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.infradna.tool</groupId>
Expand Down
61 changes: 61 additions & 0 deletions core/src/test/java/jenkins/security/ClassFilterImplSanityTest.java
@@ -0,0 +1,61 @@
/*
* The MIT License
*
* Copyright 2017-2018 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 jenkins.security;

import hudson.util.CopyOnWriteMap;
import org.apache.commons.io.IOUtils;
import org.junit.Test;

import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.List;
import java.util.TreeSet;
import java.util.stream.Collectors;

import static org.junit.Assert.assertThat;
import static org.hamcrest.Matchers.*;

/**
* Tests for {@link ClassFilterImpl}.
* More tests are available in the &quot;test&quot; module.
*/
public class ClassFilterImplSanityTest {

@Test
public void whitelistSanity() throws Exception {
try (InputStream is = ClassFilterImpl.class.getResourceAsStream("whitelisted-classes.txt")) {
List<String> lines = IOUtils.readLines(is, StandardCharsets.UTF_8).stream().filter(line -> !line.matches("#.*|\\s*")).collect(Collectors.toList());
TreeSet<String> set = new TreeSet<>(lines);
assertThat("whitelist is NOT ordered", new TreeSet<>(lines), contains(lines.toArray(new String[0])));
for (String line : lines) {
try {
Class.forName(line);
} catch (ClassNotFoundException x) {
System.err.println("skipping checks of unknown class " + line);
}
}
}
}

}
16 changes: 0 additions & 16 deletions test/src/test/java/jenkins/security/ClassFilterImplTest.java
Expand Up @@ -66,22 +66,6 @@ public class ClassFilterImplTest {
@Rule
public LoggerRule logging = new LoggerRule().record(ClassFilterImpl.class, Level.FINE);

@WithoutJenkins
@Test
public void whitelistSanity() throws Exception {
try (InputStream is = ClassFilterImpl.class.getResourceAsStream("whitelisted-classes.txt")) {
List<String> lines = IOUtils.readLines(is, StandardCharsets.UTF_8).stream().filter(line -> !line.matches("#.*|\\s*")).collect(Collectors.toList());
assertThat("whitelist is ordered", new TreeSet<>(lines), contains(lines.toArray(new String[0])));
for (String line : lines) {
try {
Class.forName(line);
} catch (ClassNotFoundException x) {
System.err.println("skipping checks of unknown class " + line);
}
}
}
}

@Test
public void masterToSlaveBypassesWhitelist() throws Exception {
assumeThat(ClassFilterImpl.WHITELISTED_CLASSES, not(contains(LinkedListMultimap.class.getName())));
Expand Down

0 comments on commit 260a257

Please sign in to comment.