Skip to content

Commit

Permalink
Tag all tests, which are incompatible with podman
Browse files Browse the repository at this point in the history
  • Loading branch information
fedinskiy committed May 30, 2023
1 parent 1f4920b commit f3992f2
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ The suite uses `org.junit.jupiter.api.Tag` annotation to group similar tests tog
- `use-quarkus-openshift-extension`: tests use `quarkus-openshift` extension to deploy the app
- `serverless`: use Openshift Serverless to deploy the app
- `quarkus-cli`: tests use Quarkus CLI, which needs to be installed ( see https://quarkus.io/guides/cli-tooling for details)
- `podman-incompatible`: tests, which require Docker as a container engine and are not compatible with Podman.

## Running against Red Hat build of Quarkus

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import java.util.Objects;

import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

import com.github.dockerjava.api.model.Image;
Expand All @@ -13,6 +14,7 @@
import io.quarkus.test.utils.DockerUtils;

@QuarkusScenario
@Tag("podman-incompatible") //TODO: https://github.com/quarkusio/quarkus/issues/28721
public class DockerBuildIT {

private static final String DOCKER_IMG_NAME = "hello-world-app";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

@Tag("QUARKUS-1089")
@QuarkusScenario
@Tag("podman-incompatible") //todo create an issue
public class ConfluentKafkaAvroGroupIdIT extends BaseKafkaAvroGroupIdIT {

@KafkaContainer(vendor = KafkaVendor.CONFLUENT, withRegistry = true)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package io.quarkus.ts.messaging.kafka;

import org.junit.jupiter.api.Tag;

import io.quarkus.test.bootstrap.KafkaService;
import io.quarkus.test.bootstrap.RestService;
import io.quarkus.test.scenarios.QuarkusScenario;
Expand All @@ -8,6 +10,7 @@
import io.quarkus.test.services.containers.model.KafkaVendor;

@QuarkusScenario
@Tag("podman-incompatible") //todo create an issue
public class ConfluentKafkaAvroIT extends BaseKafkaAvroIT {

@KafkaContainer(vendor = KafkaVendor.CONFLUENT, withRegistry = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
@QuarkusScenario
@DisabledOnNative(reason = "Compatibility mode check in JVM mode is enough for this DB")
@Tag("fips-incompatible") // Reported in https://github.com/IBM/Db2/issues/43
@Tag("podman-incompatible") //TODO https://github.com/containers/podman/issues/16432
public class DB2DatabaseIT extends AbstractSqlDatabaseIT {

@Container(image = "${db2.image}", port = 50000, expectedLog = "Setup has completed")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

@QuarkusScenario
@Tag("fips-incompatible") // Reported in https://github.com/IBM/Db2/issues/43
@Tag("podman-incompatible") //TODO: https://github.com/containers/podman/issues/16432
public class DB2DatabaseIT extends AbstractSqlDatabaseIT {

@Container(image = "${db2.image}", port = 50000, expectedLog = "Setup has completed")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.quarkus.ts.sqldb.sqlapp;

import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
Expand Down Expand Up @@ -37,9 +38,16 @@ public void verifyIfUserIsInformedAboutMariadbDevServicePulling() {

@Test
public void verifyMysqlImage() {
Image postgresImg = DockerUtils.getImage(MARIA_DB_NAME, MARIA_DB_VERSION);
Assertions.assertFalse(postgresImg.getId().isEmpty(), String.format("%s:%s not found. " +
Image image = DockerUtils.getImage(MARIA_DB_NAME, MARIA_DB_VERSION);
Assertions.assertFalse(image.getId().isEmpty(), String.format("%s:%s not found. " +
"Notice that user set his own custom image by 'quarkus.datasource.devservices.image-name' property",
MARIA_DB_NAME, MARIA_DB_VERSION));
}

@AfterAll
public static void clear() {
DockerUtils.removeImage(MARIA_DB_NAME, MARIA_DB_VERSION);
app.close();
System.out.println("App closed");
}
}

0 comments on commit f3992f2

Please sign in to comment.