/src/main/com/mongodb/util/TestCase.java

http://github.com/mongodb/mongo-java-driver · Java · 277 lines · 197 code · 58 blank · 22 comment · 35 complexity · c4b55bded181d97dd5536b4570aa70e9 MD5 · raw file

  1. // TestCase.java
  2. /**
  3. * Copyright (C) 2008 10gen Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package com.mongodb.util;
  18. import java.io.BufferedReader;
  19. import java.io.InputStreamReader;
  20. import java.lang.reflect.InvocationTargetException;
  21. import java.lang.reflect.Member;
  22. import java.lang.reflect.Method;
  23. import java.util.ArrayList;
  24. import java.util.List;
  25. import com.mongodb.Mongo;
  26. public class TestCase extends MyAsserts {
  27. static class Test {
  28. Test( Object o , Method m ){
  29. _o = o;
  30. _m = m;
  31. }
  32. Result run(){
  33. try {
  34. _m.invoke( _o );
  35. return new Result( this );
  36. }
  37. catch ( IllegalAccessException e ){
  38. return new Result( this , e );
  39. }
  40. catch ( InvocationTargetException ite ){
  41. return new Result( this , ite.getTargetException() );
  42. }
  43. }
  44. public String toString(){
  45. String foo = _o.getClass().getName() + "." + _m.getName();
  46. if ( _name == null )
  47. return foo;
  48. return _name + "(" + foo + ")";
  49. }
  50. protected String _name = null;
  51. final Object _o;
  52. final Method _m;
  53. }
  54. static class Result {
  55. Result( Test t ){
  56. this( t , null );
  57. }
  58. Result( Test t , Throwable error ){
  59. _test = t;
  60. _error = error;
  61. }
  62. boolean ok(){
  63. return _error == null;
  64. }
  65. public String toString(){
  66. StringBuilder buf = new StringBuilder();
  67. buf.append( _test );
  68. Throwable error = _error;
  69. while ( error != null ){
  70. buf.append( "\n\t" + error + "\n" );
  71. for ( StackTraceElement ste : error.getStackTrace() ){
  72. buf.append( "\t\t" + ste + "\n" );
  73. }
  74. error = error.getCause();
  75. }
  76. return buf.toString();
  77. }
  78. final Test _test;
  79. final Throwable _error;
  80. }
  81. /**
  82. * this is for normal class tests
  83. */
  84. public TestCase(){
  85. this( null );
  86. }
  87. public TestCase( String name ){
  88. for ( Method m : getClass().getMethods() ){
  89. if ( ! m.getName().startsWith( "test" ) )
  90. continue;
  91. if ( ( m.getModifiers() & Member.PUBLIC ) > 0 )
  92. continue;
  93. Test t = new Test( this , m );
  94. t._name = name;
  95. _tests.add( t );
  96. }
  97. }
  98. public TestCase( Object o , String m )
  99. throws NoSuchMethodException {
  100. this( o , o.getClass().getDeclaredMethod( m ) );
  101. }
  102. public TestCase( Object o , Method m ){
  103. _tests.add( new Test( o , m ) );
  104. }
  105. public void add( TestCase tc ){
  106. _tests.addAll( tc._tests );
  107. }
  108. public String cleanupDB = null;
  109. public Mongo cleanupMongo = null;
  110. @org.testng.annotations.AfterClass
  111. public void cleanup(){
  112. if ((cleanupMongo != null) && (cleanupDB != null)) {
  113. cleanupMongo.dropDatabase(cleanupDB);
  114. }
  115. }
  116. /**
  117. * @return true if everything succeeds
  118. */
  119. public boolean runConsole(){
  120. List<Result> errors = new ArrayList<Result>();
  121. List<Result> fails = new ArrayList<Result>();
  122. System.out.println( "Num Tests : " + _tests.size() );
  123. System.out.println( "----" );
  124. for ( Test t : _tests ){
  125. Result r = t.run();
  126. if ( r.ok() ){
  127. System.out.print(".");
  128. continue;
  129. }
  130. System.out.print( "x" );
  131. if ( r._error instanceof MyAssert )
  132. fails.add( r );
  133. else
  134. errors.add( r );
  135. }
  136. cleanup();
  137. System.out.println( "\n----" );
  138. int pass = _tests.size() - ( errors.size() + fails.size() );
  139. System.out.println( "Passes : " + pass + " / " + _tests.size() );
  140. System.out.println( "% Pass : " + ( ((double)pass*100) / _tests.size() ) );
  141. if ( pass == _tests.size() ){
  142. System.out.println( "SUCCESS" );
  143. return true;
  144. }
  145. System.err.println( "Num Pass : " + ( _tests.size() - ( errors.size() + fails.size() ) ) );
  146. System.err.println( "Num Erros : " + ( errors.size() ) );
  147. System.err.println( "Num Fails : " + ( fails.size() ) );
  148. System.err.println( "---------" );
  149. System.err.println( "ERRORS" );
  150. for ( Result r : errors )
  151. System.err.println( r );
  152. System.err.println( "---------" );
  153. System.err.println( "FAILS" );
  154. for ( Result r : fails )
  155. System.err.println( r );
  156. return false;
  157. }
  158. public String toString(){
  159. return "TestCase numCase:" + _tests.size();
  160. }
  161. final List<Test> _tests = new ArrayList<Test>();
  162. protected static void run( String args[] ){
  163. Args a = new Args( args );
  164. boolean foundMe = false;
  165. String theClass = null;
  166. for ( StackTraceElement ste : Thread.currentThread().getStackTrace() ){
  167. if ( foundMe ){
  168. theClass = ste.getClassName();
  169. break;
  170. }
  171. if ( ste.getClassName().equals( "com.mongodb.util.TestCase" ) &&
  172. ste.getMethodName().equals( "run" ) )
  173. foundMe = true;
  174. }
  175. if ( theClass == null )
  176. throw new RuntimeException( "something is broken" );
  177. try {
  178. TestCase tc = (TestCase) Class.forName( theClass ).newInstance();
  179. if ( a.getOption( "m" ) != null )
  180. tc = new TestCase( tc , a.getOption( "m" ) );
  181. tc.runConsole();
  182. }
  183. catch ( Exception e ){
  184. throw new RuntimeException( e );
  185. }
  186. }
  187. public static void main( String args[] )
  188. throws Exception {
  189. String dir = "src/test";
  190. if ( args != null && args.length > 0 )
  191. dir = args[0];
  192. Process p = Runtime.getRuntime().exec( "find " + dir );
  193. BufferedReader in = new BufferedReader( new InputStreamReader( p.getInputStream() ) );
  194. TestCase theTestCase = new TestCase();
  195. String line;
  196. while ( ( line = in.readLine() ) != null ){
  197. if ( ! line.endsWith( "Test.java" ) ) {
  198. continue;
  199. }
  200. line = line.substring( "src/test/".length() );
  201. line = line.substring( 0 , line.length() - ".java".length() );
  202. line = line.replaceAll( "//+" , "/" );
  203. line = line.replace( '/' , '.' );
  204. try {
  205. Class c = Class.forName( line );
  206. Object thing = c.newInstance();
  207. if ( ! ( thing instanceof TestCase ) )
  208. continue;
  209. System.out.println( line );
  210. TestCase tc = (TestCase)thing;
  211. theTestCase._tests.addAll( tc._tests );
  212. }
  213. catch ( Exception e ){
  214. e.printStackTrace();
  215. }
  216. }
  217. theTestCase.runConsole();
  218. }
  219. }