Author: mduerig
Date: Wed Feb 24 20:54:34 2016
New Revision: 1732230
URL: http://svn.apache.org/viewvc?rev=1732230&view=rev
Log:
OAK-4054: FileStore.containsSegment returns alway true (almost)
@Ignored test case
Added:
jackrabbit/oak/trunk/oak-segment/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/FileStoreTest.java
Added:
jackrabbit/oak/trunk/oak-segment/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/FileStoreTest.java
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-segment/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/FileStoreTest.java?rev=1732230&view=auto
==============================================================================
---
jackrabbit/oak/trunk/oak-segment/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/FileStoreTest.java
(added)
+++
jackrabbit/oak/trunk/oak-segment/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/FileStoreTest.java
Wed Feb 24 20:54:34 2016
@@ -0,0 +1,65 @@
+/*
+ * 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.jackrabbit.oak.plugins.segment.file;
+
+import static java.io.File.createTempFile;
+import static org.apache.commons.io.FileUtils.deleteDirectory;
+import static
org.apache.jackrabbit.oak.plugins.segment.file.FileStore.newFileStore;
+
+import java.io.File;
+import java.io.IOException;
+
+import org.apache.jackrabbit.oak.plugins.segment.SegmentId;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Ignore;
+import org.junit.Test;
+
+public class FileStoreTest {
+
+ private File directory;
+
+ @Before
+ public void setUp() throws IOException {
+ directory = createTempFile(FileStoreTest.class.getSimpleName(), "dir",
new File("target"));
+ directory.delete();
+ directory.mkdir();
+ }
+
+ @After
+ public void tearDown() throws IOException {
+ deleteDirectory(directory);
+ }
+
+ @Ignore("OAK-4054") // FIXME OAK-4054
+ @Test
+ public void containsSegment() throws IOException {
+ FileStore fileStore = newFileStore(directory).create();
+ try {
+ SegmentId id = new SegmentId(fileStore.getTracker(), 0, 0);
+ if (fileStore.containsSegment(id)) {
+ fileStore.readSegment(id);
+ }
+ } finally {
+ fileStore.close();
+ }
+ }
+
+}