forked from jopenlibs/vault-java-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSSLTests.java
More file actions
296 lines (249 loc) · 12.1 KB
/
Copy pathSSLTests.java
File metadata and controls
296 lines (249 loc) · 12.1 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
package io.github.jopenlibs.vault;
import io.github.jopenlibs.vault.response.LogicalResponse;
import io.github.jopenlibs.vault.mock.MockVault;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.security.KeyStore;
import java.util.HashMap;
import org.eclipse.jetty.server.Server;
import org.junit.Test;
import java.util.Arrays;
import javax.net.ssl.SSLContext;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
/**
* Unit tests for the Vault driver, having no dependency on an actual Vault server instance being
* available. The tests in this class relate to handling of SSL certificates and SSL verification.
*/
public class SSLTests {
@Test
public void testSslVerify_Enabled_Get() throws Exception {
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().verify(false))
.engineVersion(1)
.build();
final Vault vault = Vault.create(vaultConfig);
final LogicalResponse response = vault.logical().read("secret/hello");
assertEquals(200, response.getRestResponse().getStatus());
assertEquals("mock", response.getData().get("value"));
VaultTestUtils.shutdownMockVault(server);
}
@Test(expected = VaultException.class)
public void testSslVerify_Disabled_Get() throws Exception {
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.build();
final Vault vault = Vault.create(vaultConfig);
try {
final LogicalResponse response = vault.logical().read("secret/hello");
} catch (Exception e) {
VaultTestUtils.shutdownMockVault(server);
throw e;
}
}
@Test
public void testSslVerify_Enabled_Post() throws Exception {
final MockVault mockVault = new MockVault(204, null);
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.sslConfig(new SslConfig().pemResource("/cert.pem").build())
.token("mock_token")
.build();
final Vault vault = Vault.create(vaultConfig);
HashMap<String, Object> testMap = new HashMap<>();
testMap.put("value", "world");
final LogicalResponse response = vault.logical().write("secret/hello", testMap);
assertEquals(204, response.getRestResponse().getStatus());
VaultTestUtils.shutdownMockVault(server);
}
@Test(expected = VaultException.class)
public void testSslVerify_Disabled_Post() throws Exception {
final MockVault mockVault = new MockVault(204, null);
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig().address("https://127.0.0.1:9998")
.token("mock_token").build();
final Vault vault = Vault.create(vaultConfig);
try {
final LogicalResponse response = vault.logical().read("secret/hello");
} catch (Exception e) {
VaultTestUtils.shutdownMockVault(server);
throw e;
}
}
@Test
public void testSslPem_File() throws Exception {
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final String tempDirectoryPath = System.getProperty("java.io.tmpdir");
final File pem = new File(tempDirectoryPath + File.separator + "cert.pem");
final InputStream input = this.getClass().getResourceAsStream("/cert.pem");
final FileOutputStream output = new FileOutputStream(pem);
int nextChar;
while ((nextChar = input.read()) != -1) {
output.write((char) nextChar);
}
input.close();
output.close();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().pemFile(pem).build())
.build();
final Vault vault = Vault.create(vaultConfig);
final LogicalResponse response = vault.logical().read("secret/hello");
VaultTestUtils.shutdownMockVault(server);
}
@Test
public void testSslPem_Resource_Get() throws Exception {
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().pemResource("/cert.pem").build())
.build();
final Vault vault = Vault.create(vaultConfig);
final LogicalResponse response = vault.logical().read("secret/hello");
VaultTestUtils.shutdownMockVault(server);
}
@Test
public void testSslPem_Resource_Post() throws Exception {
final MockVault mockVault = new MockVault(204, null);
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().pemResource("/cert.pem").build())
.build();
final Vault vault = Vault.create(vaultConfig);
HashMap<String, Object> testMap = new HashMap<>();
testMap.put("value", "world");
final LogicalResponse response = vault.logical()
.write("secret/hello", testMap);
VaultTestUtils.shutdownMockVault(server);
}
@Test
public void testSslPem_UTF8() throws Exception {
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final BufferedReader in = new BufferedReader(
new InputStreamReader(this.getClass().getResourceAsStream("/cert.pem")));
final StringBuilder builder = new StringBuilder();
StringBuilder utf8 = new StringBuilder();
String str;
while ((str = in.readLine()) != null) {
utf8.append(str).append(System.lineSeparator());//NOPMD
}
in.close();
final String pemUTF8 = utf8.toString();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().pemUTF8(pemUTF8).build())
.build();
final Vault vault = Vault.create(vaultConfig);
final LogicalResponse response = vault.logical().read("secret/hello");
VaultTestUtils.shutdownMockVault(server);
}
@Test
public void testSslJks_loadTrustStoreFromClasspath() throws Exception {
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().trustStoreResource("/keystore.jks").build())
.build();
final Vault vault = Vault.create(vaultConfig);
final LogicalResponse response = vault.logical().read("secret/hello");
VaultTestUtils.shutdownMockVault(server);
}
@Test
public void testSslJks_loadTrustStoreFromFile() throws Exception {
// Unfortunately, it's hard to build a filesystem path to the "src/test/resources/keystore.jks" file, because
// the current working directory might vary depend on how these tests are being run. So even though it's a
// hassle, the most reliable approach is to lookup this file as a classpath resource, and copy it to a
// known location (i.e. the system temp directory).
final InputStream inputStream = this.getClass().getResourceAsStream("/keystore.jks");
final String tempDirectoryPath = System.getProperty("java.io.tmpdir");
final File jks = new File(tempDirectoryPath + File.separator + "keystore.jks");
final FileOutputStream outputStream = new FileOutputStream(jks);
final byte[] buffer = new byte[1024];
int noOfBytes = 0;
while ((noOfBytes = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, noOfBytes);
}
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().trustStoreFile(jks).build())
.build();
final Vault vault = Vault.create(vaultConfig);
final LogicalResponse response = vault.logical().read("secret/hello");
VaultTestUtils.shutdownMockVault(server);
}
@Test
public void testSslJks_loadTrustStoreFromMemory() throws Exception {
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
trustStore.load(this.getClass().getResourceAsStream("/keystore.jks"),
"password".toCharArray());
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().trustStore(trustStore).build())
.build();
final Vault vault = Vault.create(vaultConfig);
final LogicalResponse response = vault.logical().read("secret/hello");
VaultTestUtils.shutdownMockVault(server);
}
@Test
public void testSslJks_loadKeyStoreAndTrustStore() throws Exception {
final MockVault mockVault = new MockVault(200, "{\"data\":{\"value\":\"mock\"}}");
final Server server = VaultTestUtils.initHttpsMockVault(mockVault);
server.start();
final VaultConfig vaultConfig = new VaultConfig()
.address("https://127.0.0.1:9998")
.token("mock_token")
.sslConfig(new SslConfig().trustStoreResource("/keystore.jks").keyStoreResource(
"/keystore.jks", "password").build())
.build();
final Vault vault = Vault.create(vaultConfig);
final LogicalResponse response = vault.logical().read("secret/hello");
VaultTestUtils.shutdownMockVault(server);
}
@Test
public void testSslContextFromPemSupportsTls13() throws Exception {
final SslConfig sslConfig = new SslConfig().pemResource("/cert.pem").build();
final SSLContext sslContext = sslConfig.getSslContext();
final java.util.List<String> supported = Arrays.asList(
sslContext.getSupportedSSLParameters().getProtocols());
assertTrue("SSLContext from PEM must support TLSv1.3", supported.contains("TLSv1.3"));
assertTrue("SSLContext from PEM must support TLSv1.2", supported.contains("TLSv1.2"));
}
}