Package org.jboss.test.virtual.test

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

/*
* 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.File;
import java.net.URL;
import java.net.URLConnection;
import java.util.Collections;
import java.util.Random;

import junit.framework.Test;
import org.jboss.test.virtual.support.MockTempStore;
import org.jboss.util.StringPropertyReplacer;
import org.jboss.util.propertyeditor.URLEditor;
import org.jboss.virtual.VFS;
import org.jboss.virtual.VFSUtils;
import org.jboss.virtual.VirtualFile;
import org.jboss.virtual.plugins.cache.CombinedVFSCache;
import org.jboss.virtual.plugins.copy.TrackingTempStore;
import org.jboss.virtual.spi.ExceptionHandler;
import org.jboss.virtual.spi.cache.VFSCache;
import org.jboss.virtual.spi.cache.VFSCacheFactory;
import org.jboss.virtual.spi.cache.helpers.NoopVFSCache;

/**
* Symlink VFSCache Test.
*
* @author <a href="ales.justin@jboss.org">Ales Justin</a>
*/
public class SymlinkTestCase extends AbstractVFSTest
{
   private String testPath;
   private String testName;
   private boolean useEditor;

   public SymlinkTestCase(String name)
   {
      super(name, true);
   }

   public static Test suite()
   {
      return suite(SymlinkTestCase.class);
   }

   // enable this to run the tests -- no Winz though :-)
   private static boolean supportSymlinks()
   {
      return false;

//      String os = System.getProperty("os.name");
//      return os.contains("Win") == false;
   }

   @Override
   protected void setUp() throws Exception
   {
      super.setUp();

      // enable force canonical
      System.setProperty(VFSUtils.FORCE_CANONICAL, "true");

      // setup symlink dir and test path!

//      System.setProperty("test.dir", "/Users/alesj/projects/jboss6/trunk"); // plain path
//      System.setProperty("test.dir", "/Users/alesj/jboss"); // -- this is symlink
      System.setProperty("test.dir", "/home/csams/tmp/sym_deploy"); // -- this is symlink

      testPath = "/testsuite/output/lib/jboss-seam-booking.ear/jboss-seam.jar/org/jboss/seam/Seam.class";
      testName = "jboss-seam.jar";
      useEditor = true;
   }

   @Override
   protected void tearDown() throws Exception
   {
      System.clearProperty("test.dir");
      testPath = null;
      testName = null;

      super.tearDown();
   }

   /*
    * /home/csams/tmp/sym_deploy -> /home/csams/tmp/deploy
    * /home/csams/tmp/deploy/deploy -> /home/csams/tmp/another_dir
    */
   public void testAppAsLink() throws Exception
   {
      if (supportSymlinks() == false)
         return;

      String resourceName="vfszip:///home/csams/tmp/sym_deploy/deploy/data.jar/empty.txt";

      URLEditor editor = new URLEditor();
      editor.setAsText("file:/home/csams/tmp/sym_deploy");

      //this should resolve as file:/home/csams/tmp/deploy
      URL dir = (URL) editor.getValue();

      CombinedVFSCache cache = new CombinedVFSCache();
      VFSCacheFactory.setInstance(cache);
      VFSCache realCache = new NoopVFSCache();
      realCache.start();
      cache.setRealCache(realCache);

      try
      {
        cache.setPermanentRoots(Collections.<URL, ExceptionHandler>singletonMap(dir, null));
        cache.start();
       
        URL sub = new URL(resourceName);
        VFS dirVFS = VFS.getVFS(dir);

        VirtualFile rootFile = VFS.getRoot(dir);
        System.out.println(rootFile);

        VirtualFile subFile1 = VFS.getRoot(sub);
        System.out.println(subFile1);

        VirtualFile subFile2 = VFS.getRoot(sub);
        System.out.println(subFile2);

        //they should have parents, and those parents' VFSContexts should be the one stored as permanentRoot
        assertNotNull(subFile1.getParent());
        assertNotNull(subFile2.getParent());

        //the parent VFSContext of the ZipEntryContext should be the VFSContext of the permanentRoot
        assertEquals(rootFile.getVFS(), dirVFS);
        assertEquals(rootFile.getVFS(), subFile1.getParent().getVFS());
        assertEquals(rootFile.getVFS(), subFile2.getParent().getVFS());

        //the VFSContexts also should be the same
        assertEquals(subFile1.getVFS(), subFile2.getVFS());
      }
      finally
      {
         VFSCacheFactory.setInstance(null);
         if(cache != null)
           cache.stop();
      }
   }

   public void testCacheUsage() throws Exception
   {
      if (supportSymlinks() == false)
         return;

      assertNotNull(testPath);
      assertNotNull(testName);

      CombinedVFSCache cache = new CombinedVFSCache();                          
      VFSCache realCache = new NoopVFSCache();
      realCache.start();
      cache.setRealCache(realCache);
      VFSCacheFactory.setInstance(cache);
      try
      {
         String rootText = StringPropertyReplacer.replaceProperties("${test.dir}");
         URL rootURL;
         if (useEditor)
         {
            URLEditor editor = new URLEditor();
            editor.setAsText(rootText);
            rootURL = (URL) editor.getValue();
         }
         else
         {
            rootURL = new URL("file://" + rootText);
         }
         cache.setPermanentRoots(Collections.<URL, ExceptionHandler>singletonMap(rootURL, null));
         cache.start();

         // setup VFS
         VFS vfs = VFS.getVFS(rootURL);
         VFSUtils.enableCopy(vfs);
         TrackingTempStore store = new TrackingTempStore(new MockTempStore(new Random().nextLong()));
         vfs.setTempStore(store);

         try
         {
            URL directRootURL = new URL("file://" + rootText);
            VirtualFile root = VFS.getRoot(directRootURL);
            // assertEquals(vfs, root.getVFS()); // this is actually the real cause
            VirtualFile file = root.getChild(testPath);
            assertNotNull(file);
            assertTrue(file.getSize() > 0);
            assertCopies(store);
            URL url = file.toURL();
            URLConnection conn = url.openConnection();
            assertCopies(store);
            assertEquals(file.getLastModified(), conn.getLastModified());

            directRootURL = new URL("vfszip://" + rootText + testPath);
            conn = directRootURL.openConnection();
            assertCopies(store);
            assertEquals(file.getLastModified(), conn.getLastModified());
         }
         finally
         {
            store.clear();
         }
      }
      finally
      {
         VFSCacheFactory.setInstance(null);
         cache.stop();
      }
   }

   public void testJarFileScheme() throws Exception
   {
      URL url = getResource("/vfs/test/level1.zip");
      try
      {
          String path = url.getPath();
          VFS.getVFS(new URL("jar:file:" + path + "!/" + "level2.zip/level3.zip"));
      }
      catch(NullPointerException npe)
      {
        failure("NPE thrown because jar:file: not handled by canonicalization code.", npe);
      }
   }

   protected void assertCopies(TrackingTempStore store)
   {
      int counter = 0;
      for (File file : store.getFiles())
      {
         if (file.getName().contains(testName))
            counter++;
      }
      assertEquals("Test files == 1", 1, counter);
   }
}
TOP

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

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.