use of io.strimzi.test.annotations.ParallelTest in project strimzi by strimzi.
the class KafkaConnectBuildTest method testValidationUniqueNames.
@ParallelTest
public void testValidationUniqueNames() {
KafkaConnect kc = new KafkaConnectBuilder().withNewMetadata().withName(cluster).withNamespace(namespace).endMetadata().withNewSpec().withBootstrapServers("my-kafka:9092").withNewBuild().withNewDockerOutput().withImage("my-image:latest").withPushSecret("my-docker-credentials").endDockerOutput().withPlugins(new PluginBuilder().withName("my-connector").withArtifacts(jarArtifactWithChecksum).build(), new PluginBuilder().withName("my-connector").withArtifacts(jarArtifactNoChecksum).build()).endBuild().endSpec().build();
assertThrows(InvalidResourceException.class, () -> {
KafkaConnectBuild.fromCrd(new Reconciliation("test", kc.getKind(), kc.getMetadata().getNamespace(), kc.getMetadata().getName()), kc, VERSIONS);
});
}
use of io.strimzi.test.annotations.ParallelTest in project strimzi by strimzi.
the class KafkaConnectBuildTest method testBuildconfigWithDockerOutput.
@ParallelTest
public void testBuildconfigWithDockerOutput() {
Map<String, Quantity> limit = new HashMap<>();
limit.put("cpu", new Quantity("500m"));
limit.put("memory", new Quantity("512Mi"));
Map<String, Quantity> request = new HashMap<>();
request.put("cpu", new Quantity("1000m"));
request.put("memory", new Quantity("1Gi"));
KafkaConnect kc = new KafkaConnectBuilder().withNewMetadata().withName(cluster).withNamespace(namespace).endMetadata().withNewSpec().withBootstrapServers("my-kafka:9092").withNewBuild().withNewDockerOutput().withImage("my-image:latest").withPushSecret("my-docker-credentials").endDockerOutput().withPlugins(new PluginBuilder().withName("my-connector").withArtifacts(jarArtifactWithChecksum).build(), new PluginBuilder().withName("my-connector2").withArtifacts(jarArtifactNoChecksum).build()).withResources(new ResourceRequirementsBuilder().withLimits(limit).withRequests(request).build()).endBuild().endSpec().build();
KafkaConnectBuild build = KafkaConnectBuild.fromCrd(new Reconciliation("test", kc.getKind(), kc.getMetadata().getNamespace(), kc.getMetadata().getName()), kc, VERSIONS);
KafkaConnectDockerfile dockerfile = new KafkaConnectDockerfile("my-image:latest", kc.getSpec().getBuild());
BuildConfig bc = build.generateBuildConfig(dockerfile);
assertThat(bc.getMetadata().getName(), is(KafkaConnectResources.buildConfigName(cluster)));
assertThat(bc.getMetadata().getNamespace(), is(namespace));
Map<String, String> expectedDeploymentLabels = TestUtils.map(Labels.STRIMZI_CLUSTER_LABEL, this.cluster, Labels.STRIMZI_NAME_LABEL, KafkaConnectResources.buildPodName(cluster), Labels.STRIMZI_KIND_LABEL, KafkaConnect.RESOURCE_KIND, Labels.KUBERNETES_NAME_LABEL, KafkaConnectBuild.APPLICATION_NAME, Labels.KUBERNETES_INSTANCE_LABEL, this.cluster, Labels.KUBERNETES_PART_OF_LABEL, Labels.APPLICATION_NAME + "-" + this.cluster, Labels.KUBERNETES_MANAGED_BY_LABEL, AbstractModel.STRIMZI_CLUSTER_OPERATOR_NAME);
assertThat(bc.getMetadata().getLabels(), is(expectedDeploymentLabels));
assertThat(bc.getSpec().getSource().getDockerfile(), is(dockerfile.getDockerfile()));
assertThat(bc.getSpec().getOutput().getTo().getKind(), is("DockerImage"));
assertThat(bc.getSpec().getOutput().getTo().getName(), is("my-image:latest"));
assertThat(bc.getSpec().getOutput().getPushSecret().getName(), is("my-docker-credentials"));
assertThat(bc.getSpec().getStrategy().getDockerStrategy(), is(notNullValue()));
assertThat(bc.getSpec().getResources().getLimits(), is(limit));
assertThat(bc.getSpec().getResources().getRequests(), is(request));
assertThat(bc.getMetadata().getOwnerReferences().size(), is(1));
assertThat(bc.getMetadata().getOwnerReferences().get(0), is(build.createOwnerReference()));
}
use of io.strimzi.test.annotations.ParallelTest in project strimzi by strimzi.
the class KafkaConnectBuildTest method testFromCrd.
@ParallelTest
public void testFromCrd() {
KafkaConnect kc = new KafkaConnectBuilder().withNewMetadata().withName(cluster).withNamespace(namespace).endMetadata().withNewSpec().withBootstrapServers("my-kafka:9092").withNewBuild().withNewDockerOutput().withImage("my-image:latest").withPushSecret("my-docker-credentials").endDockerOutput().withPlugins(new PluginBuilder().withName("my-connector").withArtifacts(jarArtifactWithChecksum).build(), new PluginBuilder().withName("my-connector2").withArtifacts(jarArtifactNoChecksum).build()).endBuild().endSpec().build();
KafkaConnectBuild.fromCrd(new Reconciliation("test", kc.getKind(), kc.getMetadata().getNamespace(), kc.getMetadata().getName()), kc, VERSIONS);
}
use of io.strimzi.test.annotations.ParallelTest in project strimzi by strimzi.
the class KafkaConnectBuildTest method testDeploymentWithoutPushSecret.
@ParallelTest
public void testDeploymentWithoutPushSecret() {
KafkaConnect kc = new KafkaConnectBuilder().withNewMetadata().withName(cluster).withNamespace(namespace).endMetadata().withNewSpec().withBootstrapServers("my-kafka:9092").withNewBuild().withNewDockerOutput().withImage("my-image:latest").endDockerOutput().withPlugins(new PluginBuilder().withName("my-connector").withArtifacts(jarArtifactWithChecksum).build(), new PluginBuilder().withName("my-connector2").withArtifacts(jarArtifactNoChecksum).build()).endBuild().endSpec().build();
KafkaConnectBuild build = KafkaConnectBuild.fromCrd(new Reconciliation("test", kc.getKind(), kc.getMetadata().getNamespace(), kc.getMetadata().getName()), kc, VERSIONS);
Pod pod = build.generateBuilderPod(true, ImagePullPolicy.IFNOTPRESENT, null, null);
assertThat(pod.getSpec().getVolumes().size(), is(1));
assertThat(pod.getSpec().getContainers().get(0).getArgs(), is(defaultArgs));
assertThat(pod.getSpec().getVolumes().get(0).getName(), is("dockerfile"));
assertThat(pod.getSpec().getVolumes().get(0).getConfigMap().getName(), is(KafkaConnectResources.dockerFileConfigMapName(cluster)));
assertThat(pod.getSpec().getContainers().get(0).getVolumeMounts().size(), is(1));
assertThat(pod.getSpec().getContainers().get(0).getVolumeMounts().get(0).getName(), is("dockerfile"));
assertThat(pod.getSpec().getContainers().get(0).getVolumeMounts().get(0).getMountPath(), is("/dockerfile"));
}
use of io.strimzi.test.annotations.ParallelTest in project strimzi by strimzi.
the class KafkaConnectBuildTest method testValidKanikoOptions.
@ParallelTest
public void testValidKanikoOptions() {
List<String> expectedArgs = new ArrayList<>(defaultArgs);
expectedArgs.add("--reproducible");
expectedArgs.add("--single-snapshot");
expectedArgs.add("--log-format=json");
KafkaConnect kc = new KafkaConnectBuilder().withNewMetadata().withName(cluster).withNamespace(namespace).endMetadata().withNewSpec().withBootstrapServers("my-kafka:9092").withNewBuild().withNewDockerOutput().withImage("my-image:latest").withPushSecret("my-docker-credentials").withAdditionalKanikoOptions("--reproducible", "--single-snapshot", "--log-format=json").endDockerOutput().withPlugins(new PluginBuilder().withName("my-connector").withArtifacts(jarArtifactWithChecksum).build(), new PluginBuilder().withName("my-connector2").withArtifacts(jarArtifactNoChecksum).build()).endBuild().endSpec().build();
KafkaConnectBuild build = KafkaConnectBuild.fromCrd(new Reconciliation("test", kc.getKind(), kc.getMetadata().getNamespace(), kc.getMetadata().getName()), kc, VERSIONS);
Pod pod = build.generateBuilderPod(true, ImagePullPolicy.IFNOTPRESENT, null, null);
assertThat(pod.getSpec().getContainers().get(0).getArgs(), is(expectedArgs));
}
Aggregations