blob: f28f234f8e283be794c34c1632e478be4663f1e1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.ambari.server.security;
import com.google.inject.AbstractModule;
import com.google.inject.Guice;
import com.google.inject.Injector;
import junit.framework.Assert;
import org.apache.ambari.server.configuration.Configuration;
import org.apache.ambari.server.state.stack.OsFamily;
import org.easymock.EasyMockSupport;
import org.easymock.IAnswer;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import java.io.File;
import java.lang.reflect.Method;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import static org.easymock.EasyMock.expect;
public class CertificateManagerTest extends EasyMockSupport {
@Rule
public TemporaryFolder folder = new TemporaryFolder();
@Test
public void testSignAgentCrt() throws Exception {
Injector injector = getInjector();
File directory = folder.newFolder();
String hostname = "host1.example.com";
Map<String, String> configurationMap = new HashMap<String, String>();
configurationMap.put(Configuration.SRVR_KSTR_DIR_KEY, directory.getAbsolutePath());
configurationMap.put(Configuration.SRVR_CRT_PASS_KEY, "server_cert_pass");
configurationMap.put(Configuration.SRVR_CRT_NAME_KEY, "server_cert_name");
configurationMap.put(Configuration.SRVR_KEY_NAME_KEY, "server_key_name");
configurationMap.put(Configuration.PASSPHRASE_KEY, "passphrase");
Configuration configuration = injector.getInstance(Configuration.class);
expect(configuration.validateAgentHostnames()).andReturn(true).once();
expect(configuration.getConfigsMap()).andReturn(configurationMap).anyTimes();
Method runCommand = CertificateManager.class.getDeclaredMethod("runCommand", String.class);
final File agentCrtFile = new File(directory, String.format("%s.crt", hostname));
String expectedCommand = String.format("openssl ca -config %s/ca.config -in %s/%s.csr -out %s -batch -passin pass:%s -keyfile %s/%s -cert %s/%s",
directory.getAbsolutePath(),
directory.getAbsolutePath(),
hostname,
agentCrtFile.getAbsolutePath(),
configurationMap.get(Configuration.SRVR_CRT_PASS_KEY),
directory.getAbsolutePath(),
configurationMap.get(Configuration.SRVR_KEY_NAME_KEY),
directory.getAbsolutePath(),
configurationMap.get(Configuration.SRVR_CRT_NAME_KEY));
CertificateManager certificateManager = createMockBuilder(CertificateManager.class)
.addMockedMethod(runCommand)
.createMock();
expect(certificateManager.runCommand(expectedCommand))
.andAnswer(new IAnswer<Integer>() {
@Override
public Integer answer() throws Throwable {
return (agentCrtFile.createNewFile()) ? 0 : 1;
}
})
.once();
injector.injectMembers(certificateManager);
replayAll();
SignCertResponse response = certificateManager.signAgentCrt(hostname, "crtContent", "passphrase");
verifyAll();
Assert.assertEquals(SignCertResponse.OK_STATUS, response.getResult());
}
@Test
public void testSignAgentCrtInvalidHostname() throws Exception {
Injector injector = getInjector();
Configuration configuration = injector.getInstance(Configuration.class);
expect(configuration.validateAgentHostnames()).andReturn(true).once();
replayAll();
CertificateManager certificateManager = new CertificateManager();
injector.injectMembers(certificateManager);
SignCertResponse response = certificateManager.signAgentCrt("hostname; echo \"hello\" > /tmp/hello.txt;", "crtContent", "passphrase");
verifyAll();
Assert.assertEquals(SignCertResponse.ERROR_STATUS, response.getResult());
Assert.assertEquals("The agent hostname is not a valid hostname", response.getMessage());
}
@Test
public void testSignAgentCrtBadPassphrase() throws Exception {
Injector injector = getInjector();
Configuration configuration = injector.getInstance(Configuration.class);
expect(configuration.validateAgentHostnames()).andReturn(true).once();
expect(configuration.getConfigsMap()).andReturn(Collections.singletonMap(Configuration.PASSPHRASE_KEY, "some_passphrase")).once();
replayAll();
CertificateManager certificateManager = new CertificateManager();
injector.injectMembers(certificateManager);
SignCertResponse response = certificateManager.signAgentCrt("host1.example.com", "crtContent", "passphrase");
verifyAll();
Assert.assertEquals(SignCertResponse.ERROR_STATUS, response.getResult());
Assert.assertEquals("Incorrect passphrase from the agent", response.getMessage());
}
@Test
public void testSignAgentCrtInvalidHostnameIgnoreBadPassphrase() throws Exception {
Injector injector = getInjector();
Configuration configuration = injector.getInstance(Configuration.class);
expect(configuration.validateAgentHostnames()).andReturn(false).once();
expect(configuration.getConfigsMap()).andReturn(Collections.singletonMap(Configuration.PASSPHRASE_KEY, "some_passphrase")).once();
replayAll();
CertificateManager certificateManager = new CertificateManager();
injector.injectMembers(certificateManager);
SignCertResponse response = certificateManager.signAgentCrt("hostname; echo \"hello\" > /tmp/hello.txt;", "crtContent", "passphrase");
verifyAll();
Assert.assertEquals(SignCertResponse.ERROR_STATUS, response.getResult());
Assert.assertEquals("Incorrect passphrase from the agent", response.getMessage());
}
private Injector getInjector() {
return Guice.createInjector(new AbstractModule() {
@Override
protected void configure() {
bind(OsFamily.class).toInstance(createNiceMock(OsFamily.class));
bind(Configuration.class).toInstance(createMock(Configuration.class));
}
});
}
}