use of io.fabric8.kubernetes.client.dsl.MixedOperation in project strimzi by strimzi.
the class AbtractReadyResourceOperatorTest method waitUntilReadyUnsuccessful.
@Test
public void waitUntilReadyUnsuccessful(TestContext context) {
T resource = resource();
if (!Readiness.isReadinessApplicable(resource)) {
return;
}
Resource mockResource = mock(resourceType());
when(mockResource.get()).thenReturn(resource);
when(mockResource.isReady()).thenReturn(Boolean.FALSE);
NonNamespaceOperation mockNameable = mock(NonNamespaceOperation.class);
when(mockNameable.withName(matches(resource.getMetadata().getName()))).thenReturn(mockResource);
MixedOperation mockCms = mock(MixedOperation.class);
when(mockCms.inNamespace(matches(resource.getMetadata().getNamespace()))).thenReturn(mockNameable);
C mockClient = mock(clientType());
mocker(mockClient, mockCms);
AbstractReadyResourceOperator<C, T, L, D, R, P> op = createResourceOperations(vertx, mockClient);
Async async = context.async();
op.readiness(NAMESPACE, RESOURCE_NAME, 20, 100).setHandler(ar -> {
assertTrue(ar.failed());
assertThat(ar.cause(), instanceOf(TimeoutException.class));
verify(mockResource, atLeastOnce()).get();
verify(mockResource, atLeastOnce()).isReady();
async.complete();
});
}
use of io.fabric8.kubernetes.client.dsl.MixedOperation in project strimzi by strimzi.
the class AbtractReadyResourceOperatorTest method waitUntilReadyThrows.
@Test
public void waitUntilReadyThrows(TestContext context) {
T resource = resource();
if (!Readiness.isReadinessApplicable(resource)) {
return;
}
RuntimeException ex = new RuntimeException();
Resource mockResource = mock(resourceType());
when(mockResource.get()).thenReturn(resource());
when(mockResource.isReady()).thenThrow(ex);
NonNamespaceOperation mockNameable = mock(NonNamespaceOperation.class);
when(mockNameable.withName(matches(resource.getMetadata().getName()))).thenReturn(mockResource);
MixedOperation mockCms = mock(MixedOperation.class);
when(mockCms.inNamespace(matches(resource.getMetadata().getNamespace()))).thenReturn(mockNameable);
C mockClient = mock(clientType());
mocker(mockClient, mockCms);
AbstractReadyResourceOperator<C, T, L, D, R, P> op = createResourceOperations(vertx, mockClient);
Async async = context.async();
op.readiness(NAMESPACE, RESOURCE_NAME, 20, 100).setHandler(ar -> {
assertTrue(ar.failed());
assertThat(ar.cause(), instanceOf(TimeoutException.class));
async.complete();
});
}
use of io.fabric8.kubernetes.client.dsl.MixedOperation in project strimzi by strimzi.
the class AbstractResourceOperatorTest method creationThrows.
@Test
public void creationThrows(TestContext context) {
T resource = resource();
RuntimeException ex = new RuntimeException();
Resource mockResource = mock(resourceType());
when(mockResource.get()).thenReturn(null);
NonNamespaceOperation mockNameable = mock(NonNamespaceOperation.class);
when(mockNameable.withName(matches(resource.getMetadata().getName()))).thenReturn(mockResource);
MixedOperation mockCms = mock(MixedOperation.class);
when(mockCms.inNamespace(matches(resource.getMetadata().getNamespace()))).thenReturn(mockNameable);
when(mockResource.create(any())).thenThrow(ex);
C mockClient = mock(clientType());
mocker(mockClient, mockCms);
AbstractResourceOperator<C, T, L, D, R, P> op = createResourceOperations(vertx, mockClient);
Async async = context.async();
op.createOrUpdate(resource).setHandler(ar -> {
assertTrue(ar.failed());
assertEquals(ex, ar.cause());
async.complete();
});
}
use of io.fabric8.kubernetes.client.dsl.MixedOperation in project strimzi by strimzi.
the class AbstractResourceOperatorTest method successfulCreation.
@Test
public void successfulCreation(TestContext context) {
T resource = resource();
Resource mockResource = mock(resourceType());
when(mockResource.get()).thenReturn(null);
NonNamespaceOperation mockNameable = mock(NonNamespaceOperation.class);
when(mockNameable.withName(matches(resource.getMetadata().getName()))).thenReturn(mockResource);
MixedOperation mockCms = mock(MixedOperation.class);
when(mockCms.inNamespace(matches(resource.getMetadata().getNamespace()))).thenReturn(mockNameable);
C mockClient = mock(clientType());
mocker(mockClient, mockCms);
AbstractResourceOperator<C, T, L, D, R, P> op = createResourceOperations(vertx, mockClient);
Async async = context.async();
op.createOrUpdate(resource).setHandler(ar -> {
if (ar.failed())
ar.cause().printStackTrace();
assertTrue(ar.succeeded());
verify(mockResource).get();
verify(mockResource).create(eq(resource));
async.complete();
});
}
use of io.fabric8.kubernetes.client.dsl.MixedOperation in project strimzi by strimzi.
the class AbstractResourceOperatorTest method existenceCheckThrows.
@Test
public void existenceCheckThrows(TestContext context) {
T resource = resource();
RuntimeException ex = new RuntimeException();
Resource mockResource = mock(resourceType());
when(mockResource.get()).thenThrow(ex);
NonNamespaceOperation mockNameable = mock(NonNamespaceOperation.class);
when(mockNameable.withName(matches(resource.getMetadata().getName()))).thenReturn(mockResource);
MixedOperation mockCms = mock(MixedOperation.class);
when(mockCms.inNamespace(matches(resource.getMetadata().getNamespace()))).thenReturn(mockNameable);
C mockClient = mock(clientType());
mocker(mockClient, mockCms);
AbstractResourceOperator<C, T, L, D, R, P> op = createResourceOperations(vertx, mockClient);
Async async = context.async();
op.createOrUpdate(resource).setHandler(ar -> {
assertTrue(ar.failed());
assertEquals(ex, ar.cause());
async.complete();
});
}
Aggregations