|
| 1 | +/* |
| 2 | + * Copyright 2024 The gRPC Authors |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package io.grpc.util; |
| 18 | + |
| 19 | +import static org.junit.Assert.assertArrayEquals; |
| 20 | +import static org.junit.Assert.assertEquals; |
| 21 | +import static org.junit.Assert.assertThrows; |
| 22 | +import static org.junit.Assert.assertTrue; |
| 23 | +import static org.junit.Assert.fail; |
| 24 | + |
| 25 | +import io.grpc.internal.FakeClock; |
| 26 | +import io.grpc.internal.testing.TestUtils; |
| 27 | +import io.grpc.testing.TlsTesting; |
| 28 | +import java.io.File; |
| 29 | +import java.security.PrivateKey; |
| 30 | +import java.security.cert.X509Certificate; |
| 31 | +import java.util.ArrayList; |
| 32 | +import java.util.List; |
| 33 | +import java.util.concurrent.ScheduledExecutorService; |
| 34 | +import java.util.concurrent.TimeUnit; |
| 35 | +import java.util.logging.Handler; |
| 36 | +import java.util.logging.Level; |
| 37 | +import java.util.logging.LogRecord; |
| 38 | +import java.util.logging.Logger; |
| 39 | +import org.junit.Before; |
| 40 | +import org.junit.Test; |
| 41 | +import org.junit.runner.RunWith; |
| 42 | +import org.junit.runners.JUnit4; |
| 43 | + |
| 44 | +/** Unit tests for {@link AdvancedTlsX509KeyManager}. */ |
| 45 | +@RunWith(JUnit4.class) |
| 46 | +public class AdvancedTlsX509KeyManagerTest { |
| 47 | + private static final String SERVER_0_KEY_FILE = "server0.key"; |
| 48 | + private static final String SERVER_0_PEM_FILE = "server0.pem"; |
| 49 | + private static final String CLIENT_0_KEY_FILE = "client.key"; |
| 50 | + private static final String CLIENT_0_PEM_FILE = "client.pem"; |
| 51 | + private static final String ALIAS = "default"; |
| 52 | + |
| 53 | + private ScheduledExecutorService executor; |
| 54 | + |
| 55 | + private File serverKey0File; |
| 56 | + private File serverCert0File; |
| 57 | + private File clientKey0File; |
| 58 | + private File clientCert0File; |
| 59 | + |
| 60 | + private PrivateKey serverKey0; |
| 61 | + private X509Certificate[] serverCert0; |
| 62 | + private PrivateKey clientKey0; |
| 63 | + private X509Certificate[] clientCert0; |
| 64 | + |
| 65 | + @Before |
| 66 | + public void setUp() throws Exception { |
| 67 | + executor = new FakeClock().getScheduledExecutorService(); |
| 68 | + serverKey0File = TestUtils.loadCert(SERVER_0_KEY_FILE); |
| 69 | + serverCert0File = TestUtils.loadCert(SERVER_0_PEM_FILE); |
| 70 | + clientKey0File = TestUtils.loadCert(CLIENT_0_KEY_FILE); |
| 71 | + clientCert0File = TestUtils.loadCert(CLIENT_0_PEM_FILE); |
| 72 | + serverKey0 = CertificateUtils.getPrivateKey(TlsTesting.loadCert(SERVER_0_KEY_FILE)); |
| 73 | + serverCert0 = CertificateUtils.getX509Certificates(TlsTesting.loadCert(SERVER_0_PEM_FILE)); |
| 74 | + clientKey0 = CertificateUtils.getPrivateKey(TlsTesting.loadCert(CLIENT_0_KEY_FILE)); |
| 75 | + clientCert0 = CertificateUtils.getX509Certificates(TlsTesting.loadCert(CLIENT_0_PEM_FILE)); |
| 76 | + } |
| 77 | + |
| 78 | + @Test |
| 79 | + public void credentialSetting() throws Exception { |
| 80 | + // Overall happy path checking of public API. |
| 81 | + AdvancedTlsX509KeyManager serverKeyManager = new AdvancedTlsX509KeyManager(); |
| 82 | + serverKeyManager.updateIdentityCredentials(serverKey0, serverCert0); |
| 83 | + assertEquals(serverKey0, serverKeyManager.getPrivateKey(ALIAS)); |
| 84 | + assertArrayEquals(serverCert0, serverKeyManager.getCertificateChain(ALIAS)); |
| 85 | + |
| 86 | + serverKeyManager.updateIdentityCredentialsFromFile(clientKey0File, clientCert0File); |
| 87 | + assertEquals(clientKey0, serverKeyManager.getPrivateKey(ALIAS)); |
| 88 | + assertArrayEquals(clientCert0, serverKeyManager.getCertificateChain(ALIAS)); |
| 89 | + |
| 90 | + serverKeyManager.updateIdentityCredentialsFromFile(serverKey0File, serverCert0File, 1, |
| 91 | + TimeUnit.MINUTES, executor); |
| 92 | + assertEquals(serverKey0, serverKeyManager.getPrivateKey(ALIAS)); |
| 93 | + assertArrayEquals(serverCert0, serverKeyManager.getCertificateChain(ALIAS)); |
| 94 | + } |
| 95 | + |
| 96 | + @Test |
| 97 | + public void credentialSettingParameterValidity() throws Exception { |
| 98 | + // Checking edge cases of public API parameter setting. |
| 99 | + AdvancedTlsX509KeyManager serverKeyManager = new AdvancedTlsX509KeyManager(); |
| 100 | + NullPointerException npe = assertThrows(NullPointerException.class, () -> serverKeyManager |
| 101 | + .updateIdentityCredentials(null, serverCert0)); |
| 102 | + assertEquals("key", npe.getMessage()); |
| 103 | + |
| 104 | + npe = assertThrows(NullPointerException.class, () -> serverKeyManager |
| 105 | + .updateIdentityCredentials(serverKey0, null)); |
| 106 | + assertEquals("certs", npe.getMessage()); |
| 107 | + |
| 108 | + npe = assertThrows(NullPointerException.class, () -> serverKeyManager |
| 109 | + .updateIdentityCredentialsFromFile(null, serverCert0File)); |
| 110 | + assertEquals("keyFile", npe.getMessage()); |
| 111 | + |
| 112 | + npe = assertThrows(NullPointerException.class, () -> serverKeyManager |
| 113 | + .updateIdentityCredentialsFromFile(serverKey0File, null)); |
| 114 | + assertEquals("certFile", npe.getMessage()); |
| 115 | + |
| 116 | + npe = assertThrows(NullPointerException.class, () -> serverKeyManager |
| 117 | + .updateIdentityCredentialsFromFile(serverKey0File, serverCert0File, 1, null, |
| 118 | + executor)); |
| 119 | + assertEquals("unit", npe.getMessage()); |
| 120 | + |
| 121 | + npe = assertThrows(NullPointerException.class, () -> serverKeyManager |
| 122 | + .updateIdentityCredentialsFromFile(serverKey0File, serverCert0File, 1, |
| 123 | + TimeUnit.MINUTES, null)); |
| 124 | + assertEquals("executor", npe.getMessage()); |
| 125 | + |
| 126 | + Logger log = Logger.getLogger(AdvancedTlsX509KeyManager.class.getName()); |
| 127 | + TestHandler handler = new TestHandler(); |
| 128 | + log.addHandler(handler); |
| 129 | + log.setUseParentHandlers(false); |
| 130 | + log.setLevel(Level.FINE); |
| 131 | + serverKeyManager.updateIdentityCredentialsFromFile(serverKey0File, serverCert0File, -1, |
| 132 | + TimeUnit.SECONDS, executor); |
| 133 | + log.removeHandler(handler); |
| 134 | + for (LogRecord record : handler.getRecords()) { |
| 135 | + if (record.getMessage().contains("Default value of ")) { |
| 136 | + assertTrue(true); |
| 137 | + return; |
| 138 | + } |
| 139 | + } |
| 140 | + fail("Log message related to setting default values not found"); |
| 141 | + } |
| 142 | + |
| 143 | + |
| 144 | + private static class TestHandler extends Handler { |
| 145 | + private final List<LogRecord> records = new ArrayList<>(); |
| 146 | + |
| 147 | + @Override |
| 148 | + public void publish(LogRecord record) { |
| 149 | + records.add(record); |
| 150 | + } |
| 151 | + |
| 152 | + @Override |
| 153 | + public void flush() { |
| 154 | + } |
| 155 | + |
| 156 | + @Override |
| 157 | + public void close() throws SecurityException { |
| 158 | + } |
| 159 | + |
| 160 | + public List<LogRecord> getRecords() { |
| 161 | + return records; |
| 162 | + } |
| 163 | + } |
| 164 | + |
| 165 | +} |
0 commit comments