001: /*
002: * @(#)ThrowableParserUTest.java
003: *
004: * Copyright (C) 2002-2003 Matt Albrecht
005: * groboclown@users.sourceforge.net
006: * http://groboutils.sourceforge.net
007: *
008: * Permission is hereby granted, free of charge, to any person obtaining a
009: * copy of this software and associated documentation files (the "Software"),
010: * to deal in the Software without restriction, including without limitation
011: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
012: * and/or sell copies of the Software, and to permit persons to whom the
013: * Software is furnished to do so, subject to the following conditions:
014: *
015: * The above copyright notice and this permission notice shall be included in
016: * all copies or substantial portions of the Software.
017: *
018: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
019: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
020: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
021: * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
022: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
023: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
024: * DEALINGS IN THE SOFTWARE.
025: */
026:
027: package net.sourceforge.groboutils.util.throwable.v1;
028:
029: import org.easymock.EasyMock;
030: import org.easymock.MockControl;
031: import junit.framework.Test;
032: import junit.framework.TestCase;
033: import junit.framework.TestSuite;
034:
035: import org.apache.log4j.Logger;
036:
037: /**
038: * Tests the ThrowableParser class.
039: *
040: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
041: * @version $Date: 2003/02/10 22:52:43 $
042: * @since March 17, 2002
043: */
044: public class ThrowableParserUTest extends TestCase {
045: //-------------------------------------------------------------------------
046: // Standard JUnit Class-specific declarations
047:
048: private static final Class THIS_CLASS = ThrowableParserUTest.class;
049: private static final Logger LOG = Logger.getLogger(THIS_CLASS);
050:
051: public ThrowableParserUTest(String name) {
052: super (name);
053: }
054:
055: //-------------------------------------------------------------------------
056: // setup
057:
058: /**
059: *
060: * @exception Exception thrown under any exceptional condition.
061: */
062: protected void setUp() throws Exception {
063: super .setUp();
064:
065: // set ourself up
066: }
067:
068: //-------------------------------------------------------------------------
069: // Tests
070:
071: public void testConstructor1() {
072: try {
073: new ThrowableParser(null);
074: fail("did not throw an IllegalArgumentException");
075: } catch (IllegalArgumentException e) {
076: // test exception?
077: }
078: }
079:
080: public void testConstructor2() {
081: new ThrowableParser(new Throwable());
082: }
083:
084: /**
085: * More of a UIT than a UT...
086: */
087: public void testTrace1() {
088: Throwable t = new Throwable();
089: t.fillInStackTrace();
090: ThrowableParser tp = new ThrowableParser(t);
091: boolean foundMe = false;
092: while (true) {
093: StackTraceLineParser stlp = tp.next();
094: if (stlp == null)
095: break;
096:
097: LOG.info("Stack trace: " + stlp);
098: if (stlp.getClassName().equals(this .getClass().getName())) {
099: LOG.debug("foundMe == true");
100: foundMe = true;
101: } else {
102: LOG.debug("stack class name '" + stlp.getClassName()
103: + "' did not match this class name '"
104: + this .getClass().getName() + "'.");
105: }
106: }
107: LOG.debug("foundMe == " + foundMe);
108: assertTrue("Did not find this class in the stack trace.",
109: foundMe);
110: }
111:
112: //-------------------------------------------------------------------------
113: // Helpers
114:
115: //-------------------------------------------------------------------------
116: // Standard JUnit declarations
117:
118: public static Test suite() {
119: TestSuite suite = new TestSuite(THIS_CLASS);
120:
121: // Test the implementation's interface conformity.
122: /*
123: suite.addTest( IxUTestI.suite(
124: new ImplementationCreator[] {
125: new ImplementationCreator() {
126: public Object createImplementedObject() {
127: // XXXXXXXXXXXXXXXXXXXXXXXX
128: }
129: },
130: } ) );
131: */
132:
133: return suite;
134: }
135:
136: public static void main(String[] args) {
137: String[] name = { THIS_CLASS.getName() };
138:
139: // junit.textui.TestRunner.main( name );
140: // junit.swingui.TestRunner.main( name );
141:
142: junit.textui.TestRunner.main(name);
143: }
144:
145: /**
146: *
147: * @exception Exception thrown under any exceptional condition.
148: */
149: protected void tearDown() throws Exception {
150: // tear ourself down
151:
152: super.tearDown();
153: }
154: }
|