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.junit;
041:
042: import java.util.Set;
043: import junit.framework.Test;
044: import junit.framework.TestCase;
045:
046: /**
047: *
048: * @author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
049: */
050: public class NbModuleSuiteTest extends TestCase {
051:
052: public NbModuleSuiteTest(String testName) {
053: super (testName);
054: }
055:
056: @Override
057: protected void setUp() throws Exception {
058: super .setUp();
059: }
060:
061: @Override
062: protected void tearDown() throws Exception {
063: super .tearDown();
064: }
065:
066: /**
067: * Test of run method, of class NbModuleSuite.
068: */
069: public void testRun() {
070: Test instance = NbModuleSuite.create(T.class, null, null);
071: junit.textui.TestRunner.run(instance);
072:
073: assertEquals("OK", System.getProperty("t.one"));
074: }
075:
076: public void testModulesForCL() throws Exception {
077: Set<String> s = NbModuleSuite.S.findEnabledModules(ClassLoader
078: .getSystemClassLoader());
079: assertEquals("Three modules: " + s, 3, s.size());
080:
081: assertTrue("Util: " + s, s.contains("org.openide.util"));
082: assertTrue("nbjunit: " + s, s
083: .contains("org.netbeans.modules.nbjunit"));
084: assertTrue("insane: " + s, s.contains("org.netbeans.insane"));
085: }
086:
087: public void testIfOneCanLoadFromToolsJarOneShallDoThatInTheFrameworkAsWell()
088: throws Exception {
089:
090: Class<?> vmm;
091: try {
092: vmm = ClassLoader.getSystemClassLoader().loadClass(
093: "com.sun.jdi.VirtualMachineManager");
094: } catch (ClassNotFoundException ex) {
095: vmm = null;
096: //throw ex;
097: }
098: Class<?> own;
099: try {
100: own = Thread.currentThread().getContextClassLoader()
101: .loadClass("com.sun.jdi.VirtualMachineManager");
102: } catch (ClassNotFoundException ex) {
103: //own = null;
104: throw ex;
105: }
106:
107: //assertEquals(vmm, own);
108:
109: }
110:
111: public void testModulesForMe() throws Exception {
112: Set<String> s = NbModuleSuite.S.findEnabledModules(getClass()
113: .getClassLoader());
114: assertEquals("Three modules: " + s, 3, s.size());
115:
116: assertTrue("Util: " + s, s.contains("org.openide.util"));
117: assertTrue("nbjunit: " + s, s
118: .contains("org.netbeans.modules.nbjunit"));
119: assertTrue("insanse: " + s, s.contains("org.netbeans.insane"));
120: }
121:
122: public static class T extends TestCase {
123: public T(String t) {
124: super (t);
125: }
126:
127: public void testOne() {
128: System.setProperty("t.one", "OK");
129: }
130: }
131:
132: }
|