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 2007 Sun Microsystems, Inc.
038: */
039:
040: package org.netbeans.spi.project.libraries.support;
041:
042: import java.io.File;
043: import java.net.MalformedURLException;
044: import java.net.URL;
045: import org.netbeans.junit.NbTestCase;
046: import org.openide.filesystems.FileObject;
047: import org.openide.filesystems.FileUtil;
048:
049: /**
050: */
051: public class LibrariesSupportTest extends NbTestCase {
052:
053: public LibrariesSupportTest(String testName) {
054: super (testName);
055: }
056:
057: @Override
058: protected void setUp() throws Exception {
059: super .setUp();
060: }
061:
062: /**
063: * Test of convertFilePathToURL method, of class LibrariesSupport.
064: */
065: public void testConvertFilePathToURL() {
066: String path = "/aa/bb/c c.ext".replace('/', File.separatorChar);
067: URL u = LibrariesSupport.convertFilePathToURL(path);
068: assertEquals("file:/aa/bb/c%20c.ext", u.toExternalForm());
069: path = "../zz/re l.ext".replace('/', File.separatorChar);
070: u = LibrariesSupport.convertFilePathToURL(path);
071: assertEquals("file:../zz/re%20l.ext", u.toExternalForm());
072: }
073:
074: /**
075: * Test of convertURLToFilePath method, of class LibrariesSupport.
076: */
077: public void testConvertURLToFilePath() throws MalformedURLException {
078: URL u = new URL("file:/aa/bb/c%20c.ext");
079: String path = LibrariesSupport.convertURLToFilePath(u);
080: assertEquals("/aa/bb/c c.ext".replace('/', File.separatorChar),
081: path);
082: u = new URL("file:../zz/re%20l.ext");
083: path = LibrariesSupport.convertURLToFilePath(u);
084: assertEquals("../zz/re l.ext".replace('/', File.separatorChar),
085: path);
086: }
087:
088: /**
089: * Test of isAbsoluteURL method, of class LibrariesSupport.
090: */
091: public void testIsAbsoluteURL() throws MalformedURLException {
092: URL u = new URL("file", null, "/test/absolute");
093: assertTrue(u.toExternalForm(), LibrariesSupport
094: .isAbsoluteURL(u));
095: u = new URL("file", null, "../relative");
096: assertFalse(u.toExternalForm(), LibrariesSupport
097: .isAbsoluteURL(u));
098: }
099:
100: /**
101: * Test of resolveLibraryEntryFileObject method, of class LibrariesSupport.
102: */
103: public void testResolveLibraryEntry() throws Exception {
104: File f = new File(this .getWorkDir(), "knihovna.properties");
105: File f2 = new File(this .getWorkDir(), "bertie.jar");
106: f.createNewFile();
107: f2.createNewFile();
108: FileObject fo = LibrariesSupport.resolveLibraryEntryFileObject(
109: f.toURI().toURL(), new URL("file", null, "bertie.jar"));
110: assertEquals(f2.getPath(), FileUtil.toFile(fo).getPath());
111: fo = LibrariesSupport.resolveLibraryEntryFileObject(null, f2
112: .toURI().toURL());
113: assertEquals(f2.getPath(), FileUtil.toFile(fo).getPath());
114: }
115:
116: }
|