| /* |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You 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 |
| * |
| * https://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.pool3.impl; |
| |
| import static org.junit.jupiter.api.Assertions.assertEquals; |
| |
| import java.net.URL; |
| import java.net.URLClassLoader; |
| import java.time.Duration; |
| |
| import org.apache.commons.pool3.BasePooledObjectFactory; |
| import org.apache.commons.pool3.PooledObject; |
| import org.junit.jupiter.api.Test; |
| |
| class TestGenericObjectPoolClassLoaders { |
| |
| private static final class CustomClassLoader extends URLClassLoader { |
| private final int n; |
| |
| CustomClassLoader(final int n) { |
| super(new URL[] { BASE_URL }); |
| this.n = n; |
| } |
| |
| @Override |
| public URL findResource(final String name) { |
| if (!name.endsWith(String.valueOf(n))) { |
| return null; |
| } |
| |
| return super.findResource(name); |
| } |
| } |
| |
| private static final class CustomClassLoaderObjectFactory extends |
| BasePooledObjectFactory<URL, IllegalStateException> { |
| private final int n; |
| |
| CustomClassLoaderObjectFactory(final int n) { |
| this.n = n; |
| } |
| |
| @Override |
| public URL create() { |
| final URL url = Thread.currentThread().getContextClassLoader() |
| .getResource("test" + n); |
| if (url == null) { |
| throw new IllegalStateException("Object should not be null"); |
| } |
| return url; |
| } |
| |
| @Override |
| public PooledObject<URL> wrap(final URL value) { |
| return new DefaultPooledObject<>(value); |
| } |
| } |
| |
| private static final URL BASE_URL = TestGenericObjectPoolClassLoaders.class |
| .getResource("/org/apache/commons/pool3/impl/"); |
| |
| @Test |
| void testContextClassLoader() throws Exception { |
| |
| final ClassLoader savedClassloader = Thread.currentThread().getContextClassLoader(); |
| |
| try (CustomClassLoader cl1 = new CustomClassLoader(1)) { |
| Thread.currentThread().setContextClassLoader(cl1); |
| final CustomClassLoaderObjectFactory factory1 = new CustomClassLoaderObjectFactory(1); |
| try (GenericObjectPool<URL, IllegalStateException> pool1 = new GenericObjectPool<>(factory1)) { |
| pool1.setMinIdle(1); |
| pool1.setDurationBetweenEvictionRuns(Duration.ofMillis(100)); |
| int counter = 0; |
| while (counter < 50 && pool1.getNumIdle() != 1) { |
| Thread.sleep(100); |
| counter++; |
| } |
| assertEquals(1, pool1.getNumIdle(), "Wrong number of idle objects in pool1"); |
| |
| try (CustomClassLoader cl2 = new CustomClassLoader(2)) { |
| Thread.currentThread().setContextClassLoader(cl2); |
| final CustomClassLoaderObjectFactory factory2 = new CustomClassLoaderObjectFactory(2); |
| try (GenericObjectPool<URL, IllegalStateException> pool2 = new GenericObjectPool<>(factory2)) { |
| pool2.setMinIdle(1); |
| |
| pool2.addObject(); |
| assertEquals(1, pool2.getNumIdle(), "Wrong number of idle objects in pool2"); |
| pool2.clear(); |
| |
| pool2.setDurationBetweenEvictionRuns(Duration.ofMillis(100)); |
| |
| counter = 0; |
| while (counter < 50 && pool2.getNumIdle() != 1) { |
| Thread.sleep(100); |
| counter++; |
| } |
| assertEquals(1, pool2.getNumIdle(), "Wrong number of idle objects in pool2"); |
| } |
| } |
| } |
| } finally { |
| Thread.currentThread().setContextClassLoader(savedClassloader); |
| } |
| } |
| } |