You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by ni...@apache.org on 2004/02/24 22:37:38 UTC

cvs commit: avalon/logging/log4j/test/src/test/org/apache/avalon/logging/log4j/test DefaultLoggingManagerTestCase.java LoggingManagerHelper.java

niclas      2004/02/24 13:37:38

  Added:       logging/log4j/test/src/test/org/apache/avalon/logging/log4j/test
                        DefaultLoggingManagerTestCase.java
                        LoggingManagerHelper.java
  Log:
  Added a Log4J plugin.
  
  Revision  Changes    Path
  1.1                  avalon/logging/log4j/test/src/test/org/apache/avalon/logging/log4j/test/DefaultLoggingManagerTestCase.java
  
  Index: DefaultLoggingManagerTestCase.java
  ===================================================================
  /* 
   * Copyright 2004 Apache Software Foundation
   * Licensed  under the  Apache License,  Version 2.0  (the "License");
   * you may not use  this file  except in  compliance with the License.
   * You may obtain a copy of the License at 
   * 
   *   http://www.apache.org/licenses/LICENSE-2.0
   * 
   * Unless required by applicable law or agreed to in writing, software
   * distributed  under the  License is distributed on an "AS IS" BASIS,
   * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   * implied.
   * 
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  
  package org.apache.avalon.logging.log4j.test;
  
  import java.io.File;
  import java.net.URL;
  import java.util.Map;
  
  import junit.framework.TestCase;
  
  import org.apache.avalon.framework.logger.Logger;
  
  import org.apache.avalon.logging.provider.LoggingManager;
  import org.apache.avalon.logging.provider.LoggingException;
  
  import org.apache.avalon.repository.Artifact;
  import org.apache.avalon.repository.provider.Factory;
  import org.apache.avalon.repository.provider.InitialContext;
  import org.apache.avalon.repository.provider.Builder;
  import org.apache.avalon.repository.main.DefaultInitialContext;
  import org.apache.avalon.repository.main.DefaultBuilder;
  
  import org.apache.avalon.util.env.Env;
  import org.apache.avalon.util.exception.ExceptionHelper;
  
  /**
   * 
   * 
   * @author <a href="mailto:mcconnell@apache.org">Stephen McConnell</a>
   * @author $Author: niclas $
   * @version $Revision: 1.1 $
   */
  public class DefaultLoggingManagerTestCase extends TestCase
  {
      //-------------------------------------------------------------------
      // state
      //-------------------------------------------------------------------
  
      InitialContext m_context;
      LoggingManager m_manager;
  
      //-------------------------------------------------------------------
      // constructor
      //-------------------------------------------------------------------
  
      /**
       * Constructor for DefaultInitialContextTest.
       * @param name the test name
       */
      public DefaultLoggingManagerTestCase( String name )
      {
          super( name );
      }
  
      //-------------------------------------------------------------------
      // utilities
      //-------------------------------------------------------------------
  
      protected void setUp() throws Exception
      {
          m_manager = LoggingManagerHelper.setUpLoggingManager( "logging.xml" );
      }
  
      public void testKernelLogging() throws Exception
      {
          Logger logger = m_manager.getLoggerForCategory( "kernel.logger" );
  
          logger.debug( "ERROR: SHOULD NOT SHOW!  -  this is a debug message from the kernel" );
          logger.info( "ERROR: SHOULD NOT SHOW!  -  this is a info message from the kernel" );
          logger.warn( "this is a warning message from the kernel" );
          logger.error( 
            "this is an error message from the kernel", 
            new LoggingException( 
              "Intentional Exception for TestCase.", 
              new LoggingException( 
                "This is not a problem.", 
                new LoggingException( "It is used to test the Logging framework." ) ) ) );
          logger.fatalError( "If the TestCase does not fail, everything is OK." );
      }
  
      public void testKernelTestLogging() throws Exception
      {
          Logger logger = m_manager.getLoggerForCategory( "kernel.logger.test" );
  
          logger.debug( "this is a debug message from test" );
          logger.info( "this is a info message from test" );
          logger.warn( "this is a warning message from test" );
          logger.error( 
            "this is an error message from test", 
            new LoggingException( 
              "woops", 
              new LoggingException( 
                "my fault", 
                new LoggingException( "bad attitude" ) ) ) );
          logger.fatalError( "this is a fatal message from test" );
      }
  
      public void testRogerRamjetLogging() throws Exception
      {
          Logger logger = m_manager.getLoggerForCategory( "kernel.roger-ramjet" );
  
          logger.debug( "this is a debug message from roger ramjet" );
          logger.info( "this is a info message from roger ramjet" );
          logger.warn( "this is a warning message from roger ramjet" );
          logger.error( 
            "this is an error message from roger ramjet", 
            new LoggingException( 
              "woops", 
              new LoggingException( 
                "my fault", 
                new LoggingException( "bad attitude" ) ) ) );
          logger.fatalError( "this is a fatal message from roger ramjet" );
      }
  
      //-------------------------------------------------------------------
      // utilities
      //-------------------------------------------------------------------
  
      private static File getMavenRepositoryDirectory()
      {
          return new File( getMavenHomeDirectory(), "repository" );
      }
  
      private static File getMavenHomeDirectory()
      {
          return new File( getMavenHome() );
      }
  
      private static String getMavenHome()
      {
          try
          {
              String local = 
                System.getProperty( 
                  "maven.home.local", 
                  Env.getEnvVariable( "MAVEN_HOME_LOCAL" ) );
              if( null != local ) return local;
  
              return System.getProperty( "user.home" ) + File.separator + ".maven";
  
          }
          catch( Throwable e )
          {
              final String error = 
                "Internal error while attempting to access environment.";
              final String message = 
                ExceptionHelper.packException( error, e, true );
              throw new RuntimeException( message );
          }
      }
  
      protected File getBaseDir()
      {
          return new File( System.getProperty( "basedir" ) );
      }
  
  }
  
  
  
  1.1                  avalon/logging/log4j/test/src/test/org/apache/avalon/logging/log4j/test/LoggingManagerHelper.java
  
  Index: LoggingManagerHelper.java
  ===================================================================
  /* 
   * Copyright 2004 Apache Software Foundation
   * Licensed  under the  Apache License,  Version 2.0  (the "License");
   * you may not use  this file  except in  compliance with the License.
   * You may obtain a copy of the License at 
   * 
   *   http://www.apache.org/licenses/LICENSE-2.0
   * 
   * Unless required by applicable law or agreed to in writing, software
   * distributed  under the  License is distributed on an "AS IS" BASIS,
   * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   * implied.
   * 
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  
  package org.apache.avalon.logging.log4j.test;
  
  import java.io.File;
  import java.net.URL;
  import java.util.Map;
  
  import junit.framework.TestCase;
  
  import org.apache.avalon.framework.logger.Logger;
  
  import org.apache.avalon.logging.provider.LoggingManager;
  
  import org.apache.avalon.repository.Artifact;
  import org.apache.avalon.repository.provider.Factory;
  import org.apache.avalon.repository.provider.InitialContext;
  import org.apache.avalon.repository.provider.Builder;
  import org.apache.avalon.repository.main.DefaultInitialContextFactory;
  import org.apache.avalon.repository.main.DefaultBuilder;
  
  import org.apache.avalon.util.env.Env;
  import org.apache.avalon.util.exception.ExceptionHelper;
  
  /**
   * 
   * 
   * @author <a href="mailto:mcconnell@apache.org">Stephen McConnell</a>
   * @author $Author: niclas $
   * @version $Revision: 1.1 $
   */
  public class LoggingManagerHelper
  {
      //-------------------------------------------------------------------
      // utilities
      //-------------------------------------------------------------------
  
      /**
       * Setup the logging system. 
       * @param filename the name of a file in the test/conf directory
       * @param bootstrap the boostrap logger logging level
       * @return the logging manager
       */
      public static LoggingManager setUpLoggingManager( String filename ) throws Exception
      {
          DefaultInitialContextFactory initial = 
             new DefaultInitialContextFactory( "avalon", getBaseDir() );
          initial.setCacheDirectory( getMavenRepositoryDirectory() );
          InitialContext context = initial.createInitialContext();
  
          //
          // FIX ME - remove hard reference (get from a property)
          //
  
          Artifact artifact = Artifact.createArtifact( 
            "avalon-logging", "avalon-log4j-impl", "1.0-SNAPSHOT" );
  
          Builder builder = context.newBuilder( artifact );
          Factory factory = builder.getFactory();
          Map criteria = factory.createDefaultCriteria();
  
          //
          // customize the criteria
          //
  
          File basedir = getBaseDir();
          File target = new File( basedir, "target" );
  
          File conf = new File( basedir, "conf" );
          File file = new File( conf, filename );
  
          criteria.put( "avalon.logging.configuration", file );
          criteria.put( "avalon.logging.basedir", target );
  
          //
          // create the logging manager
          //
  
          return (LoggingManager) factory.create( criteria );
  
      }
  
      //-------------------------------------------------------------------
      // utilities
      //-------------------------------------------------------------------
  
      private static File getMavenRepositoryDirectory()
      {
          return new File( getMavenHomeDirectory(), "repository" );
      }
  
      private static File getMavenHomeDirectory()
      {
          return new File( getMavenHome() );
      }
  
      private static String getMavenHome()
      {
          try
          {
              String local = 
                System.getProperty( 
                  "maven.home.local", 
                  Env.getEnvVariable( "MAVEN_HOME_LOCAL" ) );
              if( null != local ) return local;
  
              return System.getProperty( "user.home" ) + File.separator + ".maven";
  
          }
          catch( Throwable e )
          {
              final String error = 
                "Internal error while attempting to access environment.";
              final String message = 
                ExceptionHelper.packException( error, e, true );
              throw new RuntimeException( message );
          }
      }
  
      protected static File getBaseDir()
      {
          return new File( System.getProperty( "basedir" ) );
      }
  
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org