LogFactory's Hashtable implementation (used to store LogFactoryImpl by classloader) can now be subclassed. This will default to WeakHashtable when this is present on the classpath, Hashtable otherwise. The implementation class can be specified by a system property. Based on a contribution by Brian Stansberry.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@139056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
31
src/test/org/apache/commons/logging/AltHashtable.java
Normal file
31
src/test/org/apache/commons/logging/AltHashtable.java
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright 2004 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.commons.logging;
|
||||
|
||||
import java.util.Hashtable;
|
||||
|
||||
public class AltHashtable extends Hashtable {
|
||||
|
||||
public static Object lastKey;
|
||||
public static Object lastValue;
|
||||
|
||||
public Object put(Object key, Object value) {
|
||||
lastKey = key;
|
||||
lastValue = value;
|
||||
return super.put(key, value);
|
||||
}
|
||||
}
|
||||
51
src/test/org/apache/commons/logging/AltHashtableTest.java
Normal file
51
src/test/org/apache/commons/logging/AltHashtableTest.java
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2004 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.commons.logging;
|
||||
|
||||
import junit.framework.*;
|
||||
|
||||
public class AltHashtableTest extends TestCase {
|
||||
|
||||
public AltHashtableTest(String testName) {
|
||||
super(testName);
|
||||
}
|
||||
|
||||
public void testType() {
|
||||
assertTrue(LogFactory.factories instanceof AltHashtable);
|
||||
}
|
||||
|
||||
public void testPutCalled() throws Exception {
|
||||
|
||||
AltHashtable.lastKey = null;
|
||||
AltHashtable.lastValue = null;
|
||||
ClassLoader classLoader = new ClassLoader() {};
|
||||
Thread thread = new Thread(
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
LogFactory.getLog(AltHashtableTest.class);
|
||||
}
|
||||
}
|
||||
);
|
||||
thread.setContextClassLoader(classLoader);
|
||||
|
||||
thread.start();
|
||||
thread.join();
|
||||
|
||||
assertEquals(classLoader, AltHashtable.lastKey);
|
||||
assertNotNull(AltHashtable.lastValue);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Copyright 2004 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.commons.logging;
|
||||
|
||||
import junit.framework.*;
|
||||
import java.util.Hashtable;
|
||||
|
||||
/**
|
||||
* Tests behaviour when the property is misconfigured.
|
||||
*/
|
||||
public class BadHashtablePropertyTest extends TestCase {
|
||||
|
||||
public BadHashtablePropertyTest(String testName) {
|
||||
super(testName);
|
||||
}
|
||||
|
||||
public void testType() {
|
||||
assertTrue(LogFactory.factories instanceof Hashtable);
|
||||
}
|
||||
|
||||
public void testPutCalled() throws Exception {
|
||||
Log log = LogFactory.getLog(BadHashtablePropertyTest.class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user