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.modules.navigator;
043:
044: import java.net.URL;
045: import java.util.ArrayList;
046: import java.util.List;
047: import javax.swing.JComponent;
048: import junit.framework.*;
049: import org.netbeans.modules.navigator.NavigatorTCTest.GlobalLookup4TestImpl;
050: import org.netbeans.modules.navigator.NavigatorTCTest.TestLookupHint;
051: import org.netbeans.spi.navigator.NavigatorLookupPanelsPolicy;
052: import org.netbeans.spi.navigator.NavigatorPanel;
053: import org.openide.filesystems.FileObject;
054: import org.openide.filesystems.FileUtil;
055: import org.openide.filesystems.URLMapper;
056: import org.openide.loaders.DataFolder;
057: import org.openide.loaders.DataObject;
058: import org.openide.loaders.DataShadow;
059: import org.openide.nodes.Node;
060: import org.openide.util.Lookup;
061: import org.openide.util.lookup.InstanceContent;
062: import org.openide.util.lookup.Lookups;
063:
064: /**
065: *
066: * @author Dafe Simonek
067: */
068: public class NavigatorControllerTest extends TestCase {
069:
070: private static final String JAVA_DATA_TYPE = "text/marvelous/data_type";
071:
072: public NavigatorControllerTest(String testName) {
073: super (testName);
074: }
075:
076: public static void main(java.lang.String[] args) {
077: junit.textui.TestRunner.run(suite());
078: }
079:
080: protected void setUp() throws Exception {
081: }
082:
083: protected void tearDown() throws Exception {
084: }
085:
086: public static Test suite() {
087: TestSuite suite = new TestSuite(NavigatorControllerTest.class);
088: return suite;
089: }
090:
091: /**
092: * Tests correct retrieving ans instantiating of NavigatorPanel instances
093: * for various scenarios.
094: *
095: * @throws java.lang.Exception
096: */
097: public void testObtainProviders() throws Exception {
098: System.out
099: .println("Testing NavigatorController.obtainProviders");
100:
101: InstanceContent ic = new InstanceContent();
102:
103: GlobalLookup4TestImpl nodesLkp = new GlobalLookup4TestImpl(ic);
104: UnitTestUtils
105: .prepareTest(
106: new String[] { "/org/netbeans/modules/navigator/resources/NavigatorControllerTestProvider.xml" },
107: Lookups.singleton(nodesLkp));
108:
109: URL url = NavigatorControllerTest.class
110: .getResource("resources/sample_folder/subfolder1/subfolder2");
111: assertNotNull("url not found.", url);
112:
113: FileUtil.setMIMEType("my_extension",
114: "NavigatorControllerTest/TestMimeType");
115: FileObject fo = URLMapper.findFileObject(url);
116: FileObject[] fos = fo.getChildren();
117: fo = fo.getFileObject("Nic.my_extension");
118: assertNotNull("fo not found.", fo);
119:
120: FileObject foSubFolder1 = fo.getParent().getParent();
121: FileObject foSampleFolder = foSubFolder1.getParent();
122: DataObject dObj = DataObject.find(fo);
123: DataFolder subFolder1 = (DataFolder) DataObject
124: .find(foSubFolder1);
125: DataFolder sampleFolder = (DataFolder) DataObject
126: .find(foSampleFolder);
127: DataShadow shadow1 = DataShadow.create(subFolder1, dObj);
128: DataShadow shadow2 = DataShadow.create(sampleFolder, shadow1);
129:
130: System.out.println("Testing DataShadow resolvement...");
131: // not really valid, uses impl fact that during obtainProviders,
132: // NavigatorTC parameter will not be needed.
133: NavigatorController nc = new NavigatorController(null);
134: ArrayList<Node> shadow1Node = new ArrayList<Node>(1);
135: shadow1Node.add(shadow1.getNodeDelegate());
136: List result = nc.obtainProviders(shadow1Node);
137: assertNotNull("provider not found", result);
138: assertEquals(1, result.size());
139: assertTrue(result.get(0) instanceof TestJavaNavigatorPanel);
140:
141: ArrayList<Node> shadow2Node = new ArrayList<Node>(1);
142: shadow2Node.add(shadow2.getNodeDelegate());
143: result = nc.obtainProviders(shadow2Node);
144: assertNotNull("provider not found", result);
145: assertEquals(1, result.size());
146: assertTrue(result.get(0) instanceof TestJavaNavigatorPanel);
147:
148: TestLookupHint lookupHint = new TestLookupHint(
149: "contentType/tester");
150: ic.add(lookupHint);
151: TestLookupPanelsPolicy lookupContentType = new TestLookupPanelsPolicy();
152: ic.add(lookupContentType);
153:
154: System.out
155: .println("Testing LookupContentType functionality...");
156: result = nc.obtainProviders(shadow1Node);
157: assertNotNull("provider not found", result);
158: assertEquals("Expected 1 item, got " + result.size(), 1, result
159: .size());
160: assertTrue(
161: "Expected provider class TestContentTypeNavigatorPanel, but got "
162: + result.get(0).getClass().getName(),
163: result.get(0) instanceof TestContentTypeNavigatorPanel);
164:
165: }
166:
167: /** Dummy navigator panel provider, just for testing
168: */
169: public static class TestJavaNavigatorPanel implements
170: NavigatorPanel {
171:
172: public String getDisplayName() {
173: return JAVA_DATA_TYPE;
174: }
175:
176: public String getDisplayHint() {
177: return null;
178: }
179:
180: public JComponent getComponent() {
181: return null;
182: }
183:
184: public void panelActivated(Lookup context) {
185: }
186:
187: public void panelDeactivated() {
188: }
189:
190: public Lookup getLookup() {
191: return null;
192: }
193:
194: }
195:
196: /**
197: * test impl fo NavigatorPanel for testing LookupContentType functionality
198: */
199: public static final class TestContentTypeNavigatorPanel extends
200: TestJavaNavigatorPanel {
201:
202: public String getDisplayName() {
203: return "Test content type";
204: }
205:
206: }
207:
208: /** Test implementation of content type */
209: public static final class TestLookupPanelsPolicy implements
210: NavigatorLookupPanelsPolicy {
211:
212: public int getPanelsPolicy() {
213: return NavigatorLookupPanelsPolicy.LOOKUP_HINTS_ONLY;
214: }
215:
216: }
217:
218: }
|