(no commit message)
[utils] / wicket / components / src / test / java / org / wamblee / wicket / behavior / OnClickConfirmationBehaviorTest.java
1 /*
2  * Copyright 2005-2011 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.behavior;
17
18 import static junit.framework.Assert.*;
19
20 import org.apache.wicket.Component;
21 import org.apache.wicket.util.tester.WicketTester;
22 import org.junit.After;
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.wamblee.wicket.MyPage;
26 import org.wamblee.wicket.jquery.JQueryHeaderContributor;
27
28 public class OnClickConfirmationBehaviorTest {
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 testRenderWithMsgString() {
43         MyPage page = new MyPage() {
44             @Override
45             protected Component createButton(String aId) {
46                 return super.createButton(aId).add(
47                     new OnClickConfirmationBehavior("Are you sure?"));
48             }
49         };
50         page.getForm().add(new PreselectionBehavior());
51         wicket.startPage(page);
52         wicket.assertRenderedPage(page.getClass());
53         // assertTrue(wicket.getServletResponse().getDocument().contains(NamespaceBehavior.NAMESPACE_SCRIPT));
54         String doc = wicket.getServletResponse().getDocument();
55         System.out.println(doc);
56         assert(doc.contains("onclick=\"var conf = confirm('Are you sure?');"));
57     }
58 }