Test auf Null Domainoptionen zugefügt.
This commit is contained in:
parent
a377ffff3e
commit
f27e744cd2
@ -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() {
|
private int getDomsCount() {
|
||||||
int count = 0;
|
int count = 0;
|
||||||
String user = "aaa00";
|
String user = "aaa00";
|
||||||
|
Loading…
Reference in New Issue
Block a user