141 lines
4.0 KiB
Java
141 lines
4.0 KiB
Java
package de.hsadmin.remote;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.assertNotNull;
|
|
import static org.junit.Assert.assertNull;
|
|
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;
|
|
|
|
public class DomainTest {
|
|
|
|
private static final String MODULE = "domain";
|
|
|
|
private XmlRpcClient client;
|
|
private RemoteCASHelper cas;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
client = RemoteTestHelper.getClient();
|
|
cas = new RemoteCASHelper();
|
|
}
|
|
|
|
@After
|
|
public void tearDown() throws Exception {
|
|
client = null;
|
|
cas = null;
|
|
}
|
|
|
|
@Test
|
|
public void testSearchAllAsPacAdmin() {
|
|
String user = "peh00";
|
|
String grantingTicketURL = cas.getGrantingTicketURL(user);
|
|
Map<String, String> whereParams = new HashMap<String, String>();
|
|
Object[] params = new Object[] { user,
|
|
cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL()),
|
|
whereParams };
|
|
try {
|
|
Object execute = client.execute(MODULE + ".search", params);
|
|
Object[] result = (Object[]) execute;
|
|
assertEquals(29, result.length);
|
|
for (Object o : result) {
|
|
if (o instanceof Map<?, ?>) {
|
|
Map<?, ?> row = (Map<?, ?>) o;
|
|
assertEquals("peh00", row.get("user"));
|
|
} else {
|
|
fail("map expected");
|
|
}
|
|
}
|
|
} catch (XmlRpcException e) {
|
|
fail(e.getMessage());
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void testUpdate() {
|
|
String user = "peh00";
|
|
String grantingTicketURL = cas.getGrantingTicketURL(user);
|
|
Map<String, String> setParams = new HashMap<String, String>();
|
|
Map<String, String> whereParams = new HashMap<String, String>();
|
|
setParams.put("user", "peh00-phor");
|
|
whereParams.put("name", "smb-linn.de");
|
|
Object[] params = new Object[] { user,
|
|
cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL()),
|
|
setParams, whereParams };
|
|
try {
|
|
Object execute = client.execute(MODULE + ".update", params);
|
|
assertNotNull(execute);
|
|
fail("exception expected");
|
|
} catch (XmlRpcException e) {
|
|
// System.out.println(e.getMessage());
|
|
}
|
|
}
|
|
|
|
|
|
@Test
|
|
public void testCreate() {
|
|
int count = getDomsCount();
|
|
String user = "peh00";
|
|
String grantingTicketURL = cas.getGrantingTicketURL(user);
|
|
Map<String, String> setParams = new HashMap<String, String>();
|
|
setParams.put("name", "f6n.de");
|
|
setParams.put("user", "peh00");
|
|
Object[] params = new Object[] { user,
|
|
cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL()),
|
|
setParams };
|
|
try {
|
|
Object execute = client.execute(MODULE + ".add", params);
|
|
assertTrue(execute instanceof Map<?, ?>);
|
|
} catch (XmlRpcException e) {
|
|
fail(e.getMessage());
|
|
}
|
|
assertEquals(count + 1, getDomsCount());
|
|
}
|
|
|
|
@Test
|
|
public void testDelete() {
|
|
int count = getDomsCount();
|
|
String user = "peh00";
|
|
String grantingTicketURL = cas.getGrantingTicketURL(user);
|
|
Map<String, String> whereParams = new HashMap<String, String>();
|
|
whereParams.put("name", "f6n.de");
|
|
Object[] params = new Object[] { user,
|
|
cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL()),
|
|
whereParams };
|
|
try {
|
|
Object execute = client.execute(MODULE + ".delete", params);
|
|
assertNull(execute);
|
|
} catch (XmlRpcException e) {
|
|
fail(e.getMessage());
|
|
}
|
|
assertEquals(count - 1, getDomsCount());
|
|
}
|
|
|
|
private int getDomsCount() {
|
|
int count = 0;
|
|
String user = "peh00";
|
|
String grantingTicketURL = cas.getGrantingTicketURL(user);
|
|
Map<String, String> whereParams = new HashMap<String, String>();
|
|
Object[] params = new Object[] { user,
|
|
cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL()),
|
|
whereParams };
|
|
try {
|
|
Object execute = client.execute(MODULE + ".search", params);
|
|
Object[] result = (Object[]) execute;
|
|
count = result.length;
|
|
} catch (XmlRpcException e) {
|
|
fail(e.getMessage());
|
|
}
|
|
return count;
|
|
}
|
|
|
|
}
|