Skip to content

Commit

Permalink
Improved: Merge ‘UtilObjectUnitTest’ into ‘UtilObjectTests’
Browse files Browse the repository at this point in the history
(OFBIZ-11067)

Those classes were testing the same class.


git-svn-id: https://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/trunk@1869023 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
mthl committed Oct 26, 2019
1 parent e5933c6 commit d5e0963
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 79 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,40 @@
package org.apache.ofbiz.base.util;

import static org.apache.ofbiz.base.util.UtilMisc.toSet;
import static org.apache.ofbiz.base.util.UtilObject.getObjectException;
import static org.apache.ofbiz.base.util.UtilObject.getObjectFromFactory;
import static org.hamcrest.Matchers.contains;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertThat;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Set;

import org.apache.ofbiz.base.lang.Factory;
import org.apache.ofbiz.base.lang.SourceMonitored;
import org.junit.After;
import org.junit.Test;

@SourceMonitored
public class UtilObjectTests {
@After
public void cleanUp() {
// Ensure that the default value of allowed deserialization classes is used.
UtilProperties.setPropertyValueInMemory("SafeObjectInputStream", "ListOfSafeObjectsForInputStream", "");
}

public static final class ErrorInjector extends FilterInputStream {
private int after;
Expand Down Expand Up @@ -305,4 +317,43 @@ public void testGetObjectFromFactory() throws Exception {
assertNotNull("nothing found second", caught);
}
}

// Test reading a basic list of string object.
@Test
public void testGetObjectExceptionSafe() throws IOException, ClassNotFoundException {
try (ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(bos)) {
List<String> allowedObject = Arrays.asList("foo", "bar", "baz");
oos.writeObject(allowedObject);
List<String> readObject = UtilGenerics.cast(getObjectException(bos.toByteArray()));
assertThat(readObject, contains("foo", "bar", "baz"));
}
}

// Test reading a valid customized list of string object.
@Test
public void testGetObjectExceptionCustomized() throws IOException, ClassNotFoundException {
UtilProperties.setPropertyValueInMemory("SafeObjectInputStream", "ListOfSafeObjectsForInputStream",
"java.util.Arrays.ArrayList,java.lang.String");
testGetObjectExceptionSafe();

// With extra whitespace
UtilProperties.setPropertyValueInMemory("SafeObjectInputStream", "ListOfSafeObjectsForInputStream",
"java.util.Arrays.ArrayList, java.lang.String");
testGetObjectExceptionSafe();
}

// Test reading a basic list of string object after forbidding such kind of objects.
@Test(expected = ClassCastException.class)
public void testGetObjectExceptionUnsafe() throws IOException, ClassNotFoundException {
// Only allow object of type where the package prefix is 'org.apache.ofbiz'
UtilProperties.setPropertyValueInMemory("SafeObjectInputStream", "ListOfSafeObjectsForInputStream",
"org.apache.ofbiz..*");
try (ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(bos)) {
List<String> forbiddenObject = Arrays.asList("foo", "bar", "baz");
oos.writeObject(forbiddenObject);
getObjectException(bos.toByteArray());
}
}
}

This file was deleted.

0 comments on commit d5e0963

Please sign in to comment.