1   /* 
2    * Copyright (c) 2004-2009 QOS.ch
3    * All rights reserved.
4    * 
5    * Permission is hereby granted, free  of charge, to any person obtaining
6    * a  copy  of this  software  and  associated  documentation files  (the
7    * "Software"), to  deal in  the Software without  restriction, including
8    * without limitation  the rights to  use, copy, modify,  merge, publish,
9    * distribute,  sublicense, and/or sell  copies of  the Software,  and to
10   * permit persons to whom the Software  is furnished to do so, subject to
11   * the following conditions:
12   * 
13   * The  above  copyright  notice  and  this permission  notice  shall  be
14   * included in all copies or substantial portions of the Software.
15   * 
16   * THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
17   * EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
18   * MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
19   * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20   * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21   * OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
22   * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23   */
24  package org.slf4j.cal10n_dummy;
25  
26  import java.util.Locale;
27  
28  import junit.framework.TestCase;
29  
30  import org.apache.log4j.spi.LoggingEvent;
31  import org.slf4j.cal10n.LocLogger;
32  import org.slf4j.cal10n.LocLoggerFactory;
33  import org.slf4j.dummyExt.ListAppender;
34  
35  import ch.qos.cal10n.IMessageConveyor;
36  import ch.qos.cal10n.MessageConveyor;
37  
38  public class LocLoggerTest extends TestCase {
39  
40    ListAppender listAppender;
41    org.apache.log4j.Logger log4jRoot;
42  
43    IMessageConveyor imc = new MessageConveyor(Locale.UK);
44    LocLoggerFactory llFactory_uk = new LocLoggerFactory(imc);
45  
46    final static String EXPECTED_FILE_NAME = "LocLoggerTest.java";
47  
48    public LocLoggerTest(String name) {
49      super(name);
50    }
51  
52    public void setUp() throws Exception {
53      super.setUp();
54  
55      // start from a clean slate for each test
56  
57      listAppender = new ListAppender();
58      listAppender.extractLocationInfo = true;
59      log4jRoot = org.apache.log4j.Logger.getRootLogger();
60      log4jRoot.addAppender(listAppender);
61      log4jRoot.setLevel(org.apache.log4j.Level.TRACE);
62    }
63  
64    void verify(LoggingEvent le, String expectedMsg) {
65      assertEquals(expectedMsg, le.getMessage());
66      assertEquals(EXPECTED_FILE_NAME, le.getLocationInformation().getFileName());
67    }
68    
69    public void tearDown() throws Exception {
70      super.tearDown();
71    }
72  
73    public void testSmoke() {
74      LocLogger locLogger = llFactory_uk.getLocLogger(this.getClass());
75      locLogger.info(Months.JAN);
76      verify((LoggingEvent) listAppender.list.get(0), "January");
77      
78    }
79  }