⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 p6testsubclasser.java

📁 一个跟踪调试jdbc的工具包。通过把jdbc做一个封装
💻 JAVA
字号:
/*
 *
 * ====================================================================
 *
 * The P6Spy Software License, Version 1.1
 *
 * This license is derived and fully compatible with the Apache Software
 * license, see http://www.apache.org/LICENSE.txt
 *
 * Copyright (c) 2001-2002 Andy Martin, Ph.D. and Jeff Goke
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in
 * the documentation and/or other materials provided with the
 * distribution.
 *
 * 3. The end-user documentation included with the redistribution, if
 * any, must include the following acknowlegement:
 * "The original concept and code base for P6Spy was conceived
 * and developed by Andy Martin, Ph.D. who generously contribued
 * the first complete release to the public under this license.
 * This product was due to the pioneering work of Andy
 * that began in December of 1995 developing applications that could
 * seamlessly be deployed with minimal effort but with dramatic results.
 * This code is maintained and extended by Jeff Goke and with the ideas
 * and contributions of other P6Spy contributors.
 * (http://www.p6spy.com)"
 * Alternately, this acknowlegement may appear in the software itself,
 * if and wherever such third-party acknowlegements normally appear.
 *
 * 4. The names "P6Spy", "Jeff Goke", and "Andy Martin" must not be used
 * to endorse or promote products derived from this software without
 * prior written permission. For written permission, please contact
 * license@p6spy.com.
 *
 * 5. Products derived from this software may not be called "P6Spy"
 * nor may "P6Spy" appear in their names without prior written
 * permission of Jeff Goke and Andy Martin.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

/**
 * Description: test for the Subclasser utility
 *
 * $Author: aarvesen $
 * $Revision: 1.3 $
 * $Date: 2003/12/01 00:40:54 $
 *
 * $Id: P6TestSubclasser.java,v 1.3 2003/12/01 00:40:54 aarvesen Exp $
 * $Log: P6TestSubclasser.java,v $
 * Revision 1.3  2003/12/01 00:40:54  aarvesen
 * test both the String as well as the Class constructor
 *
 * Revision 1.2  2003/08/07 19:09:18  aarvesen
 * modified to reflect the minor changes in the DataSource constructors
 *
 * Revision 1.1  2003/08/06 19:52:41  aarvesen
 * code to test out the new subclasser
 *
 */
package com.p6spy.engine.test;

import junit.framework.*;
import com.p6spy.engine.common.*;
import com.p6spy.engine.spy.*;
import java.io.*;

public class P6TestSubclasser extends TestCase {

  public P6TestSubclasser(String name) {
    super(name);
  }
  
  public void testString() throws Exception {
    Subclasser sub = new Subclasser();
    Class clazz = this.getClass();
    String packageName = clazz.getPackage().getName();
    String className = clazz.getName();

    // NB, this will all break if you change the package structure :)
    // pretty unlikely, but just in case it starts to fail, keep it in mind
    String expectedName = "P6TestSubclasser";
    assertEquals(expectedName, sub.baseName(className));
    
    // this one's a little trickier... since it could fail
    // depending on your architecture.  So put in this terrible
    // switchlike hack here
    String expectedPath = null;

    if (sub.DELIMITER.equals("/")) {
      expectedPath = "com/p6spy/engine/test";
    } else if (sub.DELIMITER.equals("\\")) {
      expectedPath = "com\\p6spy\\engine\\test";
    } else if (sub.DELIMITER.equals(":")) {
      expectedPath = "com:p6spy:engine:test";
    }

    if (expectedPath == null) {
      fail("Unexpected file separator: " + sub.DELIMITER + ". Please expand the test class to test for this file separator.");
    }

    assertEquals(expectedPath, sub.packToDir(packageName));

    // now check the default file
    String newName = "ThisIsATestClass";

    sub.setOutputPackage(packageName);
    sub.setOutputName(newName);

    File actualFile = sub.getOutputFile();
    File expectedFile = new File("scratch" + sub.DELIMITER + expectedPath, newName + ".java");
    
    assertEquals(expectedFile, actualFile);
  }

  public void testBadClass() throws Exception {
    final Subclasser sub = new Subclasser();
    // Protectable is JUnit class
    Protectable p = new Protectable() {
      public void protect() throws Exception {
	sub.createSubClass();
      }
    };

    chkException(p, "must not be null");

    sub.setParentClass(this.getClass());
    chkException(p, "instanceof javax.sql.DataSource");
  }

  public void testWriteHeader() throws Exception {
    final Subclasser sub = new Subclasser();
    // Protectable is JUnit class
    Protectable p = new Protectable() {
      public void protect() throws Exception {
	sub.writeHeader();
      }
    };

    chkException(p, null);

    sub.setParentClass(com.p6spy.engine.spy.P6DataSource.class);
    String actual = sub.writeHeader();

    // com.p6spy.engine.spy is imported twice since
    // we're sublcassing the p6spy datasource.
    String expected = "" +
      "// this class generated by class com.p6spy.engine.common.Subclasser" +
      sub.NEWLINE +
      sub.NEWLINE +
      "package " + sub.DEFAULT_PACKAGE + ";" +
      sub.NEWLINE +
      sub.NEWLINE +
      "import com.p6spy.engine.spy.*;" + sub.NEWLINE +
      "import java.sql.*;" + sub.NEWLINE +
      "import javax.sql.*;" + sub.NEWLINE +
      "import com.p6spy.engine.spy.*;" + sub.NEWLINE +
      sub.NEWLINE + 
      sub.NEWLINE + 
      "public class P6P6DataSource extends com.p6spy.engine.spy.P6DataSource {" +
      sub.NEWLINE + 
      "";

    assertEquals(sub.NEWLINE + expected, sub.NEWLINE + actual);
  }

