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.project.ui;
041:
042: import java.awt.Component;
043: import java.awt.Container;
044: import java.lang.ref.WeakReference;
045: import javax.swing.JEditorPane;
046: import org.netbeans.api.project.Project;
047: import org.netbeans.junit.NbTestCase;
048: import org.openide.filesystems.FileObject;
049: import org.openide.filesystems.FileUtil;
050: import org.openide.loaders.DataFolder;
051: import org.openide.nodes.Children;
052: import org.openide.util.Lookup;
053:
054: /**
055: *
056: * @author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
057: */
058: public class TemplatesPanelTest extends NbTestCase implements
059: TemplatesPanelGUI.Builder {
060: public TemplatesPanelTest(String testName) {
061: super (testName);
062: }
063:
064: @Override
065: protected void setUp() throws Exception {
066: super .setUp();
067: }
068:
069: @Override
070: protected void tearDown() throws Exception {
071: super .tearDown();
072: }
073:
074: private static Object editor;
075:
076: public void testTemplatesPanel() {
077: TemplatesPanelGUI inst;
078: inst = new TemplatesPanelGUI(this );
079:
080: inst.addNotify();
081: editor = find(inst, JEditorPane.class, true);
082: WeakReference<Object> ref = new WeakReference<Object>(inst);
083:
084: inst.removeNotify();
085:
086: inst = null;
087: assertGC("Panel does not hold ref", ref);
088: }
089:
090: private static Component find(Component c, Class<?> clazz,
091: boolean fail) {
092: if (clazz.isInstance(c)) {
093: return c;
094: }
095: if (c instanceof Container) {
096: Container cont = (Container) c;
097: for (Component p : cont.getComponents()) {
098: Component r = find(p, clazz, false);
099: if (r != null) {
100: return r;
101: }
102: }
103: }
104: if (fail) {
105: fail("Not found " + clazz + " in children of " + c);
106: }
107: return null;
108: }
109:
110: public Children createCategoriesChildren(DataFolder folder) {
111: return Children.LEAF;
112: }
113:
114: public Children createTemplatesChildren(DataFolder folder) {
115: return Children.LEAF;
116: }
117:
118: public String getCategoriesName() {
119: return "";
120: }
121:
122: public String getTemplatesName() {
123: return "";
124: }
125:
126: public void fireChange() {
127: }
128: }
|