001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * If you wish your version of this file to be governed by only the CDDL
025: * or only the GPL Version 2, indicate your decision by adding
026: * "[Contributor] elects to include this software in this distribution
027: * under the [CDDL or GPL Version 2] license." If you do not indicate a
028: * single choice of license, a recipient has the option to distribute
029: * your version of this file under either the CDDL, the GPL Version 2 or
030: * to extend the choice of license to its licensees as provided above.
031: * However, if you add GPL Version 2 code and therefore, elected the GPL
032: * Version 2 license, then the option applies only if the new code is
033: * made subject to such option by the copyright holder.
034: *
035: * Contributor(s):
036: *
037: * Portions Copyrighted 2008 Sun Microsystems, Inc.
038: */
039:
040: package org.netbeans.modules.sun.manager.jbi.management.model;
041:
042: import java.io.BufferedReader;
043: import java.io.File;
044: import java.io.FileReader;
045: import java.io.IOException;
046: import java.net.URI;
047: import java.net.URISyntaxException;
048: import org.junit.After;
049: import org.junit.AfterClass;
050: import org.junit.Before;
051: import org.junit.BeforeClass;
052: import org.junit.Test;
053: import static org.junit.Assert.*;
054:
055: /**
056: *
057: * @author jqian
058: */
059: public class JBIComponentConfigurationParserTest {
060:
061: public JBIComponentConfigurationParserTest() {
062: }
063:
064: @BeforeClass
065: public static void setUpClass() throws Exception {
066: }
067:
068: @AfterClass
069: public static void tearDownClass() throws Exception {
070: }
071:
072: @Before
073: public void setUp() throws URISyntaxException {
074: }
075:
076: @After
077: public void tearDown() {
078: }
079:
080: /**
081: * Test of parse method, of class ComponentConfigurationParser.
082: */
083: @Test
084: public void parse() throws Exception {
085: System.out.println("parse");
086:
087: URI xmlURI = getClass().getResource(
088: "resources/sun-jms-binding-jbi.xml").toURI();
089: File xmlFile = new File(xmlURI);
090: String xmlText = getContent(xmlFile);
091:
092: JBIComponentConfigurationDescriptor result = JBIComponentConfigurationParser
093: .parse(xmlText);
094: assertEquals(3, result.getChildren().size());
095: assertNotNull(result.getChild("ThreadCount"));
096: assertNotNull(result.getChild("JMSApplicationVariables"));
097: assertNotNull(result.getChild("JMSApplicationConfiguration"));
098: assertNull(result.getChild("FOO"));
099: }
100:
101: private static String getContent(File file) {
102: String ret = "";
103:
104: BufferedReader is = null;
105: try {
106: is = new BufferedReader(new FileReader(file));
107: String inputLine;
108: while ((inputLine = is.readLine()) != null) {
109: ret += inputLine;
110: }
111: } catch (IOException e) {
112: System.out.println("IOException: " + e);
113: } finally {
114: if (is != null) {
115: try {
116: is.close();
117: } catch (Exception e) {
118: }
119: }
120: }
121:
122: return ret;
123: }
124:
125: }
|