blob: 21c27a5f075931d9699eaeab7447f4ef06c237ae [file] [log] [blame]
/*
* 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
*
* 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.pool2.impl;
import static org.junit.Assert.assertEquals;
import java.lang.ref.SoftReference;
import org.junit.Before;
import org.junit.Test;
/**
* Tests for PooledSoftReference.
*/
public class TestPooledSoftReference {
PooledSoftReference<String> ref;
private static final String REFERENT = "test";
private static final String REFERENT2 = "test2";
@Before
public void setUp() {
SoftReference<String> softRef = new SoftReference<String>(REFERENT);
ref = new PooledSoftReference<String>(softRef);
}
@Test
public void testPooledSoftReference() {
assertEquals(REFERENT, ref.getObject());
SoftReference<String> softRef = ref.getReference();
assertEquals(REFERENT, softRef.get());
softRef.clear();
softRef = new SoftReference<String>(REFERENT2);
ref.setReference(softRef);
assertEquals(REFERENT2, ref.getObject());
softRef = ref.getReference();
assertEquals(REFERENT2, softRef.get());
softRef.clear();
}
@Test
public void testToString() {
String expected = "Referenced Object: test, State: IDLE";
assertEquals(expected, ref.toString());
}
}