(no commit message)
[utils] / wicket / components / src / test / java / org / wamblee / wicket / jquery / JQueryHeaderContributorTest.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 JQueryHeaderContributorTest {
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 JQueryHeaderContributor());
45         wicket.startPage(page);
46         wicket.assertRenderedPage(MyPage.class);
47         assertTrue(wicket.getServletResponse().getDocument().contains(
48             JQueryHeaderContributor.JQUERY_DEVELOPMENT));
49         //System.out.println(wicket.getServletResponse().getDocument());
50     }
51
52     @Test
53     public void testJQueryDeploymentMode() throws Exception {
54         wicket.destroy();
55         JQueryHeaderContributor.clear();
56         wicket = new WicketTester(new DummyWebApplication() {
57             @Override
58             public String getConfigurationType() {
59                 return Application.DEPLOYMENT;
60             }
61         });
62         MyPage page = new MyPage();
63         page.add(new JQueryHeaderContributor());
64         wicket.startPage(page);
65         wicket.assertRenderedPage(MyPage.class);
66         assertTrue(wicket.getServletResponse().getDocument().contains(
67             JQueryHeaderContributor.JQUERY_DEPLOYMENT));
68     }
69
70 }