Package org.drools.test.mc.io.test

Source Code of org.drools.test.mc.io.test.ResourcesTest

/*
* JBoss, Home of Professional Open Source.
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file 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.drools.test.mc.io.test;

import java.net.URL;
import java.util.Collection;
import java.util.Set;
import java.util.HashSet;

import org.drools.io.InternalResource;
import org.drools.io.Resource;
import org.drools.io.ResourceProvider;
import org.drools.mc.io.VFSResourceProvider;
import org.drools.test.mc.BaseTest;

/**
* Resources test.
*
* @author <a href="mailto:ales.justin@jboss.org">Ales Justin</a>
*/
public class ResourcesTest extends BaseTest
{
   private ResourceProvider provider;

   protected ResourceProvider getResourceProvider()
   {
      if (provider == null)
         provider = new VFSResourceProvider();

      return provider;
   }

   protected Resource findResource(String name)
   {
      URL url = getResource(name);
      ResourceProvider provider = getResourceProvider();
      Resource root = provider.newUrlResource(url);
      assertNotNull(root);
      return root;
   }

   public void testEquals() throws Exception
   {
      Resource r1 = findResource("/mc/io/equalstc");
      Resource r2 = findResource("/mc/io/equalstc");
      assertTrue(r1 != r2);
      assertEquals(r1, r2);
      // hash test
      Set<Resource> r = new HashSet<Resource>();
      r.add(r1);
      r.add(r2);
      assertEquals(1, r.size());

      assertTrue(r1 instanceof InternalResource);
      assertTrue(r2 instanceof InternalResource);
      Collection<Resource> c1 = InternalResource.class.cast(r1).listResources();
      Collection<Resource> c2 = InternalResource.class.cast(r2).listResources();
      assertEquals(c1, c2);
      // hash test
      Set<Resource> c = new HashSet<Resource>();
      c.addAll(c1);
      c.addAll(c2);
      assertEquals(1, c.size());
   }

   public void testResource() throws Exception
   {
      Resource resource = findResource("/mc/io/root");
      assertNotNull(resource.getInputStream());
      assertNotNull(resource.getReader());
   }

   public void testInternalResource() throws Exception
   {
      Resource root = findResource("/mc/io/root");
      assertTrue(root instanceof InternalResource);
      InternalResource resource = InternalResource.class.cast(root);

      assertTrue(resource.isDirectory());
      assertTrue(resource.hasURL());
      assertNotNull(resource.getURL());

      assertEquals(-1l, resource.getLastRead());
      assertNotNull(resource.getInputStream());
      assertFalse(-1l == resource.getLastRead());

      Collection<Resource> resources = resource.listResources();
      assertNotNull(resources);
      assertEquals(2, resources.size());
      for (Resource child : resources)
      {
         assertNotNull(child.getInputStream());
      }
   }
}
TOP

Related Classes of org.drools.test.mc.io.test.ResourcesTest

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.