blob: 0e6f20c0bece1a16b86a037b5981a1b7ac4b8ad3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017,2018 Red Hat, Inc.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributor:
* Red Hat, Inc. - initial API and implementation
******************************************************************************/
package org.eclipse.linuxtools.docker.integration.tests.ui;
import static org.junit.Assert.assertTrue;
import org.eclipse.linuxtools.docker.integration.tests.image.AbstractImageBotTest;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
public class DifferentRegistryTest extends AbstractImageBotTest {
private static final String EMAIL = "test@test.com";
private static final String USERNAME = "test";
private static final String PASSWORD = "password";
private static final String IMAGE_RHEL = "rhel";
private static final String IMAGE_RHEL_TAG = "7.2";
@Before
public void before() {
prepareConnections();
deleteImageIfExists(REGISTRY_SERVER_ADDRESS + "/" + IMAGE_RHEL);
deleteRegisterIfExists(REGISTRY_SERVER_ADDRESS);
}
@Test
@Ignore
public void testDifferentRegistry() {
clearConsole();
setUpRegister(REGISTRY_SERVER_ADDRESS, EMAIL, USERNAME, PASSWORD);
setSecureStorage(PASSWORD);
pullImage(IMAGE_RHEL, IMAGE_RHEL_TAG, USERNAME + "@" + REGISTRY_SERVER_ADDRESS);
assertTrue("Image is not deployed!", imageIsDeployed(IMAGE_RHEL));
}
}