|
What this is
Other links
The source code
// $Header: /home/cvs/jakarta-jmeter/src/htmlparser/org/htmlparser/tests/parserHelperTests/AttributeParserTest.java,v 1.2 2004/02/10 13:41:10 woolfel Exp $
/*
* ====================================================================
* Copyright 2002-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
// The developers of JMeter and Apache are greatful to the developers
// of HTMLParser for giving Apache Software Foundation a non-exclusive
// license. The performance benefits of HTMLParser are clear and the
// users of JMeter will benefit from the hard work the HTMLParser
// team. For detailed information about HTMLParser, the project is
// hosted on sourceforge at http://htmlparser.sourceforge.net/.
//
// HTMLParser was originally created by Somik Raha in 2000. Since then
// a healthy community of users has formed and helped refine the
// design so that it is able to tackle the difficult task of parsing
// dirty HTML. Derrick Oswald is the current lead developer and was kind
// enough to assist JMeter.
package org.htmlparser.tests.parserHelperTests;
import java.util.Hashtable;
import org.htmlparser.Parser;
import org.htmlparser.parserHelper.AttributeParser;
import org.htmlparser.tags.Tag;
import org.htmlparser.tags.data.TagData;
import org.htmlparser.tests.ParserTestCase;
public class AttributeParserTest extends ParserTestCase
{
private AttributeParser parser;
private Tag tag;
private Hashtable table;
public AttributeParserTest(String name)
{
super(name);
}
protected void setUp()
{
parser = new AttributeParser();
}
public void getParameterTableFor(String tagContents)
{
tag = new Tag(new TagData(0, 0, tagContents, ""));
table = parser.parseAttributes(tag);
}
public void testParseParameters()
{
getParameterTableFor("a b = \"c\"");
assertEquals("Value", "c", table.get("B"));
}
public void testParseTokenValues()
{
getParameterTableFor("a b = \"'\"");
assertEquals("Value", "'", table.get("B"));
}
public void testParseEmptyValues()
{
getParameterTableFor("a b = \"\"");
assertEquals("Value", "", table.get("B"));
}
public void testParseMissingEqual()
{
getParameterTableFor("a b\"c\"");
assertEquals("ValueB", "", table.get("B"));
}
public void testTwoParams()
{
getParameterTableFor("PARAM NAME=\"Param1\" VALUE=\"Somik\">\n");
assertEquals("Param1", "Param1", table.get("NAME"));
assertEquals("Somik", "Somik", table.get("VALUE"));
}
public void testPlainParams()
{
getParameterTableFor("PARAM NAME=Param1 VALUE=Somik");
assertEquals("Param1", "Param1", table.get("NAME"));
assertEquals("Somik", "Somik", table.get("VALUE"));
}
public void testValueMissing()
{
getParameterTableFor("INPUT type=\"checkbox\" name=\"Authorize\" value=\"Y\" checked");
assertEquals("Name of Tag", "INPUT", table.get(Tag.TAGNAME));
assertEquals("Type", "checkbox", table.get("TYPE"));
assertEquals("Name", "Authorize", table.get("NAME"));
assertEquals("Value", "Y", table.get("VALUE"));
assertEquals("Checked", "", table.get("CHECKED"));
}
/**
* This is a simulation of a bug reported by Dhaval Udani - wherein
* a space before the end of the tag causes a problem - there is a key
* in the table with just a space in it and an empty value
*/
public void testIncorrectSpaceKeyBug()
{
getParameterTableFor("TEXTAREA name=\"Remarks\" ");
// There should only be two keys..
assertEquals("There should only be two keys", 2, table.size());
// The first key is name
String key1 = "NAME";
String value1 = (String) table.get(key1);
assertEquals("Expected value 1", "Remarks", value1);
String key2 = Tag.TAGNAME;
assertEquals("Expected Value 2", "TEXTAREA", table.get(key2));
}
public void testNullTag()
{
getParameterTableFor("INPUT type=");
assertEquals("Name of Tag", "INPUT", table.get(Tag.TAGNAME));
assertEquals("Type", "", table.get("TYPE"));
}
public void testAttributeWithSpuriousEqualTo()
{
getParameterTableFor("a class=rlbA href=/news/866201.asp?0sl=-32");
assertStringEquals(
"href",
"/news/866201.asp?0sl=-32",
(String) table.get("HREF"));
}
public void testQuestionMarksInAttributes()
{
getParameterTableFor("a href=\"mailto:sam@neurogrid.com?subject=Site Comments\"");
assertStringEquals(
"href",
"mailto:sam@neurogrid.com?subject=Site Comments",
(String) table.get("HREF"));
assertStringEquals("tag name", "A", (String) table.get(Tag.TAGNAME));
}
/**
* Believe it or not Moi (vincent_aumont) wants htmlparser to parse a text file
* containing something that looks nearly like a tag:
*
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.