blob: 0a13ae30531c9b5c15eb08d9609f725852b4ad7f [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.directory.server.core.partition.impl.btree.jdbm;
import java.io.File;
import java.io.IOException;
import javax.naming.NamingException;
import org.apache.directory.shared.ldap.util.LongComparator;
import jdbm.RecordManager;
import jdbm.btree.BTree;
import jdbm.recman.BaseRecordManager;
//import org.apache.directory.shared.ldap.util.BigIntegerComparator;
import junit.framework.TestCase;
/**
* Tests that the BTreeEnumeration functions as expected.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$
*/
public class BTreeEnumerationTest extends TestCase
{
private final static byte[] EMPTY_BYTES = new byte[0];
private File tempFile = null;
private BTree tree = null;
private RecordManager rm = null;
public void setUp() throws Exception
{
tempFile = File.createTempFile( "jdbm", "test" );
rm = new BaseRecordManager( tempFile.getAbsolutePath() );
tree = BTree.createInstance( rm, new LongComparator() );
}
protected void tearDown() throws Exception
{
String tmp = tempFile.getAbsolutePath();
new File( tmp ).delete();
new File( tmp + ".db" ).delete();
new File( tmp + ".lg" ).delete();
}
public void testEmptyBTree() throws NamingException
{
BTreeEnumeration bte = new BTreeEnumeration( tree );
assertFalse( "enumeration on empty btree should not have elements", bte.hasMore() );
}
public void testOneElement() throws IOException, NamingException
{
Long value = 1L;
tree.insert( value, EMPTY_BYTES, true );
BTreeEnumeration bte = new BTreeEnumeration( tree );
assertTrue( bte.hasMore() );
assertEquals( value, bte.next() );
assertFalse( "enumeration consumed should not have elements", bte.hasMore() );
}
public void testManyElements() throws IOException, NamingException
{
/*
* Adding the following values for this test
* 1, -
* 2, -
* 4, -
* 5, -
*/
Long value = 1L;
tree.insert( value, EMPTY_BYTES, true );
value += 1L;
tree.insert( value, EMPTY_BYTES, true );
value += 1L;
value += 1L;
tree.insert( value, EMPTY_BYTES, true );
value += 1L;
tree.insert( value, EMPTY_BYTES, true );
BTreeEnumeration bte = new BTreeEnumeration( tree );
assertTrue( bte.hasMore() );
assertEquals( 1L, bte.next() );
assertTrue( bte.hasMore() );
assertEquals( 2L, bte.next() );
assertTrue( bte.hasMore() );
assertEquals( 4L, bte.next() );
assertTrue( bte.hasMore() );
assertEquals( 5L, bte.next() );
assertFalse( "enumeration consumed should not have elements", bte.hasMore() );
}
}