use of com.bakdata.quick.manager.gateway.GatewayService in project quick by bakdata.
the class ImageUpdaterTest method shouldUpdateMultipleGateways.
@Test
void shouldUpdateMultipleGateways() {
final GatewayClient gatewayClient = Mockito.mock(GatewayClient.class);
final GatewayResourceLoader loader = new GatewayResourceLoader(new KubernetesResources(), this.getDeploymentConfig(), this.getResourceConfig(), NAMESPACE);
final GatewayService gatewayService = new KubernetesGatewayService(this.getManagerClient(), gatewayClient, new GraphQLToAvroConverter("test.avro"), loader);
Completable.mergeArray(gatewayService.createGateway(new GatewayCreationData("gateway", 1, null, null)), gatewayService.createGateway(new GatewayCreationData("gateway2", 1, null, null))).blockingAwait();
assertThat(this.getDeployments()).hasSize(2).extracting(ImageUpdaterTest::getContainerImage).allMatch(name -> name.equals(String.format("%s/%s:%s", DOCKER_REGISTRY, GatewayResources.GATEWAY_IMAGE, DEFAULT_IMAGE_TAG)));
final DeploymentConfig newDeploymentConfig = this.createNewDeploymentConfig();
final ImageUpdater imageUpdater = new ImageUpdater(this.client, newDeploymentConfig);
imageUpdater.updateManagedDeployments();
assertThat(this.getDeployments()).hasSize(2).extracting(ImageUpdaterTest::getContainerImage).allMatch(name -> name.equals(String.format("%s/%s:%s", DOCKER_REGISTRY, GatewayResources.GATEWAY_IMAGE, NEW_TAG)));
}
use of com.bakdata.quick.manager.gateway.GatewayService in project quick by bakdata.
the class ImageUpdaterTest method shouldNotUpdateFixedGateway.
@Test
void shouldNotUpdateFixedGateway() {
final GatewayClient gatewayClient = Mockito.mock(GatewayClient.class);
final GatewayResourceLoader loader = new GatewayResourceLoader(new KubernetesResources(), this.getDeploymentConfig(), this.getResourceConfig(), NAMESPACE);
final GatewayService gatewayService = new KubernetesGatewayService(this.getManagerClient(), gatewayClient, new GraphQLToAvroConverter("test.avro"), loader);
gatewayService.createGateway(new GatewayCreationData("gateway", 1, FIXED_TAG, null)).blockingAwait();
assertThat(this.getDeployments()).hasSize(1).first().extracting(ImageUpdaterTest::getContainerImage).isEqualTo(String.format("%s/%s:%s", DOCKER_REGISTRY, GatewayResources.GATEWAY_IMAGE, FIXED_TAG));
final DeploymentConfig newDeploymentConfig = this.createNewDeploymentConfig();
final ImageUpdater imageUpdater = new ImageUpdater(this.client, newDeploymentConfig);
imageUpdater.updateManagedDeployments();
assertThat(this.getDeployments()).hasSize(1).first().extracting(ImageUpdaterTest::getContainerImage).isEqualTo(String.format("%s/%s:%s", DOCKER_REGISTRY, GatewayResources.GATEWAY_IMAGE, FIXED_TAG));
}
use of com.bakdata.quick.manager.gateway.GatewayService in project quick by bakdata.
the class ImageUpdaterTest method shouldUpdateGateway.
@Test
void shouldUpdateGateway() {
final GatewayClient gatewayClient = Mockito.mock(GatewayClient.class);
final GatewayResourceLoader loader = new GatewayResourceLoader(new KubernetesResources(), this.getDeploymentConfig(), this.getResourceConfig(), NAMESPACE);
final GatewayService gatewayService = new KubernetesGatewayService(this.getManagerClient(), gatewayClient, new GraphQLToAvroConverter("test.avro"), loader);
gatewayService.createGateway(new GatewayCreationData("gateway", 1, null, null)).blockingAwait();
assertThat(this.getDeployments()).hasSize(1).first().extracting(ImageUpdaterTest::getContainerImage).isEqualTo(String.format("%s/%s:%s", DOCKER_REGISTRY, GatewayResources.GATEWAY_IMAGE, DEFAULT_IMAGE_TAG));
final DeploymentConfig newDeploymentConfig = this.createNewDeploymentConfig();
final ImageUpdater imageUpdater = new ImageUpdater(this.client, newDeploymentConfig);
imageUpdater.updateManagedDeployments();
assertThat(this.getDeployments()).hasSize(1).first().extracting(ImageUpdaterTest::getContainerImage).isEqualTo(String.format("%s/%s:%s", DOCKER_REGISTRY, GatewayResources.GATEWAY_IMAGE, NEW_TAG));
}
Aggregations