forked from fabric8io/kubernetes-client
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add DSL Support for
apps/v1#ControllerRevision
resource
Related to fabric8io#2912
- Loading branch information
1 parent
74cc63d
commit 9753ba6
Showing
5 changed files
with
157 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 116 additions & 0 deletions
116
kubernetes-tests/src/test/java/io/fabric8/kubernetes/client/mock/ControllerRevisionTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/** | ||
* Copyright (C) 2015 Red Hat, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.fabric8.kubernetes.client.mock; | ||
|
||
import io.fabric8.kubernetes.api.model.HasMetadata; | ||
import io.fabric8.kubernetes.api.model.apps.ControllerRevision; | ||
import io.fabric8.kubernetes.api.model.apps.ControllerRevisionBuilder; | ||
import io.fabric8.kubernetes.api.model.apps.ControllerRevisionList; | ||
import io.fabric8.kubernetes.api.model.apps.ControllerRevisionListBuilder; | ||
import io.fabric8.kubernetes.client.KubernetesClient; | ||
import io.fabric8.kubernetes.client.server.mock.EnableKubernetesMockClient; | ||
import io.fabric8.kubernetes.client.server.mock.KubernetesMockServer; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.net.HttpURLConnection; | ||
import java.util.List; | ||
|
||
import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat; | ||
|
||
@EnableKubernetesMockClient | ||
class ControllerRevisionTest { | ||
private KubernetesMockServer server; | ||
private KubernetesClient client; | ||
|
||
@Test | ||
void load() { | ||
List<HasMetadata> items = client.load(getClass().getResourceAsStream("/test-controllerrevision.yml")).get(); | ||
assertThat(items).isNotNull().hasSize(1); | ||
assertThat(items.get(0)).isInstanceOf(ControllerRevision.class); | ||
} | ||
|
||
@Test | ||
void create() { | ||
// Given | ||
ControllerRevision controllerRevision = getMockControllerRevision("my-cr1"); | ||
server.expect().post().withPath("/apis/apps/v1/namespaces/default/controllerrevisions") | ||
.andReturn(HttpURLConnection.HTTP_CREATED, controllerRevision) | ||
.once(); | ||
|
||
// When | ||
ControllerRevision myCr = client.apps().controllerRevisions().inNamespace("default").create(controllerRevision); | ||
|
||
// Then | ||
assertThat(myCr).isNotNull().hasFieldOrPropertyWithValue("metadata.name", "my-cr1"); | ||
} | ||
|
||
@Test | ||
void get() { | ||
// Given | ||
server.expect().get().withPath("/apis/apps/v1/namespaces/default/controllerrevisions/cr1") | ||
.andReturn(HttpURLConnection.HTTP_OK, getMockControllerRevision("cr1")) | ||
.once(); | ||
|
||
// When | ||
ControllerRevision cr1 = client.apps().controllerRevisions().inNamespace("default").withName("cr1").get(); | ||
|
||
// Then | ||
assertThat(cr1) | ||
.isNotNull() | ||
.hasFieldOrPropertyWithValue("metadata.name", "cr1"); | ||
} | ||
|
||
@Test | ||
void list() { | ||
// Given | ||
server.expect().get().withPath("/apis/apps/v1/namespaces/default/controllerrevisions") | ||
.andReturn(HttpURLConnection.HTTP_OK, new ControllerRevisionListBuilder().addToItems(getMockControllerRevision("cr1")).build()) | ||
.once(); | ||
|
||
// When | ||
ControllerRevisionList controllerRevisionList = client.apps().controllerRevisions().inNamespace("default").list(); | ||
|
||
// Then | ||
assertThat(controllerRevisionList).isNotNull(); | ||
assertThat(controllerRevisionList.getItems()).isNotNull().hasSize(1); | ||
assertThat(controllerRevisionList.getItems().get(0)).hasFieldOrPropertyWithValue("metadata.name", "cr1"); | ||
} | ||
|
||
@Test | ||
void delete() { | ||
// Given | ||
server.expect().delete().withPath("/apis/apps/v1/namespaces/default/controllerrevisions/cr1") | ||
.andReturn(HttpURLConnection.HTTP_OK, getMockControllerRevision("cr1")) | ||
.once(); | ||
|
||
// When | ||
Boolean isDeleted = client.apps().controllerRevisions().inNamespace("default").withName("cr1").delete(); | ||
|
||
// Then | ||
assertThat(isDeleted).isTrue(); | ||
} | ||
|
||
private ControllerRevision getMockControllerRevision(String name) { | ||
return new ControllerRevisionBuilder() | ||
.withNewMetadata().withName(name).endMetadata() | ||
.withNewDaemonSetData() | ||
.withApiVersion("apps/v1") | ||
.withKind("DaemonSet") | ||
.endDaemonSetData() | ||
.build(); | ||
} | ||
|
||
} |
23 changes: 23 additions & 0 deletions
23
kubernetes-tests/src/test/resources/test-controllerrevision.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# | ||
# Copyright (C) 2015 Red Hat, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
apiVersion: apps/v1 | ||
kind: ControllerRevision | ||
metadata: | ||
name: example | ||
data: | ||
key: value | ||
revision: 1 |