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: * ExtWebBrowserTest.java
042: * NetBeans JUnit based test
043: *
044: * Created on November 2, 2001, 10:42 AM
045: */
046:
047: package org.netbeans.modules.extbrowser;
048:
049: import java.io.File;
050: import java.net.URL;
051: import junit.framework.*;
052: import org.netbeans.junit.*;
053: import java.beans.*;
054: import org.openide.filesystems.FileObject;
055: import org.openide.filesystems.FileUtil;
056: import org.openide.modules.InstalledFileLocator;
057:
058: /**
059: *
060: * @author rk109395
061: */
062: public class URLUtilTest extends NbTestCase {
063:
064: public URLUtilTest(java.lang.String testName) {
065: super (testName);
066: }
067:
068: public static void main(java.lang.String[] args) {
069: junit.textui.TestRunner.run(suite());
070: }
071:
072: public void testCreateExternalURL() throws Exception {
073: // find fileobject for
074: // jar:file:/${NB}/ide5/modules/docs/org-netbeans-modules-usersguide.jar!/org/netbeans/modules/usersguide/pending.html
075: File f = InstalledFileLocator.getDefault().locate(
076: "modules/docs/org-netbeans-modules-usersguide.jar",
077: null, false);
078: assertNotNull("Usersguide module not found", f);
079: FileObject fo = FileUtil.toFileObject(f);
080: log("jar fileobject is " + fo);
081: assertNotNull(
082: "FileObject corresponding to usersguide module not found",
083: fo);
084: FileObject jar = FileUtil.getArchiveRoot(fo);
085: assertNotNull(
086: "FileObject corresponding to usersguide as jar not found",
087: jar);
088: FileObject pendingPage = jar
089: .getFileObject("org/netbeans/modules/usersguide/pending.html");
090: URL pendingURL = pendingPage.getURL();
091: log("original url is " + pendingURL);
092: URL newURL1 = URLUtil.createExternalURL(pendingURL, true);
093: log("jar url " + newURL1);
094: URL newURL2 = URLUtil.createExternalURL(pendingURL, false);
095: log("http url " + newURL2);
096: assertEquals(
097: "HTTP URL is not local - does not contain 127.0.0.1",
098: "127.0.0.1", newURL2.getHost());
099: }
100:
101: public static Test suite() {
102: TestSuite suite = new NbTestSuite(URLUtilTest.class);
103: return suite;
104: }
105:
106: }
|