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: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.upgrade.systemoptions;
043:
044: import java.io.File;
045: import java.io.IOException;
046: import java.net.URL;
047: import java.util.Arrays;
048: import java.util.List;
049: import java.util.TreeSet;
050: import org.netbeans.junit.NbTestCase;
051: import org.openide.filesystems.FileObject;
052: import org.openide.filesystems.FileUtil;
053:
054: /**
055: * @author Radek Matous
056: */
057: public abstract class BasicTestForImport extends NbTestCase {
058: private FileObject f;
059: private String fileName;
060:
061: public BasicTestForImport(String testName, String fileName) {
062: super (testName);
063: this .fileName = fileName;
064: }
065:
066: protected void setUp() throws Exception {
067: URL u = getClass().getResource(getFileName());
068: File ff = new File(u.getFile());//getDataDir(),getFileName()
069: f = FileUtil.toFileObject(ff);
070: assert f != null;
071: }
072:
073: private final String getFileName() {
074: return fileName;
075: }
076:
077: /**
078: * overload this test in your TestCase see <code>IDESettingsTest</code>
079: */
080: public void testPropertyNames() throws Exception {
081: assertPropertyNames(new String[] { "just_cause_fail" });
082: }
083:
084: public void testPreferencesNodePath() throws Exception {
085: assertPreferencesNodePath("just_cause_fail");
086: }
087:
088: private DefaultResult readSystemOption(boolean types)
089: throws IOException, ClassNotFoundException {
090: return SystemOptionsParser.parse(f, types);
091: }
092:
093: public void assertPropertyNames(final String[] propertyNames)
094: throws IOException, ClassNotFoundException {
095: assertEquals(new TreeSet<String>(Arrays.asList(propertyNames))
096: .toString(), new TreeSet<String>(Arrays
097: .asList(readSystemOption(false).getPropertyNames()))
098: .toString());
099: }
100:
101: public void assertProperty(final String propertyName,
102: final String expected) throws IOException,
103: ClassNotFoundException {
104: Result support = readSystemOption(false);
105:
106: List parsedPropNames = Arrays
107: .asList(support.getPropertyNames());
108:
109: String parsedPropertyName = null;
110: boolean isFakeName = !parsedPropNames.contains(propertyName);
111: if (isFakeName) {
112: assertTrue(propertyName + " (alias: " + parsedPropertyName
113: + ") not found in: " + parsedPropNames,
114: parsedPropNames.contains(parsedPropertyName));
115: } else {
116: parsedPropertyName = propertyName;
117: }
118:
119: assertNotNull(parsedPropertyName);
120: Class expectedClass = null;
121: String actual = support.getProperty(parsedPropertyName);
122: if (actual == null) {
123: assertNull(expectedClass);
124: assertEquals(expected, actual);
125: } else {
126: assertEquals(expected, actual);
127: }
128: }
129:
130: public void assertPropertyType(final String propertyName,
131: final String expected) throws IOException,
132: ClassNotFoundException {
133: Result support = readSystemOption(true);
134: List parsedPropNames = Arrays
135: .asList(support.getPropertyNames());
136: String parsedPropertyName = null;
137: boolean isFakeName = !parsedPropNames.contains(propertyName);
138: if (isFakeName) {
139: assertTrue(propertyName + " (alias: " + parsedPropertyName
140: + ") not found in: " + parsedPropNames,
141: parsedPropNames.contains(parsedPropertyName));
142: } else {
143: parsedPropertyName = propertyName;
144: }
145:
146: assertNotNull(parsedPropertyName);
147: String actual = support.getProperty(parsedPropertyName);
148: if (actual == null) {
149: assertNull(expected);
150: } else {
151: Class expectedClass = null;
152: try {
153: expectedClass = Class.forName(expected);
154: } catch (ClassNotFoundException ex) {
155: }
156: if (expectedClass != null) {
157: Class cls = Class.forName(actual);
158: assertTrue(expectedClass + " but : " + cls,
159: expectedClass.isAssignableFrom(cls));
160: } else {
161: assertEquals(expected, actual);
162: }
163: assertEquals(expected, actual);
164: }
165: }
166:
167: public void assertPropertyTypeAndValue(String propertyName,
168: String expectedType, String expectedValue) throws Exception {
169: assertPropertyType(propertyName, expectedType);
170: assertProperty(propertyName, expectedValue);
171: }
172:
173: public void assertPreferencesNodePath(
174: final String expectedInstanceName) throws IOException,
175: ClassNotFoundException {
176: DefaultResult support = readSystemOption(true);
177: assertEquals(expectedInstanceName, "/"
178: + support.getModuleName());//NOI18N
179: }
180: }
|