use of io.fabric8.kubernetes.client.dsl.NonNamespaceOperation 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();
});
}
use of io.fabric8.kubernetes.client.dsl.NonNamespaceOperation in project strimzi by strimzi.
the class AbstractResourceOperatorTest method deletionThrows.
@Test
public void deletionThrows(TestContext context) {
T resource = resource();
RuntimeException ex = new RuntimeException();
Resource mockResource = mock(resourceType());
when(mockResource.get()).thenReturn(resource);
when(mockResource.delete()).thenThrow(ex);
NonNamespaceOperation mockNameable = mock(NonNamespaceOperation.class);
when(mockNameable.withName(matches(RESOURCE_NAME))).thenReturn(mockResource);
MixedOperation mockCms = mock(MixedOperation.class);
when(mockCms.inNamespace(matches(NAMESPACE))).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.reconcile(resource.getMetadata().getNamespace(), resource.getMetadata().getName(), null).setHandler(ar -> {
assertTrue(ar.failed());
assertEquals(ex, ar.cause());
async.complete();
});
}
use of io.fabric8.kubernetes.client.dsl.NonNamespaceOperation in project strimzi by strimzi.
the class AbstractResourceOperatorTest method deleteWhenResourceDoesNotExistIsANop.
@Test
public void deleteWhenResourceDoesNotExistIsANop(TestContext context) {
T resource = resource();
Resource mockResource = mock(resourceType());
NonNamespaceOperation mockNameable = mock(NonNamespaceOperation.class);
when(mockNameable.withName(matches(RESOURCE_NAME))).thenReturn(mockResource);
MixedOperation mockCms = mock(MixedOperation.class);
when(mockCms.inNamespace(matches(NAMESPACE))).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.reconcile(resource.getMetadata().getNamespace(), resource.getMetadata().getName(), null).setHandler(ar -> {
assertTrue(ar.succeeded());
verify(mockResource).get();
verify(mockResource, never()).delete();
async.complete();
});
}
use of io.fabric8.kubernetes.client.dsl.NonNamespaceOperation in project strimzi by strimzi.
the class AbstractResourceOperatorTest method successfulDeletion.
@Test
public void successfulDeletion(TestContext context) {
T resource = resource();
Resource mockResource = mock(resourceType());
when(mockResource.get()).thenReturn(resource);
NonNamespaceOperation mockNameable = mock(NonNamespaceOperation.class);
when(mockNameable.withName(matches(RESOURCE_NAME))).thenReturn(mockResource);
MixedOperation mockCms = mock(MixedOperation.class);
when(mockCms.inNamespace(matches(NAMESPACE))).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.reconcile(resource.getMetadata().getNamespace(), resource.getMetadata().getName(), null).setHandler(ar -> {
if (ar.failed())
ar.cause().printStackTrace();
assertTrue(ar.succeeded());
verify(mockResource).delete();
async.complete();
});
}
Aggregations