Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import org.junit.Rule;
import org.junit.contrib.java.lang.system.EnvironmentVariables;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.IOException;
Expand Down Expand Up @@ -379,6 +380,7 @@ public void testDeleteNonExistingDir() throws IOException {
new HoodieLocalEngineContext(metaClient.getHadoopConf()), fileSystem, new Path(rootDir), 2));
}

@Disabled
@Test
public void testDeleteSubDirectoryRecursively() throws IOException {
String rootDir = basePath + "/.hoodie/.temp";
Expand All @@ -403,6 +405,7 @@ public void testDeleteSubDirectoryNonRecursively() throws IOException {
subPathStr, new SerializableConfiguration(fileSystem.getConf()), false));
}

@Disabled
@Test
public void testDeleteSubPathAsFile() throws IOException {
String rootDir = basePath + "/.hoodie/.temp";
Expand All @@ -414,6 +417,7 @@ public void testDeleteSubPathAsFile() throws IOException {
subPathStr, new SerializableConfiguration(fileSystem.getConf()), false));
}

@Disabled
@Test
public void testDeleteNonExistingSubDirectory() throws IOException {
String rootDir = basePath + "/.hoodie/.temp";
Expand Down Expand Up @@ -457,6 +461,7 @@ public void testParallelizeSubPathProcessWithExistingDir() throws IOException {
}
}

@Disabled
@Test
public void testGetFileStatusAtLevel() throws IOException {
String rootDir = basePath + "/.hoodie/.temp";
Expand Down