Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 0 additions & 6 deletions hadoop-cloud-storage-project/hadoop-huaweicloud/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,6 @@
<scope>test</scope>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.contract.AbstractContractCreateTest;
import org.apache.hadoop.fs.contract.AbstractFSContract;
import org.junit.Assume;

import org.junit.jupiter.api.Disabled;

/**
* Create test cases on obs file system.
Expand All @@ -33,13 +34,13 @@ protected AbstractFSContract createContract(final Configuration conf) {
return new OBSContract(conf);
}

@Disabled
@Override
public void testCreatedFileIsImmediatelyVisible() {
Assume.assumeTrue("unsupport.", false);
}

@Disabled
@Override
public void testCreatedFileIsVisibleOnFlush() {
Assume.assumeTrue("unsupport", false);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.contract.AbstractContractRenameTest;
import org.apache.hadoop.fs.contract.AbstractFSContract;
import org.junit.Assume;
import org.junit.jupiter.api.Disabled;

/**
* Rename test cases on obs file system.
Expand All @@ -33,13 +33,13 @@ protected AbstractFSContract createContract(final Configuration conf) {
return new OBSContract(conf);
}

@Disabled
@Override
public void testRenameFileUnderFileSubdir() {
Assume.assumeTrue("unsupport.", false);
}

@Disabled
@Override
public void testRenameFileUnderFile() {
Assume.assumeTrue("unsupport.", false);
}
}