]> git.argeo.org Git - gpl/argeo-slc.git/blob - SimpleScenarioTest.java
e6d5caba9a532c10f41882c1874d22b89073349f
[gpl/argeo-slc.git] / SimpleScenarioTest.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.it.webapp;
18
19 import org.argeo.slc.Condition;
20 import org.argeo.slc.msg.ObjectList;
21 import org.argeo.slc.server.client.SlcServerHttpClient;
22 import org.argeo.slc.server.unit.AbstractHttpClientTestCase;
23
24 public class SimpleScenarioTest extends AbstractHttpClientTestCase {
25 public void testSimpleScenario() throws Exception {
26 String moduleName = "org.argeo.slc.demo.basic";
27 getHttpClient().startFlowDefault(moduleName, "main", null);
28
29 getHttpClient().callServiceSafe(SlcServerHttpClient.LIST_RESULTS, null,
30 new Condition<ObjectList>() {
31
32 public Boolean check(ObjectList obj) {
33 return obj.getObjects().size() == 3;
34 }
35 }, null);
36
37 getHttpClient().callServiceSafe(SlcServerHttpClient.LIST_RESULTS, null,
38 new Condition<ObjectList>() {
39
40 public Boolean check(ObjectList obj) {
41 return obj.getObjects().size() == 3;
42 }
43 }, null);
44 }
45 }