Package org.jboss.test.virtual.test

Source Code of org.jboss.test.virtual.test.ZipEntryVFSContextUnitTestCase

/*
* JBoss, Home of Professional Open Source
* Copyright 2006, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.test.virtual.test;

import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.IOException;
import java.net.URL;
import java.util.List;

import junit.framework.Test;
import org.jboss.virtual.VFS;
import org.jboss.virtual.VFSUtils;
import org.jboss.virtual.VirtualFile;
import org.jboss.virtual.plugins.context.file.FileSystemContext;
import org.jboss.virtual.plugins.context.jar.JarUtils;
import org.jboss.virtual.plugins.context.zip.ZipEntryContext;
import org.jboss.virtual.spi.VFSContext;
import org.jboss.virtual.spi.VirtualFileHandler;

/**
* ZipEntryVFSContextUnitTestCase.
*
* @author <a href="strukelj@parsek.net">Marko Strukelj</a>
* @author <a href="ales.justin@parsek.net">Ales Justin</a>
* @version $Revision: 1.0 $
*/
public class ZipEntryVFSContextUnitTestCase extends JARVFSContextUnitTestCase
{
   public ZipEntryVFSContextUnitTestCase(String name)
   {
      super(name);
   }

   public static Test suite()
   {
      VFS.init();
      System.out.println("java.protocol.handler.pkgs: " + System.getProperty("java.protocol.handler.pkgs"));
      return suite(ZipEntryVFSContextUnitTestCase.class);
   }

   protected VFSContext getVFSContext(URL url) throws Exception
   {
      url = JarUtils.createJarURL(url);
      return new ZipEntryContext(url);
   }

   protected VFSContext getVFSContext(String name) throws Exception
   {
      URL url = getResource("/vfs/context/jar/" + name + ".jar");
      url = JarUtils.createJarURL(url);
      return new ZipEntryContext(url);
   }

   protected VFSContext createVSFContext(URL url) throws Exception
   {
      return new ZipEntryContext(url);
   }

   /**
    * Test detection of underlying jar file removal through exists()
    *
    * @throws Exception for any error
    */
   public void testRootExists() throws Exception
   {
      URL url = getResource("/vfs/test/outer.jar");
      File tmpJar = File.createTempFile("vfstest", ".jar");

      InputStream is = url.openStream();
      OutputStream os = new FileOutputStream(tmpJar);
      VFSUtils.copyStreamAndClose(is, os);

      ZipEntryContext context = new ZipEntryContext(tmpJar.toURI().toURL());
      assertTrue("context.getRoot().exists()", context.getRoot().exists());

      boolean isDeleted = context.getRoot().delete(1000);
      assertTrue("delete tmp file: " + tmpJar, isDeleted);
      assertFalse("context.getRoot().exists()", context.getRoot().exists());
   }

   /**
    * Test for proper handling when file appears to be an archive but
    * trying to handle it produces an exception. Proper behaviour
    * is to ignore exception and treat the file as non-archive.
    *
    * @throws Exception for any error
    */
   public void testNotAnArchive() throws Exception
   {
      URL url = getResource("/vfs/context/jar/");
      FileSystemContext ctx = new FileSystemContext(url);

      // we just do basic sanity checks

      // valid archive

      VirtualFileHandler handler = ctx.getRoot().getChild("archive.jar");
      //assertTrue("is vfszip", "vfszip".equals(handler.toURL().getProtocol()));
      assertFalse("is leaf", handler.isLeaf());
      assertTrue("exists", handler.exists());
      assertNotNull("pathName not null", handler.getPathName());
      assertNotNull("name not null", handler.getName());
      assertNotNull("parent not null", handler.getParent());
      assertTrue("lastModified > 0", handler.getLastModified() > 0);
      assertTrue("size > 0", handler.getSize() > 0);
      assertNotNull("VF not null", handler.getVirtualFile());
      assertFalse("hasBeenModified == false", handler.hasBeenModified());
      assertFalse("hidden == false", handler.isHidden());
      assertFalse("nested == false", handler.isNested());
      assertNotNull("toURI not null", handler.toURI());
      assertNotNull("toURL not null", handler.toURL());
      assertNotNull("toVfsUrl not null", handler.toVfsUrl());

      ByteArrayOutputStream memOut = new ByteArrayOutputStream();
      VFSUtils.copyStreamAndClose(handler.openStream(), memOut);
      assertTrue("read archive content", memOut.size() == handler.getSize());

      // invalid archive

      handler = ctx.getRoot().getChild("notanarchive.jar");
      //assertTrue("is leaf", handler.isLeaf());
      assertTrue("exists", handler.exists());
      assertTrue("lastModified > 0", handler.getLastModified() > 0);
      assertNotNull("pathName not null", handler.getPathName());
      assertNotNull("name not null", handler.getName());
      assertNotNull("parent not null", handler.getParent());
      assertTrue("size > 0", handler.getSize() > 0);
      assertNotNull("VF not null", handler.getVirtualFile());
      assertFalse("hasBeenModified == false", handler.hasBeenModified());
      assertFalse("hidden == false", handler.isHidden());
      assertFalse("nested == false", handler.isNested());
      assertNotNull("toURI not null", handler.toURI());
      assertNotNull("toURL not null", handler.toURL());
      assertNotNull("toVfsUrl not null", handler.toVfsUrl());

      memOut = new ByteArrayOutputStream();
      VFSUtils.copyStreamAndClose(handler.openStream(), memOut);
      assertTrue("read archive content", memOut.size() == handler.getSize());
   }

