KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencms > util > TestCmsHtmlParser


1 /*
2  * File : $Source: /usr/local/cvs/opencms/test/org/opencms/util/TestCmsHtmlParser.java,v $
3  * Date : $Date: 2006/03/27 14:52:42 $
4  * Version: $Revision: 1.2 $
5  *
6  * This library is part of OpenCms -
7  * the Open Source Content Mananagement System
8  *
9  * Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * For further information about Alkacon Software GmbH, please see the
22  * company website: http://www.alkacon.com
23  *
24  * For further information about OpenCms, please see the
25  * project website: http://www.opencms.org
26  *
27  * You should have received a copy of the GNU Lesser General Public
28  * License along with this library; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30  */

31
32 package org.opencms.util;
33
34 import org.opencms.i18n.CmsEncoder;
35
36 import junit.framework.TestCase;
37
38 /**
39  * Test case for <code>{@link org.opencms.util.CmsHtmlParser}</code>.<p>
40  *
41  * @author Alexander Kandzior
42  *
43  * @version $Revision: 1.2 $
44  *
45  * @since 6.2.0
46  */

47 public class TestCmsHtmlParser extends TestCase {
48
49     /**
50      * Default JUnit constructor.<p>
51      *
52      * @param arg0 JUnit parameters
53      */

54     public TestCmsHtmlParser(String JavaDoc arg0) {
55
56         super(arg0);
57     }
58
59     /**
60      * Tests the HTML extractor.<p>
61      *
62      * @throws Exception in case the test fails
63      */

64     public void testHtmlExtractor() throws Exception JavaDoc {
65
66         I_CmsHtmlNodeVisitor visitor1 = new CmsHtmlParser(true);
67         String JavaDoc content1 = CmsFileUtil.readFile(
68             "org/opencms/util/testHtml_01.html",
69             CmsEncoder.ENCODING_ISO_8859_1);
70         String JavaDoc result1 = visitor1.process(content1, CmsEncoder.ENCODING_ISO_8859_1);
71         System.out.println(result1 + "\n\n");
72         // assertEquals(content1, result1);
73

74         I_CmsHtmlNodeVisitor visitor2 = new CmsHtmlParser(true);
75         String JavaDoc content2 = CmsFileUtil.readFile(
76             "org/opencms/util/testHtml_02.html",
77             CmsEncoder.ENCODING_ISO_8859_1);
78         String JavaDoc result2 = visitor2.process(content2, CmsEncoder.ENCODING_ISO_8859_1);
79         System.out.println(result2 + "\n\n");
80         assertEquals(content2, result2);
81
82         I_CmsHtmlNodeVisitor visitor3 = new CmsHtmlParser(true);
83         String JavaDoc content3 = CmsFileUtil.readFile(
84             "org/opencms/util/testHtml_03.html",
85             CmsEncoder.ENCODING_ISO_8859_1);
86         String JavaDoc result3 = visitor3.process(content3, CmsEncoder.ENCODING_ISO_8859_1);
87         System.out.println(result3 + "\n\n");
88         assertEquals(content3, result3);
89         
90         // check with non-echo visitor, no output should be produced
91
I_CmsHtmlNodeVisitor visitor4 = new CmsHtmlParser();
92         result3 = visitor4.process(content3, CmsEncoder.ENCODING_ISO_8859_1);
93         System.out.println(result3 + "\n\n");
94         assertEquals("", result3);
95     }
96 }
Popular Tags