Source Code Cross Referenced for SurrogateCalls.java in  » Testing » Surrogate » net » sf » surrogate » core » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Testing » Surrogate » net.sf.surrogate.core 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


/* Copyright (c) 2005 Per S Hustad. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without 
 * modification, are permitted provided that the following conditions are met:
 *
 *  o Redistributions of source code must retain the above copyright notice, 
 *    this  list of conditions and the following disclaimer. 
 *    
 *  o 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. 
 *    
 *  o Neither the name of surrogate.sourceforge.net nor the names of 
 *    its contributors may be used to endorse or promote products derived 
 *    from this  software without specific prior written permission. 
 *    
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
 * AND ANY EXPRESS 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 COPYRIGHT OWNER OR 
 * 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.
 */
package net.sf.surrogate.core;

import net.sf.surrogate.core.SurrogateManager;
/**
 * Abstract aspect for use with the Surrogate framework. This aspect provides
 * the standard interaction with the
 * {@link net.sf.surrogate.core.SurrogateManager}. Instead of coding relatively
 * complex advices, the user only needs to create a concrete implementation of
 * the <code>SurrogateCalls</code> advice, and implement the <a
 * href=#mockPointcut()"> <code>mockPointcut</code> </a> pointcut. The advices
 * then handles the standard processing towards the
 * <code>SurrogateManager</code>.
 * <p>
 * An example implementation is
 * <pre>
 *     aspect MyCalls extends SurrogateCalls {
 *   
 *       protected pointcut mockPoincut() : 
 *         (
 *           execution(* com.mycompany.MyClass.getOrder(..) ) ||
 *           call (java.io.*Writer.new(..)) ||
 *           call(* java.lang.System.currentTimeMillis())
 *         ) ;
 *    }
 * </pre> 
 * and an example "difficult-to-test or mock" java class is:
 * <pre>
 *    package com.mycompany;
 *    import java.io.*;
 *  
 *    public class MyClass {
 *    
 *      public static final Order getOrder(String orderId) {
 *        Writer out = new BufferedWriter(
 *               new FileWriter(&quot;D:/production/customer_name.log&quot;));
 *        out.write(orderId);
 *        return new Order(System.currentTimeMillis());
 *      }
 *      ....
 *   }
 * </pre>
 * Since the method is final and contains calls to external, varying entities
 * (system time and external file), it is normally difficult to 1) replace the
 * "getOrder" method by a mock and 2) test the internals of the method.
 * Surrogate provides a solution to this problem.
 * 
 * The advice would, when woven with the "classes-under-test", allow you to
 * substitute mock objects for the following:
 * <ul>
 * <li>Every time <code>com.mycompany.MyClass.getOrder</code> executes. You
 * could override the method by a corresponding "mock method" using the
 * {@link net.sf.surrogate.core.SurrogateManager#addMockMethod addMockMethod},
 * or override the method execution and return value by using the
 * {@link net.sf.surrogate.core.SurrogateManager#addMock addMock} method.
 * <li>Every time a "Writer" in the "java.io" package is instantiated from
 * within the classes-under-test. You could override the BufferedWriter and/or
 * FileWriter with a custom-made mock Writer extending the class. The mock is
 * added using the
 * {@link net.sf.surrogate.core.SurrogateManager#addMock addMock} method.
 * <li>Every time the classes-under-test call
 * <code>System.currentTimeMillis()</code>. You could control the time
 * returned by using the
 * {@link net.sf.surrogate.core.SurrogateManager#addMockMethod addMockMethod}
 * </ul>
 * 
 * @author Per S Hustad
 */

public abstract aspect SurrogateCalls  {
   /**
    * Defines the pointcut allowing to substitute method return values with a
    * mock object implementation or to substitute a method call or method
    * execution with a <code>MockMethod</code>. Resulting implementations of
    * this pointcut must be <b>method </b> or </b>constructor </b> pointcuts.
    * <p>
    * <strong>Note: </strong> If you define a pointcut on a method returning,
    * say <code>java.lang.Object</code> be aware of that the return value
    * almost certainly will be subsituteted by any mock object, since all
    * Objects inherits from <code>java.lang.Object</code>.
    */
   protected abstract pointcut mockPointcut();
   
   
   /*
    * Tell the AspectJ weaver to fail with an error message if the subclasses
    * implements mockPointcuts which are not "call" or "execution". Otherwise, a
    * runtime exception would be thrown by the SurrogateManager
    */
   declare error : (mockPointcut() && 
   		!(call(* *(..)) || execution(* *(..)) ||
   		  call(*.new(..)) || execution(*.new(..))		
   		))
   		: 
    "surrogate: \"mockPointcuts\" must be \"call\" or \"execution\" pointcuts";


   /**
    * Executes when a <code>mockPointcut</code> pointcut is detected. If a
    * mock has been registered, that object is allowed to execute, otherwise,
    * the original code is allowed to proceed.
    * <p>
    * <b>Throws </b> Throwable - any Throwable thrown by the SurrogateManager or
    * executing mock is catched and rethrown.
    * <p>
    * <b>See also </b><a
    * href="SurrogateManager.html#getMockExecutor">SurrogateManager.getMockExecutor
    * </a> <b><a href="ExceptionThrower.html">ExceptionThrower </a> <b>
    */
    Object around() : mockPointcut()
    { 
      try
      {
        SurrogateManager.MockExecutor e = 
            SurrogateManager.getInstance().getMockExecutor(thisJoinPoint);
        return e != null ? e.execute(thisJoinPoint.getArgs()) : proceed();
      } catch (Throwable t) {
        ExceptionThrower.throwThrowable(t);
        return null;
      }
    } 
    
 }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.