Test auf Null Domainoptionen zugefügt.

This commit is contained in:
Purodha Blissenbach 2012-07-18 13:31:58 +00:00
parent a377ffff3e
commit f27e744cd2

View File

@ -191,6 +191,28 @@ public class DomainTest {
}
}
@Test
public void testZeroOptions() {
String user = "aaa00";
String grantingTicketURL = cas.getGrantingTicketURL(user);
Map<String, Object> setParams = new HashMap<String, Object>();
Map<String, String> whereParams = new HashMap<String, String>();
setParams.put("user", "aaa00");
List<String> optionslist = new ArrayList<String>();
setParams.put("domainoptions", optionslist);
whereParams.put("name", "example01.org");
Object[] params = new Object[] { user,
cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL()),
setParams, whereParams };
try {
Object execute = client.execute(MODULE + ".update", params);
assertNotNull(execute);
assertEquals(getDomOptionsCount(),0);
} catch (XmlRpcException e) {
fail(e.getMessage());
}
}
private int getDomsCount() {
int count = 0;
String user = "aaa00";