ZATS ConnectAsIncluded"
Line 19: | Line 19: | ||
'''Test.java''' | '''Test.java''' | ||
− | <source lang="java" start="10" high="12, 13, | + | <source lang="java" start="10" high="12, 13, 15"> |
@Test | @Test | ||
public void test() { | public void test() { | ||
Line 31: | Line 31: | ||
</source> | </source> | ||
* '''Line 12-13''': | * '''Line 12-13''': | ||
− | * '''Line | + | * '''Line 15''': |
Revision as of 04:37, 5 July 2012
Since 1.1.0
ZK provides the Include component allows us to include or reuse ZUL page or others.[1] We can directly test a ZUL page which is included by outer pages; just connect to such ZUL through the Client.connect(String) method as usual.
Connect as Included
Sometimes, we pass some arguments to included ZUL pages for flexibility purpose, and the arguments can be retrieved from the implicit objects arg inside of ZUL pages. ZATS Mimic introduces another connecting method Client.connectAsIncluded(String, Map<String, Object>) for above case. Following is a typical example of included ZUL page with arguments:
included.zul
<zk>
<label id="msg" value="${arg.message }" />
</zk>
- Line 2: The value is retrieved from arguments.
Test.java
@Test
public void test() {
Map<String, Object> args = new HashMap<String, Object>();
args.put("message", "Hello world!");
Client client = Zats.newClient();
DesktopAgent desktop = client.connectAsIncluded("/~./basic/included.zul", args);
Label msg = desktop.query("#msg").as(Label.class);
Assert.assertEquals("Hello world!", msg.getValue());
}
- Line 12-13:
- Line 15:
Notes
- ↑ For more details, please refer to ZK_Developer's_Reference/UI_Composing/ZUML/Include and ZK_Component_Reference/Essential_Components/Include
Including with Defer Mode
There is no different between testing a normal ZUL or testing a included ZUL directly. We can just use the normal Client.connect(String url) method to connect ZUL.