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
1 change: 1 addition & 0 deletions src/test/java/land/oras/HarborS3ITCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class HarborS3ITCase {
* This test demonstrate how to assemble a Flux CD OCI Artifact
*/
@Test
@Disabled
void shouldPushHelmArtifact() {

// The compressed manifests
Expand Down
3 changes: 3 additions & 0 deletions src/test/java/land/oras/NexusITCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import java.util.List;
import java.util.Map;
import land.oras.utils.Const;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
Expand All @@ -36,7 +37,9 @@
*/
@Execution(ExecutionMode.CONCURRENT)
class NexusITCase {

@Test
@Disabled
void shouldPushHelmArtifact() {

// The compressed manifests
Expand Down
8 changes: 8 additions & 0 deletions src/test/java/land/oras/PublicECRITCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
import org.junit.jupiter.api.parallel.Execution;
Expand All @@ -38,6 +39,7 @@ class PublicECRITCase {
private static Path homeDir;

@Test
@Disabled
void shouldDetermineEffectiveRegistryWithUnqualifiedSettings() throws Exception {

// language=toml
Expand All @@ -56,6 +58,7 @@ void shouldDetermineEffectiveRegistryWithUnqualifiedSettings() throws Exception
}

@Test
@Disabled
void shouldRewriteDockerIOToPublicECR() throws Exception {

// language=toml
Expand Down Expand Up @@ -88,6 +91,7 @@ void shouldRewriteDockerIOToPublicECR() throws Exception {
}

@Test
@Disabled
void shouldDetermineEffectiveRegistry() {

// Use from container ref
Expand All @@ -111,6 +115,7 @@ void shouldDetermineEffectiveRegistry() {
}

@Test
@Disabled
void shouldPullAnonymousIndexAndFilterPlatform() {

// Via tag
Expand Down Expand Up @@ -138,6 +143,7 @@ void shouldPullAnonymousIndexAndFilterPlatform() {
}

@Test
@Disabled
void shouldPullAnonymousIndexViaDigest() {

Registry registry = Registry.builder().build();
Expand All @@ -150,6 +156,7 @@ void shouldPullAnonymousIndexViaDigest() {
}

@Test
@Disabled
void shouldPullManifest() {

// Via tag
Expand All @@ -167,6 +174,7 @@ void shouldPullManifest() {
}

@Test
@Disabled
void shouldPullLayer() {
Registry registry = Registry.builder().build();
ContainerRef containerRef = ContainerRef.parse(
Expand Down