blob: 2bc2f2768785959da0e3312de0094c1a65ecebe9 [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.qpid.server.store.berkeleydb;
import static org.junit.Assert.fail;
import java.io.File;
import org.junit.Test;
import org.apache.qpid.test.utils.UnitTestBase;
public class EnvHomeRegistryTest extends UnitTestBase
{
private final EnvHomeRegistry _ehr = new EnvHomeRegistry();
@Test
public void testDuplicateEnvHomeRejected() throws Exception
{
File home = new File(UnitTestBase.TMP_FOLDER, getTestName());
_ehr.registerHome(home);
try
{
_ehr.registerHome(home);
fail("Exception not thrown");
}
catch (IllegalArgumentException iae)
{
// PASS
}
}
@Test
public void testUniqueEnvHomesAllowed() throws Exception
{
File home1 = new File(UnitTestBase.TMP_FOLDER, getTestName() + "1");
File home2 = new File(UnitTestBase.TMP_FOLDER, getTestName() + "2");
_ehr.registerHome(home1);
_ehr.registerHome(home2);
}
@Test
public void testReuseOfEnvHomesAllowed() throws Exception
{
File home = new File(UnitTestBase.TMP_FOLDER, getTestName() + "1");
_ehr.registerHome(home);
_ehr.deregisterHome(home);
_ehr.registerHome(home);
}
}