KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xml > schema > cookies > ValidateSchemaSupportTest


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.xml.schema.cookies;
21
22 import java.net.URL JavaDoc;
23 import junit.framework.TestCase;
24 import org.netbeans.api.xml.cookies.CookieMessage;
25 import org.netbeans.api.xml.cookies.CookieObserver;
26 import org.xml.sax.InputSource JavaDoc;
27
28 /**
29  * Tries to parse severel schemas with imports, includes and errors.
30  *
31  * @author Petr Kuzel
32  */

33 public class ValidateSchemaSupportTest extends TestCase {
34
35     public ValidateSchemaSupportTest(String JavaDoc testName) {
36         super(testName);
37     }
38
39     /** Test of createParser method, of class org.netbeans.modules.xml.schema.cookies.ValidateSchemaSupport. */
40     public void testSchemaSupport() throws Exception JavaDoc {
41         System.out.println("testSchemaSupport");
42         
43         URL JavaDoc invalid = getClass().getResource("data/Invalid.xsd");
44         URL JavaDoc simple = getClass().getResource("data/Simple.xsd");
45         URL JavaDoc chameleon = getClass().getResource("data/Chameleon.xsd");
46         URL JavaDoc imports = getClass().getResource("data/Import.xsd");
47         URL JavaDoc include = getClass().getResource("data/Include.xsd");
48         
49         assertTrue("Invalid.xsd must not pass!", validate(invalid) == false);
50         assertTrue("Simple.xsd was marked as invalid!", validate(simple));
51         assertTrue("Chameleon.xsd was marked as invalid!", validate(chameleon));
52         assertTrue("Import.xsd was marked as invalid!", validate(imports));
53         assertTrue("Include.xsd was marked as invalid!", validate(include));
54     }
55     
56     public boolean validate(URL JavaDoc schema) throws Exception JavaDoc {
57         InputSource JavaDoc in = new InputSource JavaDoc(schema.toExternalForm());
58         ValidateSchemaSupport support = new ValidateSchemaSupport(in);
59         return support.validateXML(new CookieObserver() {
60             public void receive(CookieMessage msg) {
61                 System.out.println("MSG: " + msg.getMessage());
62             }
63         });
64     }
65     
66 }
67
Popular Tags