   /**
    * Real URL test
    *
    * @throws Exception for any error
    */
   public void testCustomRealURL() throws Exception
   {
      URL url = getResource("/vfs/context/jar/");
      FileSystemContext ctx = new FileSystemContext(url);

      // valid archive
      VirtualFileHandler root = ctx.getRoot();
      assertEquals("Context Real URL", url.toExternalForm(), root.getRealURL().toExternalForm());
      String jarName = "archive.jar";
      VirtualFileHandler archive = root.getChild(jarName);
      assertEquals("Child Real URL", "jar:" + url.toExternalForm() + jarName + "!/", archive.getRealURL().toExternalForm());

      url = getResource("/vfs/test/");
      ctx = new FileSystemContext(url);
      root = ctx.getRoot();

      jarName = "level1.zip";
      archive = root.getChild(jarName);
      String nestedName = "level2.zip";
      VirtualFileHandler nested = archive.getChild(nestedName);

      String jarURL = "jar:" + url.toExternalForm() + jarName + "!/" + nestedName;
      assertEquals("First level nested Real URL", jarURL, nested.getRealURL().toExternalForm());

      nested = nested.getChild("level3.zip");
      assertEquals("Second level nested Real URL", jarURL, nested.getRealURL().toExternalForm());

      // nested root test
      url = getResource("/vfs/test/");
      ZipEntryContext zctx = new ZipEntryContext(new URL("vfszip:" + url.getPath() + "/level1.zip/level2.zip/level3.zip"));

      VirtualFileHandler handler = zctx.getRoot();
      assertEquals("Nested root Real URL", jarURL, handler.getRealURL().toExternalForm());

      List<VirtualFileHandler> children = handler.getChildren(false);
      for (VirtualFileHandler child: children)
      {
         assertEquals("Nested root Real URL", jarURL, child.getRealURL().toExternalForm());
      }
   }

   /**
    * Test that options are properly propagated to mounted subcontexts
    *
    * @throws IOException for any error
    */
   public void testOptionPropagation() throws IOException
   {
      // jar:file: url test
      URL url = getResource("/vfs/test/level1.zip");
      VFS vfs = VFS.getVFS(new URL("jar:file:" + url.getPath() + "!/"));
      VFSUtils.enableNoReaper(vfs);

      VirtualFile vf = vfs.getChild("level2.zip/level3.zip");
      assertEquals("jar:file: option propagation", VFSUtils.getOption(vf, VFSUtils.NO_REAPER_QUERY), "true");

      // vfszip: url test
      vfs = VFS.getVFS(new URL("vfszip:" + url.getPath()));
      VFSUtils.enableNoReaper(vfs);

      vf = vfs.getChild("level2.zip/level3.zip");
      assertEquals("vfszip: option propagation", VFSUtils.getOption(vf, VFSUtils.NO_REAPER_QUERY), "true");
   }

   /**
    * Handler representing a directory must return a recomposed zip archive
    * that has requested entry as its root.
    *
    * This behavior is new to vfszip. vfsjar returns an empty stream.
    *
    * @throws Exception for any error
    */
   public void testDirectoryZipEntryOpenStream() throws Exception
   {
      doDirectoryZipEntryOpenStream(false);
   }

   // we need to make sure this doesn't get touched before
   protected String getNestedName()
   {
      return super.getNestedName() + "_copy";
   }

   protected String getProtocol()
   {
      return "vfszip";
   }

   protected boolean isRealURLSupported()
   {
      return true;
   }
}
TOP

Related Classes of org.jboss.test.virtual.test.ZipEntryVFSContextUnitTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.