  public void testWriteConstructors() throws Exception {
    final Subclasser sub = new Subclasser();
    Protectable p = new Protectable (){
      public void protect() throws Exception {
	sub.writeConstructors();
      }
    };

    chkException(p, null);

    sub.setParentClass(javax.sql.DataSource.class);
    chkException(p, "interface");

    sub.setParentClass(com.p6spy.engine.spy.P6DataSource.class);
    String expected = "" + 
      sub.NEWLINE +
      sub.INDENT + "public P6P6DataSource (javax.sql.DataSource p0) {" +
      sub.NEWLINE +
      sub.INDENT + sub.INDENT + "super( p0);" +
      sub.NEWLINE +
      sub.INDENT + "}" +
      sub.NEWLINE +
      sub.INDENT + "public P6P6DataSource () {" +
      sub.NEWLINE +
      sub.INDENT + sub.INDENT + "super();" +
      sub.NEWLINE +
      sub.INDENT + "}" +
      "";
    String actual = sub.writeConstructors();

    assertEquals(expected, actual);
    // sometimes JUnit truncs the strings... if that's the case with your
    // version, then you can uncomment this line to get out own
    // full listing of the strings in their variance
    //assertEquals("Expected constructor like: " + sub.NEWLINE + expected + sub.NEWLINE + " but found " + sub.NEWLINE + actual + sub.NEWLINE, expected, actual);
  }

  public void testOverride() throws Exception {
    Subclasser sub = new Subclasser();
    String actual = sub.overrideConnection();
    String expected = "" +
      sub.NEWLINE +
      sub.INDENT + 
      "public Connection getConnection() throws SQLException {" +
      sub.NEWLINE +
      sub.INDENT + 
      sub.INDENT + 
      "return P6SpyDriverCore.wrapConnection(super.getConnection());" +
      sub.NEWLINE +
      sub.INDENT + 
      "};" +
      sub.NEWLINE +
      sub.NEWLINE +
      sub.INDENT + 
      "public Connection getConnection(String username, String password) throws SQLException {" +
      sub.NEWLINE +
      sub.INDENT + 
      sub.INDENT + 
      "return P6SpyDriverCore.wrapConnection(super.getConnection(username, password));" +
      sub.NEWLINE +
      sub.INDENT + 
      "};" +
      sub.NEWLINE +
      "";

    assertEquals(expected, actual);
  }


  protected void chkException(Protectable p, String msg) {
    try {
      p.protect();
      fail ("Expected exception with message containing '" + msg + "', but no exception was thrown.");
    } catch (Throwable e) {
      String actual = e.getMessage();
      if (msg == null && actual == null) {
	// okay
      } else if (actual == null && msg != null) {
	fail ("Expected exception with message containing '" + msg + "', but got a null message from " + e.getClass().getName());
      }	 else if (msg == null && actual != null) {
	fail ("Expected null message, but got a '" + actual + "'.");
      }	else if (actual.indexOf(msg) == -1) {
	fail ("Expected exception with message containing '" + msg + "', but message was '" + actual + "'.");
      }
    }
  }

  public void testClassCreation() throws Exception {
    Subclasser sub = null;
    
    createSubclasser(com.p6spy.engine.spy.P6DataSource.class);
    createSubclasser(oracle.jdbc.pool.OracleDataSource.class);

    createSubclasser("com.p6spy.engine.spy.P6DataSource");
    createSubclasser("oracle.jdbc.pool.OracleDataSource");
  }

  protected void createSubclasser(String name) throws Exception {
    compareFiles(new Subclasser(name));
  }

  protected void createSubclasser(Class pc) throws Exception {
    compareFiles(new Subclasser(pc));
  }

  protected void compareFiles(Subclasser sub) throws Exception {
    sub.createSubClass();
    String name = sub.getOutputName();

    File expected = new File ("etc", name + ".java");
    File actual = sub.getOutputFile();

    compareFiles(expected, actual);
  }

  protected void compareFiles(File expected, File actual) throws IOException {
    if (! expected.exists()) {
      fail("Expected file " + expected + " does not exist.");
    }
    if (! actual.exists()) {
      fail("Output file " + actual + " does not exist.");
    }

    BufferedReader ebr = new BufferedReader(new FileReader(expected));
    BufferedReader abr = new BufferedReader(new FileReader(actual));
    String eline = null;
    String aline = null;
    int count = 0;
    try {
      while ((eline = ebr.readLine()) != null) {
	count++;
	aline = abr.readLine();

	if (aline == null) {
	  fail(expected.getName() + " " + count + ": No more lines in the output file " + actual.getName());
	}

	assertEquals("Lines from " + expected.getName() + " and " + actual.getName() + " are not the same", eline, aline);
      }

      if ((aline = abr.readLine()) != null) {
	  fail(actual.getName() + " " + (count + 1) + ": No more lines in the expected file " + expected.getName());
      }

    } finally {
      ebr.close();
      abr.close();
    }
	
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -