forked from kubernetes-client/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAttachTest.java
More file actions
108 lines (93 loc) · 4.07 KB
/
AttachTest.java
File metadata and controls
108 lines (93 loc) · 4.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
Copyright 2020 The Kubernetes Authors.
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.kubernetes.client;
import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;
import static com.github.tomakehurst.wiremock.client.WireMock.get;
import static com.github.tomakehurst.wiremock.client.WireMock.getRequestedFor;
import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo;
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.options;
import com.github.tomakehurst.wiremock.junit.WireMockRule;
import io.kubernetes.client.Attach.AttachResult;
import io.kubernetes.client.openapi.ApiClient;
import io.kubernetes.client.openapi.ApiException;
import io.kubernetes.client.util.ClientBuilder;
import java.io.IOException;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
/** Tests for the Attach helper class */
public class AttachTest {
private String namespace;
private String podName;
private String container;
private ApiClient client;
@Rule public WireMockRule wireMockRule = new WireMockRule(options().dynamicPort());
@Before
public void setup() throws IOException {
client = new ClientBuilder().setBasePath("http://localhost:" + wireMockRule.port()).build();
namespace = "default";
podName = "apod";
container = "acontainer";
}
@Test
public void testUrl() throws IOException, ApiException, InterruptedException {
Attach attach = new Attach(client);
wireMockRule.stubFor(
get(urlPathEqualTo("/api/v1/namespaces/" + namespace + "/pods/" + podName + "/attach"))
.willReturn(
aResponse()
.withStatus(404)
.withHeader("Content-Type", "application/json")
.withBody("{}")));
AttachResult res1 = attach.attach(namespace, podName, container, false, false);
AttachResult res2 = attach.attach(namespace, podName, true);
AttachResult res3 =
attach
.newConnectionBuilder(namespace, podName)
.setContainer(container)
.setStdin(false)
.setStdout(true)
.connect();
// TODO: Kill this sleep, the trouble is that the test tries to validate before the
// connection
// event has happened
Thread.sleep(2000);
res1.close();
res2.close();
res3.close();
wireMockRule.verify(
getRequestedFor(
urlPathEqualTo("/api/v1/namespaces/" + namespace + "/pods/" + podName + "/attach"))
.withQueryParam("stdin", equalTo("false"))
.withQueryParam("stdout", equalTo("false"))
.withQueryParam("stderr", equalTo("false"))
.withQueryParam("tty", equalTo("false"))
.withQueryParam("container", equalTo(container)));
wireMockRule.verify(
getRequestedFor(
urlPathEqualTo("/api/v1/namespaces/" + namespace + "/pods/" + podName + "/attach"))
.withQueryParam("stdin", equalTo("true"))
.withQueryParam("stdout", equalTo("false"))
.withQueryParam("stderr", equalTo("false"))
.withQueryParam("tty", equalTo("false")));
wireMockRule.verify(
getRequestedFor(
urlPathEqualTo("/api/v1/namespaces/" + namespace + "/pods/" + podName + "/attach"))
.withQueryParam("stdin", equalTo("false"))
.withQueryParam("stdout", equalTo("true"))
.withQueryParam("stderr", equalTo("false"))
.withQueryParam("tty", equalTo("false"))
.withQueryParam("container", equalTo(container)));
}
}