KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > gargoylesoftware > htmlunit > html > HtmlResetInputTest


1 /*
2  * Copyright (c) 2002, 2005 Gargoyle Software Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice,
8  * this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  * this list of conditions and the following disclaimer in the documentation
11  * and/or other materials provided with the distribution.
12  * 3. The end-user documentation included with the redistribution, if any, must
13  * include the following acknowledgment:
14  *
15  * "This product includes software developed by Gargoyle Software Inc.
16  * (http://www.GargoyleSoftware.com/)."
17  *
18  * Alternately, this acknowledgment may appear in the software itself, if
19  * and wherever such third-party acknowledgments normally appear.
20  * 4. The name "Gargoyle Software" must not be used to endorse or promote
21  * products derived from this software without prior written permission.
22  * For written permission, please contact info@GargoyleSoftware.com.
23  * 5. Products derived from this software may not be called "HtmlUnit", nor may
24  * "HtmlUnit" appear in their name, without prior written permission of
25  * Gargoyle Software Inc.
26  *
27  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
28  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
29  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARGOYLE
30  * SOFTWARE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
31  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
33  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
36  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37  */

38 package com.gargoylesoftware.htmlunit.html;
39
40 import com.gargoylesoftware.htmlunit.WebTestCase;
41
42 /**
43  * Tests for HtmlResetInput
44  *
45  * @version $Revision: 1.10 $
46  * @author <a HREF="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a>
47  */

48 public class HtmlResetInputTest extends WebTestCase {
49     /**
50      * Create an instance
51      *
52      * @param name The name of the test
53      */

54     public HtmlResetInputTest( final String name ) {
55         super( name );
56     }
57
58
59     /**
60      * @throws Exception if the test fails
61      */

62     public void testReset() throws Exception {
63         final String htmlContent
64             = "<html><head><title>foo</title></head><body>"
65             + "<form id='form1'>"
66             + "<input type='text' name='textfield1' id='textfield1' value='foo'/>"
67             + "<input type='password' name='password1' id='password1' value='foo'/>"
68             + "<input type='hidden' name='hidden1' id='hidden1' value='foo'/>"
69             + "<input type='radio' name='radioButton' value='foo' checked/>"
70             + "<input type='radio' name='radioButton' value='bar'/>"
71             + "<input type='checkbox' name='checkBox' value='check'/>"
72             + "<select id='select1'>"
73             + " <option id='option1' selected value='1'>Option1</option>"
74             + " <option id='option2' value='2'>Option2</option>"
75             + "</select>"
76             + "<textarea id='textarea1'>Foobar</textarea>"
77             + "<isindex prompt='Enter some text' id='isindex1'>"
78             + "<input type='reset' name='resetButton' value='pushme'/>"
79             + "</form></body></html>";
80         final HtmlPage page = loadPage(htmlContent);
81         
82         final HtmlForm form = ( HtmlForm )page.getHtmlElementById( "form1" );
83         final HtmlResetInput resetInput = (HtmlResetInput)form.getInputByName("resetButton");
84
85         // change all the values to something else
86
form.setCheckedRadioButton("radioButton", "bar");
87         ((HtmlCheckBoxInput)form.getInputByName("checkBox")).setChecked(true);
88         ((HtmlOption)page.getHtmlElementById("option1")).setSelected(false);
89         ((HtmlOption)page.getHtmlElementById("option2")).setSelected(true);
90         ((HtmlTextArea)page.getHtmlElementById("textarea1")).setText("Flintstone");
91         ((HtmlTextInput)page.getHtmlElementById("textfield1")).setValueAttribute("Flintstone");
92         ((HtmlHiddenInput)page.getHtmlElementById("hidden1")).setValueAttribute("Flintstone");
93         ((HtmlPasswordInput)page.getHtmlElementById("password1")).setValueAttribute("Flintstone");
94         ((HtmlIsIndex)page.getHtmlElementById("isindex1")).setValue("Flintstone");
95
96         // Check to make sure they did get changed
97
assertEquals( "bar", form.getCheckedRadioButton("radioButton").getValueAttribute());
98         assertTrue( ((HtmlCheckBoxInput)form.getInputByName("checkBox")).isChecked() );
99         assertFalse(((HtmlOption)page.getHtmlElementById("option1")).isSelected());
100         assertTrue(((HtmlOption)page.getHtmlElementById("option2")).isSelected());
101         assertEquals( "Flintstone", ((HtmlTextArea)page.getHtmlElementById("textarea1")).getText());
102         assertEquals( "Flintstone", ((HtmlTextInput)page.getHtmlElementById("textfield1")).getValueAttribute());
103         assertEquals( "Flintstone", ((HtmlHiddenInput)page.getHtmlElementById("hidden1")).getValueAttribute());
104         assertEquals( "Flintstone", ((HtmlIsIndex)page.getHtmlElementById("isindex1")).getValue());
105
106         final HtmlPage secondPage = (HtmlPage)resetInput.click();
107         assertSame( page, secondPage );
108
109         // Check to make sure all the values have been set back to their original values.
110
assertEquals( "foo", form.getCheckedRadioButton("radioButton").getValueAttribute());
111         assertFalse( ((HtmlCheckBoxInput)form.getInputByName("checkBox")).isChecked() );
112         assertTrue(((HtmlOption)page.getHtmlElementById("option1")).isSelected());
113         assertFalse(((HtmlOption)page.getHtmlElementById("option2")).isSelected());
114         assertEquals( "Foobar", ((HtmlTextArea)page.getHtmlElementById("textarea1")).getText());
115         assertEquals( "foo", ((HtmlTextInput)page.getHtmlElementById("textfield1")).getValueAttribute());
116         assertEquals( "foo", ((HtmlHiddenInput)page.getHtmlElementById("hidden1")).getValueAttribute());
117         assertEquals( "foo", ((HtmlPasswordInput)page.getHtmlElementById("password1")).getValueAttribute());
118         assertEquals( "", ((HtmlIsIndex)page.getHtmlElementById("isindex1")).getValue());
119     }
120
121 }
122
Popular Tags