From c25c1282ef88c361f6133fdc569dd797c0c47cc0 Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Fri, 10 Aug 2007 22:20:35 +0000 Subject: [PATCH] LUCENE-976: add missing openInput(String, int) to MMapDirectory git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@564785 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/lucene/store/MMapDirectory.java | 4 ++ .../lucene/store/TestMMapDirectory.java | 52 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 src/test/org/apache/lucene/store/TestMMapDirectory.java diff --git a/src/java/org/apache/lucene/store/MMapDirectory.java b/src/java/org/apache/lucene/store/MMapDirectory.java index b554fb3f48f..ec7b1dc3e54 100644 --- a/src/java/org/apache/lucene/store/MMapDirectory.java +++ b/src/java/org/apache/lucene/store/MMapDirectory.java @@ -198,4 +198,8 @@ public class MMapDirectory extends FSDirectory { raf.close(); } } + + public IndexInput openInput(String name, int bufferSize) throws IOException { + return openInput(name); + } } diff --git a/src/test/org/apache/lucene/store/TestMMapDirectory.java b/src/test/org/apache/lucene/store/TestMMapDirectory.java new file mode 100644 index 00000000000..d68f6e028e1 --- /dev/null +++ b/src/test/org/apache/lucene/store/TestMMapDirectory.java @@ -0,0 +1,52 @@ +package org.apache.lucene.store; + +/** + * 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. + */ + +import junit.framework.TestCase; +import java.lang.reflect.Method; + +public class TestMMapDirectory extends TestCase { + + // Simply verify that if there is a method in FSDirectory + // that returns IndexInput or a subclass, that + // MMapDirectory overrides it. + public void testIndexInputMethods() throws ClassNotFoundException { + + Class FSDirectory = Class.forName("org.apache.lucene.store.FSDirectory"); + Class IndexInput = Class.forName("org.apache.lucene.store.IndexInput"); + Class MMapDirectory = Class.forName("org.apache.lucene.store.MMapDirectory"); + + Method[] methods = FSDirectory.getDeclaredMethods(); + for(int i=0;i