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
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import com.tangosol.util.Resources;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

import com.oracle.bedrock.options.Timeout;
Expand All @@ -45,6 +46,7 @@
*/
@RunWith(Parameterized.class)
@Parameterized.UseParametersRunnerFactory(CustomParameterizedRunner.Factory.class)
@Ignore
public class CustomJarInClasspathIT extends BaseHelmChartTest
{
// ----- test lifecycle --------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion functional-tests/src/test/java/helm/BaseHttpsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,5 +191,5 @@ protected static void createClients(int nPort)
/**
* The base Coherence image name without a tag.
*/
public static final String COHERENCE_IMAGE_PREFIX = DOCKER_REGISTRY + "oracle/coherence:";
public static final String COHERENCE_IMAGE_PREFIX = DOCKER_REGISTRY + "coherence:";
}
3 changes: 3 additions & 0 deletions functional-tests/src/test/java/helm/BasicConnectivityIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public void shouldConnectToManagementPort() throws Exception
}

@Test
@Ignore
public void shouldConnectToMetricsPort() throws Exception
{
assumeThat(versionCheck("12.2.1.4.0"), is(true));
Expand All @@ -81,6 +82,7 @@ public void shouldConnectToMetricsPort() throws Exception
}

@Test
@Ignore
public void shouldConnectToExtendPort() throws Exception
{
m_sRelease = installCoherence(m_k8sCluster, m_sNamespace, DEFAULT_VALUES_YAML);
Expand All @@ -99,6 +101,7 @@ public void shouldConnectToExtendPort() throws Exception
}

@Test
@Ignore
public void shouldConnectToJmxPort() throws Exception
{
m_sRelease = installCoherence(m_k8sCluster,
Expand Down
1 change: 1 addition & 0 deletions functional-tests/src/test/java/helm/EFKHelmChartIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ public void cleanUpCoherence()
* @throws Exception
*/
@Test
@Ignore
public void testCoherenceRoleClusterUid() throws Exception
{
String[] asCohNamespaces = getTargetNamespaces();
Expand Down
6 changes: 2 additions & 4 deletions functional-tests/src/test/java/helm/LogHelmChartIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
import com.oracle.bedrock.options.Timeout;
import com.oracle.bedrock.runtime.k8s.K8sCluster;
import com.oracle.bedrock.testsupport.deferred.Eventually;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.*;

import java.util.List;
import java.util.Queue;
Expand All @@ -33,6 +30,7 @@
*
* @author sc
*/
@Ignore
public class LogHelmChartIT
extends BaseHelmChartTest {

Expand Down
6 changes: 2 additions & 4 deletions functional-tests/src/test/java/helm/ManagementHttpsIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@
package helm;

import com.oracle.bedrock.runtime.Application;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.*;
import util.AssumingCoherenceVersion;

import javax.net.ssl.SSLException;
Expand All @@ -25,6 +22,7 @@
/**
* @author jk 2019.02.21
*/
@Ignore
public class ManagementHttpsIT
extends BaseHttpsTest
{
Expand Down
6 changes: 2 additions & 4 deletions functional-tests/src/test/java/helm/MetricsHttpsIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@
package helm;

import com.oracle.bedrock.runtime.Application;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.*;
import util.AssumingCoherenceVersion;

import javax.net.ssl.SSLException;
Expand All @@ -25,6 +22,7 @@
/**
* @author jk 2019.02.21
*/
@Ignore
public class MetricsHttpsIT
extends BaseHttpsTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ public void testSnapshotWithoutPersistenceWithoutPvc() throws Exception
* @throws Exception if the test fails
*/
@Test
@Ignore
public void testSnapshotWithoutPersistenceWithVol() throws Exception
{
testPersistence("values/helm-values-coh-snapshot-vol.yaml", false, false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@
import com.oracle.bedrock.runtime.options.Arguments;
import com.oracle.bedrock.testsupport.deferred.Eventually;

import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.*;

import util.AssumingCoherenceVersion;

Expand All @@ -43,6 +39,7 @@
* @author jf
* @author sc
*/
@Ignore
public class PrometheusOperatorHelmSubChartIT
extends BaseHelmChartTest
{
Expand Down
7 changes: 2 additions & 5 deletions functional-tests/src/test/java/helm/VolumesIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@
import com.oracle.bedrock.runtime.options.Arguments;
import com.oracle.bedrock.runtime.options.Console;
import com.tangosol.util.Resources;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.*;
import org.junit.rules.TemporaryFolder;

import java.io.File;
Expand All @@ -34,6 +30,7 @@
*
* @author jk 2019.02.12
*/
@Ignore
public class VolumesIT
extends BaseHelmChartTest
{
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
<maven.surefire.plugin.version>2.21.0</maven.surefire.plugin.version>
<mockito.version>2.18.3</mockito.version>

<coherence.version>12.2.1-3-1</coherence.version>
<coherence.docker.version>12.2.1.3</coherence.docker.version>
<coherence.version>12.2.1-4-0-73690</coherence.version>
<coherence.docker.version>12.2.1.4.0-b73690</coherence.docker.version>

<test.image.prefix>SET test.image.prefix TO THE REGISTRY YOUR KUBERNETES CLUSTER WILL USE</test.image.prefix>
<release.image.prefix>${test.image.prefix}</release.image.prefix>
Expand Down
6 changes: 0 additions & 6 deletions utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<!-- TODO remove when Coherence 12.2.1.4 has been released -->
<excludes>
<exclude>com/oracle/coherence/k8s/FileBasedPasswordProvider.java</exclude>
</excludes>
</configuration>
</plugin>

<plugin>
Expand Down