Skip to content

Commit

Permalink
Ignore failing docker hub related tests
Browse files Browse the repository at this point in the history
Docker hub registry api has change, VBV-2777 was logged.

Ignored tests:
 * ContainerImageTagsIT.testListTagsFromDockerHubFullImageName
 * ContainerImageTagsIT.testListTagsFromDockerHub
 * TemplateSearchServiceIT.testSearchImagesWhenRegistriesAreDisabled
 * TemplateSearchServiceIT.testSearchImagesFromRegistriesWithSpecificPath

Change-Id: Ia3826bf2fac4fa52ecf7fc2cbcfca0e1ff857ad6
Reviewed-on: https://bellevue-ci-gerrit.eng.vmware.com:443/c/74253
Closures-Verified: jenkins <[email protected]>
Upgrade-Verified: jenkins <[email protected]>
CS-Verified: jenkins <[email protected]>
Reviewed-by: Antonio Filipov <[email protected]>
Bellevue-Verified: jenkins <[email protected]>
PG-Verified: jenkins <[email protected]>
  • Loading branch information
lazarin committed Jul 3, 2019
1 parent ccdd619 commit d960c7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

import com.vmware.admiral.adapter.registry.service.RegistryAdapterService;
Expand Down Expand Up @@ -105,6 +106,7 @@ public void testListTagsFromV2Registry() throws Exception {
verifyImageTags(imageName, TENANT, new String[] { DEFAULT_TAG });
}

@Ignore("VBV-2777")
@Test
public void testListTagsFromDockerHub() throws Throwable {
// Docker Hub list tags requests are expected to use the v2 endpoint,
Expand All @@ -114,6 +116,7 @@ public void testListTagsFromDockerHub() throws Throwable {
verifyImageTags(TEST_IMAGE_DOCKER_HUB, TENANT, expectedTags);
}

@Ignore("VBV-2777")
@Test
public void testListTagsFromDockerHubFullImageName() throws Throwable {
configureRegistry(defaultRegistryAddress, TENANT);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

import com.vmware.admiral.adapter.registry.service.RegistrySearchResponse;
Expand Down Expand Up @@ -172,6 +173,7 @@ public void testSearchImagesInRegistryFromAnotherProjectYieldsNoResults() throws
assertEquals(0, searchResponse.results.size());
}

@Ignore("VBV-2777")
@Test
public void testSearchImagesWhenRegistriesAreDisabled() throws Exception {
logger.info("Assert the default registry is there");
Expand Down Expand Up @@ -212,6 +214,7 @@ public void testSearchImagesWhenRegistriesAreDisabled() throws Exception {
assertEquals(0, searchResponse.results.size());
}

@Ignore("VBV-2777")
@Test
public void testSearchImagesFromRegistriesWithSpecificPath() throws Exception {
logger.info("Assert the default registry is there");
Expand Down

0 comments on commit d960c7a

Please sign in to comment.