69 lines
1.9 KiB
Java
69 lines
1.9 KiB
Java
package de.hsadmin.remote;
|
|
|
|
import static org.junit.Assert.assertTrue;
|
|
import static org.junit.Assert.fail;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
import org.apache.xmlrpc.XmlRpcException;
|
|
import org.apache.xmlrpc.client.XmlRpcClient;
|
|
import org.junit.After;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
|
|
import de.hsadmin.core.qserv.CommandShell;
|
|
import de.hsadmin.core.qserv.ShellException;
|
|
import de.hsadmin.core.util.Config;
|
|
|
|
public class SSLCertDomainTest {
|
|
|
|
private static final String MODULE = "domain";
|
|
|
|
private XmlRpcClient client;
|
|
private RemoteCASHelper cas;
|
|
private Config config;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
client = RemoteTestHelper.getClient();
|
|
cas = new RemoteCASHelper();
|
|
config = Config.getInstance();
|
|
}
|
|
|
|
@After
|
|
public void tearDown() throws Exception {
|
|
client = null;
|
|
cas = null;
|
|
config = null;
|
|
}
|
|
|
|
@Test
|
|
public void testSSLCertWithoutChain() {
|
|
String user = "ad";
|
|
String grantingTicketURL = cas.getGrantingTicketURL(user);
|
|
Map<String, String> setParams = new HashMap<String, String>();
|
|
setParams.put("name", "aaa02");
|
|
setParams.put("hive", "h81");
|
|
setParams.put("customer", config.getProperty("accountprefix.customer") + "-aaa");
|
|
setParams.put("basepac", "DW/B");
|
|
setParams.put("curinetaddr", "176.9.242.75");
|
|
Object[] params = new Object[] { user,
|
|
cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL()),
|
|
setParams };
|
|
try {
|
|
Object execute = client.execute(MODULE + ".add", params);
|
|
assertTrue(execute instanceof Map<?, ?>);
|
|
Thread.sleep(5000L);
|
|
CommandShell.execute("grep 'SSLCertificateChainFile' /var/local/lxc/hive/etc/apache2/sites-generated/aaa02.hostsharing.net");
|
|
fail("ShellException expected");
|
|
} catch (XmlRpcException e) {
|
|
fail(e.getMessage());
|
|
} catch (ShellException e) {
|
|
} catch (InterruptedException e) {
|
|
fail(e.getMessage());
|
|
}
|
|
}
|
|
|
|
}
|