(no commit message)
[utils] / wicket / components / src / test / java / org / wamblee / wicket / jquery / JQueryBehaviorTest.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
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 package org.wamblee.wicket.jquery;
17
18 import static junit.framework.Assert.*;
19
20 import org.apache.wicket.Application;
21 import org.apache.wicket.util.tester.WicketTester;
22 import org.apache.wicket.util.tester.WicketTester.DummyWebApplication;
23 import org.junit.After;
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.wamblee.wicket.MyPage;
27
28 public class JQueryBehaviorTest {
29     private WicketTester wicket;
30
31     @Before
32     public void setUp() {
33         wicket = new WicketTester();
34     }
35
36     @After
37     public void tearDown() {
38         wicket.destroy();
39     }
40
41     @Test
42     public void testJQueryDevelopmentMode() throws Exception {
43         MyPage page = new MyPage();
44         page.add(new JQueryBehavior());
45         wicket.startPage(page);
46         wicket.assertRenderedPage(MyPage.class);
47         assertTrue(wicket.getServletResponse().getDocument().contains(
48             JQueryBehavior.JQUERY_DEVELOPMENT));
49     }
50
51     @Test
52     public void testJQueryDeploymentMode() throws Exception {
53         wicket.destroy();
54         wicket = new WicketTester(new DummyWebApplication() {
55             @Override
56             public String getConfigurationType() {
57                 return Application.DEPLOYMENT;
58             }
59         });
60         MyPage page = new MyPage();
61         page.add(new JQueryBehavior());
62         wicket.startPage(page);
63         wicket.assertRenderedPage(MyPage.class);
64         assertTrue(wicket.getServletResponse().getDocument().contains(
65             JQueryBehavior.JQUERY_DEPLOYMENT));
66     }
67
68 }