001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 2008 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.web.jspparser;
041:
042: import java.io.BufferedOutputStream;
043: import java.io.File;
044: import java.io.FileOutputStream;
045: import java.io.IOException;
046: import java.util.jar.JarOutputStream;
047: import java.util.jar.Manifest;
048: import org.netbeans.junit.NbTestCase;
049: import org.netbeans.modules.web.api.webmodule.WebModule;
050: import org.netbeans.modules.web.jsps.parserapi.JspParserAPI;
051: import org.netbeans.modules.web.jsps.parserapi.JspParserFactory;
052: import org.openide.filesystems.FileObject;
053: import org.openide.filesystems.FileUtil;
054:
055: /**
056: *
057: * @author Petr Hejl
058: */
059: public class WindowsLockingTest extends NbTestCase {
060:
061: public WindowsLockingTest(String name) {
062: super (name);
063: }
064:
065: @Override
066: protected void setUp() throws Exception {
067: super .setUp();
068: TestUtil.setup(this );
069:
070: // we don't want tu mess up data dir
071: File f = getWorkDir();
072: FileObject source = FileUtil.toFileObject(FileUtil
073: .normalizeFile(TestUtil.getProjectAsFile(this ,
074: "emptyWebProject")));
075: FileObject dest = FileUtil.toFileObject(
076: FileUtil.normalizeFile(f)).createFolder(
077: "emptyWebProject128360");
078: TestUtil.copyFolder(source, dest);
079: }
080:
081: public void testNotLockedIssue128360() throws IOException {
082: FileObject project = FileUtil.toFileObject(
083: FileUtil.normalizeFile(getWorkDir())).getFileObject(
084: "emptyWebProject128360");
085:
086: FileObject f = FileUtil
087: .createFolder(project, "web/WEB-INF/lib");
088: File jarFile = createJar(new File(FileUtil.toFile(f),
089: "test.jar"));
090:
091: FileObject jspFo = project.getFileObject("web/index.jsp");
092: WebModule webModule = TestUtil.getWebModule(jspFo);
093: JspParserAPI jspParser = JspParserFactory.getJspParser();
094: JspParserAPI.ParseResult result = jspParser.analyzePage(jspFo,
095: webModule, JspParserAPI.ERROR_IGNORE);
096: assertNotNull("The result from the parser was not obtained.",
097: result);
098:
099: assertTrue("Empty jar file was locked.", jarFile.delete());
100: }
101:
102: private File createJar(File file) throws IOException {
103: JarOutputStream os = new JarOutputStream(
104: new BufferedOutputStream(new FileOutputStream(file)),
105: new Manifest());
106: os.close();
107:
108: return file;
109: }
110: }
|