KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > callback > TestPageCallback


1 // Copyright 2005 The Apache Software Foundation
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15 package org.apache.tapestry.callback;
16
17 import org.apache.hivemind.test.HiveMindTestCase;
18 import org.apache.tapestry.IPage;
19 import org.apache.tapestry.IRequestCycle;
20 import org.apache.tapestry.components.BaseComponentTestCase;
21
22 /**
23  * Tests for {@link org.apache.tapestry.callback.PageCallback}.
24  *
25  * @author Howard M. Lewis Ship
26  * @since 4.0
27  */

28 public class TestPageCallback extends BaseComponentTestCase
29 {
30     public void testByString()
31     {
32         IRequestCycle cycle = newCycle();
33
34         cycle.activate("Fred");
35
36         replayControls();
37
38         PageCallback callback = new PageCallback("Fred");
39
40         assertEquals("PageCallback[Fred]", callback.toString());
41
42         callback.performCallback(cycle);
43
44         verifyControls();
45     }
46
47     public void testByPage()
48     {
49         IRequestCycle cycle = newCycle();
50         IPage page = newPage("Barney");
51
52         cycle.activate("Barney");
53
54         replayControls();
55
56         PageCallback callback = new PageCallback(page);
57
58         assertEquals("PageCallback[Barney]", callback.toString());
59
60         callback.performCallback(cycle);
61
62         verifyControls();
63     }
64 }
65
Popular Tags