[jboss-cvs] JBossAS SVN: r58725 - in branches/Branch_4_2/testsuite/src/main/org/jboss/test: . console console/jbas3861

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 29 06:19:40 EST 2006


Author: dimitris at jboss.org
Date: 2006-11-29 06:19:37 -0500 (Wed, 29 Nov 2006)
New Revision: 58725

Added:
   branches/Branch_4_2/testsuite/src/main/org/jboss/test/console/
   branches/Branch_4_2/testsuite/src/main/org/jboss/test/console/jbas3861/
   branches/Branch_4_2/testsuite/src/main/org/jboss/test/console/jbas3861/JBAS3861TestCase.java
Log:
JBAS-3861, verify the bug is fixed

Added: branches/Branch_4_2/testsuite/src/main/org/jboss/test/console/jbas3861/JBAS3861TestCase.java
===================================================================
--- branches/Branch_4_2/testsuite/src/main/org/jboss/test/console/jbas3861/JBAS3861TestCase.java	2006-11-29 11:19:06 UTC (rev 58724)
+++ branches/Branch_4_2/testsuite/src/main/org/jboss/test/console/jbas3861/JBAS3861TestCase.java	2006-11-29 11:19:37 UTC (rev 58725)
@@ -0,0 +1,106 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, 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.jboss.test.console.jbas3861; 
+
+import javax.management.Attribute;
+import javax.management.ObjectName;
+import javax.management.RuntimeMBeanException;
+
+import org.jboss.mx.util.ObjectNameFactory;
+import org.jboss.test.JBossTestCase;
+
+/**
+ * Test JBAS-3861 (DeploymentFileRepository service)
+ * 
+ *  @author <a href="mailto:dimitris at jboss.org">Dimitris Andreadis</a>
+ *  @version $Revision: 57211 $
+ */
+public class JBAS3861TestCase extends JBossTestCase
+{
+   ObjectName target= ObjectNameFactory.create("jboss.admin:service=DeploymentFileRepository");
+   
+   public JBAS3861TestCase(String name)
+   {
+      super(name); 
+   }
+   
+   /**
+    * Check if BaseDir can be set outside the server home directory
+    */
+   public void testSetBaseDirOutsideServerHomeDir() throws Exception
+   {
+      // remember original BaseDir
+      String basedir = (String)getServer().getAttribute(target, "BaseDir");
+      try
+      {
+         // Should throw an IllegalArgumentException
+         getServer().setAttribute(target, new Attribute("BaseDir", ".."));
+         // Should throw an IllegalArgumentException
+         getServer().setAttribute(target, new Attribute("BaseDir", "/"));
+         
+         // Restore the original dir and fail the test
+         getServer().setAttribute(target, new Attribute("BaseDir", basedir));
+         fail("Managed to set BaseDir outside ServerHomeDir for service: " + target);
+      }
+      catch (RuntimeMBeanException e)
+      {
+         // expected
+      }
+   }   
+   
+   /**
+    * Check if we can write a file outside the server home directory
+    */
+   public void testStoreFileOutsideServerHomeDir() throws Exception
+   {
+      try
+      {
+         // Should throw an exception
+         getServer().invoke(
+               target,
+               "store",
+               new Object[] { "..", "jbas3861", ".tmp", "file content", Boolean.TRUE },
+               new String[] { "java.lang.String", "java.lang.String", "java.lang.String", "java.lang.String", Boolean.TYPE.toString() });
+
+         // Should throw an exception
+         getServer().invoke(
+               target,
+               "store",
+               new Object[] { ".", "../jbas3861", ".tmp", "file content", Boolean.TRUE },
+               new String[] { "java.lang.String", "java.lang.String", "java.lang.String", "java.lang.String", Boolean.TYPE.toString() });         
+         
+         // Remove the stored file and fail the test - normally it should throw an exception, too
+         getServer().invoke(
+               target,
+               "remove",
+               new Object[] { ".", "../jbas3861", ".tmp" },
+               new String[] { "java.lang.String", "java.lang.String", "java.lang.String" });  
+         
+         fail("Managed to create/remove a file outside ServerHomeDir for service: " + target);
+      }
+      catch (RuntimeMBeanException e)
+      {
+         // expected
+      }
+   } 
+   
+}




More information about the jboss-cvs-commits mailing list