未验证 提交 ffb6552a 编写于 作者: J Jesse Glick

Merge branch 'master' into flatten-JENKINS-51247-source-fork

......@@ -1366,7 +1366,12 @@ public class Fingerprint implements ModelObject, Saveable {
start = System.currentTimeMillis();
try {
Fingerprint f = (Fingerprint) configFile.read();
Object loaded = configFile.read();
if (!(loaded instanceof Fingerprint)) {
throw new IOException("Unexpected Fingerprint type. Expected " + Fingerprint.class + " or subclass but got "
+ (loaded != null ? loaded.getClass() : "null"));
}
Fingerprint f = (Fingerprint) loaded;
if(logger.isLoggable(Level.FINE))
logger.fine("Loading fingerprint "+file+" took "+(System.currentTimeMillis()-start)+"ms");
if (f.facets==null)
......
......@@ -75,7 +75,7 @@ THE SOFTWARE.
</issueManagement>
<properties>
<revision>2.122</revision>
<revision>2.123</revision>
<changelist>-SNAPSHOT</changelist>
<!-- *.html files are in UTF-8, and *.properties are in iso-8859-1, so this configuration is actually incorrect,
......
......@@ -23,6 +23,7 @@
*/
package hudson.model;
import hudson.XmlFile;
import hudson.security.ACL;
import hudson.security.ACLContext;
import hudson.security.AuthorizationMatrixProperty;
......@@ -30,6 +31,8 @@ import hudson.security.Permission;
import hudson.security.ProjectMatrixAuthorizationStrategy;
import hudson.tasks.ArtifactArchiver;
import hudson.tasks.Fingerprinter;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
......@@ -50,6 +53,7 @@ import org.jvnet.hudson.test.MockFolder;
import org.jvnet.hudson.test.SecuredMockFolder;
import org.jvnet.hudson.test.WorkspaceCopyFileBuilder;
import static org.hamcrest.Matchers.containsString;
import static org.junit.Assert.*;
import static org.hamcrest.Matchers.notNullValue;
import static org.hamcrest.Matchers.nullValue;
......@@ -115,6 +119,20 @@ public class FingerprintTest {
assertTrue("Usages do not have a reference to " + project, usages.containsKey(project.getName()));
assertTrue("Usages do not have a reference to " + project2, usages.containsKey(project2.getName()));
}
@Test
@Issue("JENKINS-51179")
public void shouldThrowIOExceptionWhenFileIsInvalid() throws Exception {
XmlFile f = new XmlFile(new File(rule.jenkins.getRootDir(), "foo.xml"));
f.write("Hello, world!");
try {
Fingerprint.load(f.getFile());
} catch (IOException ex) {
assertThat(ex.getMessage(), containsString("Unexpected Fingerprint type"));
return;
}
fail("Expected IOException");
}
@Test
@Issue("SECURITY-153")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册