2009-03-19 04:00:49 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2009-12-10 23:22:55 +08:00
< !DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
2009-03-19 04:00:49 +08:00
<chapter id= "testing" >
<title > Testing</title>
<section id= "testing-introduction" >
2009-09-23 22:59:21 +08:00
<title > Introduction to testing</title>
<para > Testing is an integral part of enterprise software development. This
chapter focuses on the value-add of the IoC principle to <link
linkend="unit-testing">unit testing</link> and on the benefits of Spring
Framework <link linkend= "integration-testing" > integration testing</link> .
2011-01-21 08:23:34 +08:00
<emphasis > (A thorough treatment of testing in the enterprise is beyond the
scope of this chapter.)</emphasis> </para>
2009-03-19 04:00:49 +08:00
</section>
<section id= "unit-testing" >
<title > Unit testing</title>
2009-09-23 22:59:21 +08:00
<para > Dependency Injection should make your code less dependent on the
container than it would be with traditional Java EE development. The POJOs
that make up your application should be testable in JUnit or TestNG tests,
with objects simply instantiated using the <literal > new</literal>
operator, <emphasis > without Spring or any other container</emphasis> . You
can use <link linkend= "mock-objects" > mock objects</link> (in conjunction
with other valuable testing techniques) to test your code in isolation. If
you follow the architecture recommendations for Spring, the resulting
clean layering and componentization of your codebase will facilitate
easier unit testing. For example, you can test service layer objects by
stubbing or mocking DAO or Repository interfaces, without needing to
access persistent data while running unit tests.</para>
<para > True unit tests typically run extremely quickly, as there is no
runtime infrastructure to set up. Emphasizing true unit tests as part of
your development methodology will boost your productivity. You may not
need this section of the testing chapter to help you write effective unit
tests for your IoC-based applications. For certain unit testing scenarios,
however, the Spring Framework provides the following mock objects and
testing support classes.</para>
2009-03-19 04:00:49 +08:00
<section id= "mock-objects" >
<title > Mock objects</title>
<section id= "mock-objects-jndi" >
<title > JNDI</title>
<para > The <literal > org.springframework.mock.jndi</literal> package
2009-09-23 22:59:21 +08:00
contains an implementation of the JNDI SPI, which you can use to set
up a simple JNDI environment for test suites or stand-alone
2009-03-19 04:00:49 +08:00
applications. If, for example, JDBC <classname > DataSource</classname> s
2009-07-31 02:32:05 +08:00
get bound to the same JNDI names in test code as within a Java EE
2009-09-23 22:59:21 +08:00
container, you can reuse both application code and configuration in
2009-03-19 04:00:49 +08:00
testing scenarios without modification.</para>
</section>
<section id= "mock-objects-servlet" >
<title > Servlet API</title>
<para > The <literal > org.springframework.mock.web</literal> package
contains a comprehensive set of Servlet API mock objects, targeted at
usage with Spring's Web MVC framework, which are useful for testing
web contexts and controllers. These mock objects are generally more
2009-09-23 22:59:21 +08:00
convenient to use than dynamic mock objects such as <ulink
url="http://www.easymock.org">EasyMock</ulink> or existing Servlet API
mock objects such as <ulink
url="http://www.mockobjects.com">MockObjects</ulink> .</para>
2009-03-19 04:00:49 +08:00
</section>
<section id= "mock-objects-portlet" >
<title > Portlet API</title>
<para > The <literal > org.springframework.mock.web.portlet</literal>
package contains a set of Portlet API mock objects, targeted at usage
with Spring's Portlet MVC framework.</para>
</section>
</section>
<section id= "unit-testing-support-classes" >
<title > Unit testing support classes</title>
<section id= "unit-testing-utilities" >
<title > General utilities</title>
<para > The <literal > org.springframework.test.util</literal> package
contains <classname > ReflectionTestUtils</classname> , which is a
2009-09-23 22:59:21 +08:00
collection of reflection-based utility methods. Developers use these
methods in unit and integration testing scenarios in which they need
to set a non-<literal > public</literal> field or invoke a
non-<literal > public</literal> setter method when testing application
2009-03-19 04:00:49 +08:00
code involving, for example:</para>
<itemizedlist >
<listitem >
2009-09-23 22:59:21 +08:00
<para > ORM frameworks such as JPA and Hibernate that condone
<literal > private</literal> or <literal > protected</literal> field
access as opposed to <literal > public</literal> setter methods for
properties in a domain entity.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
<para > Spring's support for annotations such as
2010-12-30 13:47:23 +08:00
<interfacename > @Autowired</interfacename> ,
<interfacename > @Inject</interfacename> , and
2009-09-23 22:59:21 +08:00
<interfacename > @Resource,</interfacename> which provides
dependency injection for <literal > private</literal> or
2009-03-19 04:00:49 +08:00
<literal > protected</literal> fields, setter methods, and
2010-12-30 13:47:23 +08:00
configuration methods.</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
</section>
<section id= "unit-testing-spring-mvc" >
<title > Spring MVC</title>
<para > The <literal > org.springframework.test.web</literal> package
2009-09-23 22:59:21 +08:00
contains <classname > ModelAndViewAssert</classname> , which you can use
2011-03-13 08:25:58 +08:00
in combination with JUnit, TestNG, or any other testing framework
for unit tests dealing
2009-09-23 22:59:21 +08:00
with Spring MVC <classname > ModelAndView</classname> objects.</para>
2009-06-19 20:22:18 +08:00
2009-05-06 14:25:03 +08:00
<tip >
2009-06-19 20:22:18 +08:00
<title > Unit testing Spring MVC Controllers</title>
<para > To test your Spring MVC <literal > Controller</literal> s, use
<classname > ModelAndViewAssert</classname> combined with
<literal > MockHttpServletRequest</literal> ,
2009-09-23 22:59:21 +08:00
<literal > MockHttpSession</literal> , and so on from the <link
2009-06-19 20:22:18 +08:00
linkend="mock-objects-servlet"><literal > org.springframework.mock.web</literal> </link>
package.</para>
2009-05-06 14:25:03 +08:00
</tip>
2009-03-19 04:00:49 +08:00
</section>
</section>
</section>
<section id= "integration-testing" >
<title > Integration testing</title>
<section id= "integration-testing-overview" >
<title > Overview</title>
<para > It is important to be able to perform some integration testing
without requiring deployment to your application server or connecting to
other enterprise infrastructure. This will enable you to test things
such as:</para>
<itemizedlist >
<listitem >
<para > The correct wiring of your Spring IoC container
contexts.</para>
</listitem>
<listitem >
<para > Data access using JDBC or an ORM tool. This would include such
things as the correctness of SQL statements, Hibernate queries, JPA
entity mappings, etc.</para>
</listitem>
</itemizedlist>
2010-12-30 13:47:23 +08:00
<para > The Spring Framework provides first-class support for
2009-12-04 23:21:51 +08:00
integration testing in
the <filename class= "libraryfile" > spring-test</filename> module.
2011-01-21 08:23:34 +08:00
The name of the actual JAR file might include the release
2009-12-04 23:21:51 +08:00
version and might also be in the
long <filename > org.springframework.test</filename> form,
depending on where you got it from (see
2011-01-21 08:23:34 +08:00
the <link linkend= "dependency-management" > section on Dependency
2009-12-04 23:21:51 +08:00
Management</link> for an explanation). This library includes
the <literal > org.springframework.test</literal> package, which
contains valuable classes for integration testing with a Spring
container. This testing does not rely on an application server
or other deployment environment. Such tests are slower to run
2009-12-05 04:43:45 +08:00
than unit tests but much faster than the equivalent Cactus
2009-12-04 23:21:51 +08:00
tests or remote tests that rely on deployment to an application
server.</para>
2009-09-23 22:59:21 +08:00
<para > In Spring 2.5 and later, unit and integration testing support is
provided in the form of the annotation-driven <link
2009-06-19 20:22:18 +08:00
linkend="testcontext-framework">Spring TestContext Framework</link> . The
2011-03-13 08:25:58 +08:00
TestContext framework is agnostic of the actual testing framework in
2009-06-19 20:22:18 +08:00
use, thus allowing instrumentation of tests in various environments
2009-09-23 22:59:21 +08:00
including JUnit, TestNG, and so on.</para>
2009-06-19 20:22:18 +08:00
2009-08-27 07:23:07 +08:00
<warning >
2011-03-13 08:25:58 +08:00
<title > JUnit 3.8 support is deprecated</title>
2009-06-19 20:22:18 +08:00
2011-03-13 08:25:58 +08:00
<para > As of Spring 3.0, the legacy JUnit 3.8 base class hierarchy (i.e.,
2009-06-19 20:22:18 +08:00
<classname > AbstractDependencyInjectionSpringContextTests</classname> ,
<classname > AbstractTransactionalDataSourceSpringContextTests</classname> ,
etc.) is officially deprecated and will be removed in a later release.
2011-03-13 08:25:58 +08:00
Any test classes based on this code should be migrated to the
<link linkend= "testcontext-framework" > Spring
TestContext Framework</link> .</para>
<para > As of Spring 3.1, the JUnit 3.8 base classes in the Spring
TestContext Framework (i.e.,
<classname > AbstractJUnit38SpringContextTests</classname> and
<classname > AbstractTransactionalJUnit38SpringContextTests</classname> )
have been officially deprecated and will be removed in a later release.
Any test classes based on this code should be migrated to the JUnit 4
or TestNG support provided by the <link linkend= "testcontext-framework" > Spring
2009-06-19 20:22:18 +08:00
TestContext Framework</link> .</para>
2009-08-27 07:23:07 +08:00
</warning>
2009-03-19 04:00:49 +08:00
</section>
2009-05-05 16:02:22 +08:00
<section id= "integration-testing-goals" >
2009-09-23 22:59:21 +08:00
<title > Goals of integration testing</title>
2009-03-19 04:00:49 +08:00
2009-09-23 22:59:21 +08:00
<para > Spring's integration testing support has the following
2010-12-30 13:47:23 +08:00
primary goals:</para>
2009-03-19 04:00:49 +08:00
<itemizedlist >
<listitem >
2010-12-30 13:47:23 +08:00
<para > To manage <link linkend= "testing-ctx-management" > Spring IoC container
2009-03-19 04:00:49 +08:00
caching</link> between test execution.</para>
</listitem>
<listitem >
2010-12-30 13:47:23 +08:00
<para > To provide <link linkend= "testing-fixture-di" > Dependency Injection of
2009-09-23 22:59:21 +08:00
test fixture instances</link> .</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2010-12-30 13:47:23 +08:00
<para > To provide <link linkend= "testing-tx" > transaction management</link>
2009-09-23 22:59:21 +08:00
appropriate to integration testing.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2010-12-30 13:47:23 +08:00
<para > To supply <link linkend= "testing-support-classes" > Spring-specific
base classes</link> that assist developers in writing integration
tests.</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
2009-09-23 22:59:21 +08:00
<para > The next few sections describe each goal and provide links to
implementation and configuration details.</para>
2009-03-19 04:00:49 +08:00
<section id= "testing-ctx-management" >
<title > Context management and caching</title>
2009-06-19 20:22:18 +08:00
<para > The Spring TestContext Framework provides consistent loading of
Spring <classname > ApplicationContext</classname> s and caching of those
contexts. Support for the caching of loaded contexts is important,
2010-12-30 13:47:23 +08:00
because startup time can become an issue — not because of the overhead
2009-09-23 22:59:21 +08:00
of Spring itself, but because the objects instantiated by the Spring
container take time to instantiate. For example, a project with 50 to
100 Hibernate mapping files might take 10 to 20 seconds to load the
mapping files, and incurring that cost before running every test in
every test fixture leads to slower overall test runs that could reduce
2009-06-19 20:22:18 +08:00
productivity.</para>
<para > Test classes provide an array containing the resource locations
2010-12-30 13:47:23 +08:00
of XML configuration metadata — typically in the classpath — that is
2009-09-23 22:59:21 +08:00
used to configure the application. These locations are the same as or
similar to the list of configuration locations specified in
<literal > web.xml</literal> or other deployment configuration
files.</para>
2009-03-19 04:00:49 +08:00
<para > By default, once loaded, the configured
2009-09-23 22:59:21 +08:00
<interfacename > ApplicationContext</interfacename> is reused for each
2011-01-21 08:23:34 +08:00
test. Thus the setup cost is incurred only once (per test suite),
2009-09-23 22:59:21 +08:00
and subsequent test execution is much faster. In the unlikely case
2010-12-30 13:47:23 +08:00
that a test corrupts the application context and requires reloading —
for example, by modifying a bean definition or the state of an
2011-01-21 08:23:34 +08:00
application object — the TestContext framework can be configured
2011-03-13 08:25:58 +08:00
to reload the configuration and rebuild the application
2009-09-23 22:59:21 +08:00
context before executing the next test.</para>
<para > See context management and caching with the <link
2009-06-19 20:22:18 +08:00
linkend="testcontext-ctx-management">TestContext
2011-03-13 08:25:58 +08:00
framework</link> .</para>
2009-03-19 04:00:49 +08:00
</section>
<section id= "testing-fixture-di" >
<title > Dependency Injection of test fixtures</title>
2009-06-19 20:22:18 +08:00
<para > When the TestContext framework loads your application context,
it can optionally configure instances of your test classes via
Dependency Injection. This provides a convenient mechanism for setting
2009-09-23 22:59:21 +08:00
up test fixtures using preconfigured beans from your application
2009-06-19 20:22:18 +08:00
context. A strong benefit here is that you can reuse application
contexts across various testing scenarios (e.g., for configuring
Spring-managed object graphs, transactional proxies,
2009-03-19 04:00:49 +08:00
<classname > DataSource</classname> s, etc.), thus avoiding the need to
2010-12-30 13:47:23 +08:00
duplicate complex test fixture set up for individual test cases.</para>
2009-03-19 04:00:49 +08:00
<para > As an example, consider the scenario where we have a class,
2011-01-21 08:23:34 +08:00
<classname > HibernateTitleRepository</classname> , that performs data access
2009-03-19 04:00:49 +08:00
logic for say, the <classname > Title</classname> domain object. We want
to write integration tests that test all of the following
areas:</para>
<itemizedlist >
<listitem >
<para > The Spring configuration: basically, is everything related
to the configuration of the
2011-01-21 08:23:34 +08:00
<classname > HibernateTitleRepository</classname> bean correct and
2009-03-19 04:00:49 +08:00
present?</para>
</listitem>
<listitem >
<para > The Hibernate mapping file configuration: is everything
2010-12-30 13:47:23 +08:00
mapped correctly, and are the correct lazy-loading settings in
2009-03-19 04:00:49 +08:00
place?</para>
</listitem>
<listitem >
2011-01-21 08:23:34 +08:00
<para > The logic of the <classname > HibernateTitleRepository</classname> :
2009-03-19 04:00:49 +08:00
does the configured instance of this class perform as
anticipated?</para>
</listitem>
</itemizedlist>
2010-12-30 13:47:23 +08:00
<para > See dependency injection of test fixtures with the <link
2011-03-13 08:25:58 +08:00
linkend="testcontext-fixture-di">TestContext framework</link> .</para>
2009-03-19 04:00:49 +08:00
</section>
<section id= "testing-tx" >
<title > Transaction management</title>
<para > One common issue in tests that access a real database is their
affect on the state of the persistence store. Even when you're using a
development database, changes to the state may affect future tests.
2010-12-30 13:47:23 +08:00
Also, many operations — such as inserting or modifying persistent data
— cannot be performed (or verified) outside a transaction.</para>
2009-06-19 20:22:18 +08:00
<para > The TestContext framework addresses this issue. By default, the
framework will create and roll back a transaction for each test. You
simply write code that can assume the existence of a transaction. If
you call transactionally proxied objects in your tests, they will
behave correctly, according to their transactional semantics. In
addition, if test methods delete the contents of selected tables while
running within a transaction, the transaction will roll back by
default, and the database will return to its state prior to execution
of the test. Transactional support is provided to your test class via
a <classname > PlatformTransactionManager</classname> bean defined in
the test's application context.</para>
2009-03-19 04:00:49 +08:00
2010-12-30 13:47:23 +08:00
<para > If you want a transaction to commit — unusual, but occasionally
2009-03-19 04:00:49 +08:00
useful when you want a particular test to populate or modify the
2010-12-30 13:47:23 +08:00
database — the TestContext framework can be instructed to cause the
2009-06-19 20:22:18 +08:00
transaction to commit instead of roll back via the <link
linkend="integration-testing-annotations"><interfacename > @TransactionConfiguration</interfacename> </link>
and <link
linkend="integration-testing-annotations"><interfacename > @Rollback</interfacename> </link>
2009-05-06 14:25:03 +08:00
annotations.</para>
2009-03-19 04:00:49 +08:00
2009-09-23 22:59:21 +08:00
<para > See transaction management with the <link
2011-03-13 08:25:58 +08:00
linkend="testcontext-tx">TestContext framework</link> .</para>
2009-03-19 04:00:49 +08:00
</section>
<section id= "testing-support-classes" >
2009-09-23 22:59:21 +08:00
<title > Support classes for integration testing</title>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<para > The Spring TestContext Framework provides several
2009-09-23 22:59:21 +08:00
<literal > abstract</literal> support classes that simplify the writing
of integration tests. These base test classes provide well-defined
hooks into the testing framework as well as convenient instance
variables and methods, which enable you to access:</para>
2009-03-19 04:00:49 +08:00
<itemizedlist >
<listitem >
2009-09-23 22:59:21 +08:00
<para > The <literal > ApplicationContext</literal> , for performing
explicit bean lookups or testing the state of the context as a
whole.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2010-12-30 13:47:23 +08:00
<para > A <classname > SimpleJdbcTemplate</classname> , for executing
SQL statements to query the database.
Such queries can be used to confirm database state both
<emphasis > prior to</emphasis> and <emphasis > after</emphasis>
execution of database-related application code, and Spring
ensures that such queries run in the scope of the same
transaction as the application code. When used in conjunction
with an ORM tool, be sure to avoid
<link linkend= "testcontext-tx-false-positives" > false positives</link> .</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
2009-09-23 22:59:21 +08:00
<para > In addition, you may want to create your own custom,
application-wide superclass with instance variables and methods
specific to your project.</para>
2009-03-19 04:00:49 +08:00
2009-09-23 22:59:21 +08:00
<para > See support classes for the <link
2009-06-19 20:22:18 +08:00
linkend="testcontext-support-classes">TestContext
2011-03-13 08:25:58 +08:00
framework</link> .</para>
2009-03-19 04:00:49 +08:00
</section>
</section>
<section id= "integration-testing-support-jdbc" >
<title > JDBC testing support</title>
<para > The <literal > org.springframework.test.jdbc</literal> package
contains <classname > SimpleJdbcTestUtils</classname> , which is a
Java-5-based collection of JDBC related utility functions intended to
simplify standard database testing scenarios. <emphasis > Note that <link
2011-03-13 08:25:58 +08:00
linkend="testcontext-support-classes-junit4"><classname > AbstractTransactionalJUnit4SpringContextTests</classname> </link>
2009-03-19 04:00:49 +08:00
and <link
linkend="testcontext-support-classes-testng"><classname > AbstractTransactionalTestNGSpringContextTests</classname> </link>
provide convenience methods which delegate to
<classname > SimpleJdbcTestUtils</classname> internally.</emphasis> </para>
</section>
2009-05-05 16:02:22 +08:00
<section id= "integration-testing-annotations" >
2010-12-30 13:47:23 +08:00
<title > Annotations</title>
2009-03-19 04:00:49 +08:00
2009-05-05 16:02:22 +08:00
<para > The Spring Framework provides the following set of
2009-06-19 20:22:18 +08:00
<emphasis > Spring-specific</emphasis> annotations that you can use in
your unit and integration tests in conjunction with the TestContext
framework. Refer to the respective JavaDoc for further information,
2009-09-23 22:59:21 +08:00
including default attribute values, attribute aliases, and so on.</para>
2009-03-19 04:00:49 +08:00
2009-05-05 16:02:22 +08:00
<itemizedlist >
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @ContextConfiguration</interfacename> </emphasis> </para>
2009-03-19 04:00:49 +08:00
2009-09-23 22:59:21 +08:00
<para > Defines class-level metadata that is used to determine how to
2009-06-19 20:22:18 +08:00
load and configure an
<interfacename > ApplicationContext</interfacename> . Specifically,
2009-07-07 02:04:37 +08:00
<interfacename > @ContextConfiguration</interfacename> defines the
2009-09-23 22:59:21 +08:00
application context resource <literal > locations</literal> to load as
well as the <interfacename > ContextLoader</interfacename> strategy to
use for loading the context.</para>
2009-06-19 20:22:18 +08:00
2010-12-30 13:47:23 +08:00
<programlisting language= "java" > @ContextConfiguration(locations="example/test-context.xml", loader=CustomContextLoader.class)
2009-05-05 16:02:22 +08:00
public class CustomConfiguredApplicationContextTests {
2009-03-19 04:00:49 +08:00
<lineannotation > // class body...</lineannotation>
}</programlisting>
2009-05-05 16:02:22 +08:00
2009-09-23 22:59:21 +08:00
<note >
<para > <interfacename > @ContextConfiguration</interfacename>
supports <emphasis > inherited</emphasis> resource locations by
default. See <link linkend= "testcontext-ctx-management" > Context
management and caching</link> and JavaDoc for an example and
further details.</para>
</note>
2009-06-19 20:22:18 +08:00
</listitem>
2009-03-19 04:00:49 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @DirtiesContext</interfacename> </emphasis> </para>
2009-07-07 06:23:55 +08:00
<para > Indicates that the underlying Spring
<interfacename > ApplicationContext</interfacename> has been
2010-12-30 13:47:23 +08:00
<emphasis > dirtied</emphasis> (i.e., modified or corrupted in some manner)
during the execution of a test and should be closed,
regardless of whether the test passed.
<interfacename > @DirtiesContext</interfacename> is supported in
the following scenarios:</para>
2009-09-23 22:59:21 +08:00
2009-07-07 06:23:55 +08:00
<itemizedlist >
2009-09-23 22:59:21 +08:00
<listitem >
<para > After the current test class, when declared on a class
with class mode set to <literal > AFTER_CLASS</literal> , which is
the default class mode.</para>
</listitem>
<listitem >
<para > After each test method in the current test class, when
declared on a class with class mode set to
<literal > AFTER_EACH_TEST_METHOD.</literal> </para>
</listitem>
<listitem >
<para > After the current test, when declared on a method.</para>
</listitem>
2009-07-07 06:23:55 +08:00
</itemizedlist>
2009-09-23 22:59:21 +08:00
<para > Use this annotation if a test has modified the context (for
example, by replacing a bean definition). Subsequent tests are
supplied a new context.</para>
2011-03-13 08:25:58 +08:00
<para > With JUnit 4.5+ or TestNG you can use
2010-12-30 13:47:23 +08:00
<interfacename > @DirtiesContext</interfacename> as both a class-level
and method-level annotation within the same test class. In such scenarios,
the <interfacename > ApplicationContext</interfacename> is marked as
2009-09-23 22:59:21 +08:00
<emphasis > dirty</emphasis> after any such annotated method as well
as after the entire class. If the <classname > ClassMode</classname>
is set to <literal > AFTER_EACH_TEST_METHOD</literal> , the context is
2009-07-07 06:23:55 +08:00
marked dirty after each test method in the class.</para>
2009-07-07 02:04:37 +08:00
<programlisting language= "java" > @DirtiesContext
public class ContextDirtyingTests {
<lineannotation > // some tests that result in the Spring container being dirtied</lineannotation>
}</programlisting>
2009-03-19 04:00:49 +08:00
2009-07-07 06:23:55 +08:00
<programlisting language= "java" > @DirtiesContext(classMode = ClassMode.AFTER_EACH_TEST_METHOD)
public class ContextDirtyingTests {
<lineannotation > // some tests that result in the Spring container being dirtied</lineannotation>
}</programlisting>
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @DirtiesContext
2009-05-06 14:25:03 +08:00
@Test
2009-03-19 04:00:49 +08:00
public void testProcessWhichDirtiesAppCtx() {
<lineannotation > // some logic that results in the Spring container being dirtied</lineannotation>
}</programlisting>
2009-07-07 02:04:37 +08:00
2009-09-23 22:59:21 +08:00
<para > When an application context is marked
<emphasis > dirty</emphasis> , it is removed from the testing
framework's cache and closed; thus the underlying Spring container
is rebuilt for any subsequent test that requires a context with the
2009-07-07 02:04:37 +08:00
same set of resource locations.</para>
2009-03-19 04:00:49 +08:00
</listitem>
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @TestExecutionListeners</interfacename> </emphasis> </para>
<para > Defines class-level metadata for configuring which
<interfacename > TestExecutionListener</interfacename> s should be
2010-12-30 13:47:23 +08:00
registered with the <classname > TestContextManager</classname> .
2009-06-19 20:22:18 +08:00
Typically, <interfacename > @TestExecutionListeners</interfacename>
2011-01-21 08:23:34 +08:00
is used in conjunction with
2009-06-19 20:22:18 +08:00
<interfacename > @ContextConfiguration</interfacename> .</para>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<programlisting language= "java" > @ContextConfiguration
2009-05-05 16:02:22 +08:00
@TestExecutionListeners({CustomTestExecutionListener.class, AnotherTestExecutionListener.class})
public class CustomTestExecutionListenerTests {
<lineannotation > // class body...</lineannotation>
2009-03-19 04:00:49 +08:00
}</programlisting>
2009-09-23 22:59:21 +08:00
<para > <interfacename > @TestExecutionListeners</interfacename>
supports <emphasis > inherited</emphasis> listeners by default. See
the JavaDoc for an example and further details.</para>
2009-06-19 20:22:18 +08:00
</listitem>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @TransactionConfiguration</interfacename> </emphasis> </para>
<para > Defines class-level metadata for configuring transactional
tests. Specifically, the bean name of the
<interfacename > PlatformTransactionManager</interfacename> that is to
be used to drive transactions can be explicitly configured if the
2010-12-30 13:47:23 +08:00
bean name of the desired <interfacename > PlatformTransactionManager</interfacename>
is not "transactionManager". In addition, you can change the
2009-09-23 22:59:21 +08:00
<literal > defaultRollback</literal> flag to <literal > false</literal> .
Typically, <interfacename > @TransactionConfiguration</interfacename>
is used in conjunction with
2009-06-19 20:22:18 +08:00
<interfacename > @ContextConfiguration</interfacename> .</para>
<programlisting language= "java" > @ContextConfiguration
2009-05-05 16:02:22 +08:00
@TransactionConfiguration(transactionManager="txMgr", defaultRollback=false)
public class CustomConfiguredTransactionalTests {
<lineannotation > // class body...</lineannotation>
2009-03-19 04:00:49 +08:00
}</programlisting>
2010-12-30 13:47:23 +08:00
<note >
<para > If the default conventions are sufficient for your
test configuration, you can avoid using
<interfacename > @TransactionConfiguration</interfacename>
altogether. In other words, if your transaction
manager bean is named "transactionManager" and if you want
transactions to roll back automatically, there is no need
to annotate your test class with
<interfacename > @TransactionConfiguration</interfacename> .</para>
</note>
2009-06-19 20:22:18 +08:00
</listitem>
2009-03-19 04:00:49 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @Rollback</interfacename> </emphasis> </para>
2009-09-23 22:59:21 +08:00
<para > Indicates whether the transaction for the annotated test
method should be <emphasis > rolled back</emphasis> after the test
method has completed. If <literal > true</literal> , the transaction is
rolled back; otherwise, the transaction is committed. Use
<interfacename > @Rollback</interfacename> to override the default
rollback flag configured at the class level.</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @Rollback(false)
2009-05-06 14:25:03 +08:00
@Test
2009-03-19 04:00:49 +08:00
public void testProcessWithoutRollback() {
<lineannotation > // ...</lineannotation>
}</programlisting>
</listitem>
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @BeforeTransaction</interfacename> </emphasis> </para>
2009-05-05 16:02:22 +08:00
2009-06-19 20:22:18 +08:00
<para > Indicates that the annotated <literal > public void</literal>
method should be executed <emphasis > before</emphasis> a transaction
is started for test methods configured to run within a transaction
2011-01-21 08:23:34 +08:00
via the <interfacename > @Transactional</interfacename>
2009-06-19 20:22:18 +08:00
annotation.</para>
2009-05-05 16:02:22 +08:00
2009-06-19 20:22:18 +08:00
<programlisting language= "java" > @BeforeTransaction
2009-05-05 16:02:22 +08:00
public void beforeTransaction() {
<lineannotation > // logic to be executed before a transaction is started</lineannotation>
}</programlisting>
2009-06-19 20:22:18 +08:00
</listitem>
2009-05-05 16:02:22 +08:00
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @AfterTransaction</interfacename> </emphasis> </para>
2009-05-05 16:02:22 +08:00
2009-06-19 20:22:18 +08:00
<para > Indicates that the annotated <literal > public void</literal>
method should be executed <emphasis > after</emphasis> a transaction
2009-09-23 22:59:21 +08:00
has ended for test methods configured to run within a transaction
2011-01-21 08:23:34 +08:00
via the <interfacename > @Transactional</interfacename>
2009-06-19 20:22:18 +08:00
annotation.</para>
2009-05-05 16:02:22 +08:00
2009-06-19 20:22:18 +08:00
<programlisting language= "java" > @AfterTransaction
2009-05-05 16:02:22 +08:00
public void afterTransaction() {
<lineannotation > // logic to be executed after a transaction has ended</lineannotation>
}</programlisting>
2009-06-19 20:22:18 +08:00
</listitem>
2009-05-05 16:02:22 +08:00
2009-03-19 04:00:49 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @NotTransactional</interfacename> </emphasis> </para>
<para > The presence of this annotation indicates that the annotated
test method must <emphasis > not</emphasis> execute in a transactional
context.</para>
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @NotTransactional
2009-05-06 14:25:03 +08:00
@Test
2009-03-19 04:00:49 +08:00
public void testProcessWithoutTransaction() {
<lineannotation > // ...</lineannotation>
}</programlisting>
2009-08-27 07:23:07 +08:00
<warning >
<title > @NotTransactional is deprecated</title>
2009-09-23 22:59:21 +08:00
<para > As of Spring 3.0,
<interfacename > @NotTransactional</interfacename> is deprecated in
favor of moving the <emphasis > non-transactional</emphasis> test
2009-08-27 07:23:07 +08:00
method to a separate (non-transactional) test class or to a
<interfacename > @BeforeTransaction</interfacename> or
2009-09-23 22:59:21 +08:00
<interfacename > @AfterTransaction</interfacename> method. As an
alternative to annotating an entire class with
<interfacename > @Transactional</interfacename> , consider annotating
individual methods with
<interfacename > @Transactional</interfacename> ; doing so allows a
mix of transactional and non-transactional methods in the same
test class without the need for using
2010-12-30 13:47:23 +08:00
<interfacename > @NotTransactional</interfacename> .</para>
2009-08-27 07:23:07 +08:00
</warning>
2009-03-19 04:00:49 +08:00
</listitem>
2009-06-19 20:22:18 +08:00
</itemizedlist>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<para > The following annotations are <emphasis > only</emphasis> supported
2011-03-13 08:25:58 +08:00
when used in conjunction with the <link
2009-06-19 20:22:18 +08:00
linkend="testcontext-junit4-runner">SpringJUnit4ClassRunner</link> or
2011-03-13 08:25:58 +08:00
the <link
linkend="testcontext-support-classes-junit4">JUnit</link> support
2009-09-23 22:59:21 +08:00
classes.</para>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<itemizedlist >
<listitem >
<para > <emphasis
role="bold"><interfacename > @IfProfileValue</interfacename> </emphasis> </para>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<para > Indicates that the annotated test is enabled for a specific
testing environment. If the configured
<classname > ProfileValueSource</classname> returns a matching
<literal > value</literal> for the provided <literal > name</literal> ,
2009-09-23 22:59:21 +08:00
the test is enabled. This annotation can be applied to an entire
class or to individual methods. Class-level usage overrides
2009-07-10 20:15:58 +08:00
method-level usage.</para>
2009-06-19 20:22:18 +08:00
<programlisting language= "java" > @IfProfileValue(name="java.vendor", value="Sun Microsystems Inc.")
2009-05-06 14:25:03 +08:00
@Test
2009-05-05 16:02:22 +08:00
public void testProcessWhichRunsOnlyOnSunJvm() {
<lineannotation > // some logic that should run only on Java VMs from Sun Microsystems</lineannotation>
}</programlisting>
2009-06-19 20:22:18 +08:00
2009-09-23 22:59:21 +08:00
<para > Alternatively, you can configure
<interfacename > @IfProfileValue</interfacename> with a list of
<literal > values</literal> (with <emphasis > OR</emphasis> semantics)
to achieve TestNG-like support for <emphasis > test groups</emphasis>
in a JUnit environment. Consider the following example:</para>
2009-06-19 20:22:18 +08:00
<programlisting language= "java" > @IfProfileValue(name="test-groups", values={"unit-tests", "integration-tests"})
2009-05-06 14:25:03 +08:00
@Test
2009-05-05 16:02:22 +08:00
public void testProcessWhichRunsForUnitOrIntegrationTestGroups() {
<lineannotation > // some logic that should run only for unit and integration test groups</lineannotation>
}</programlisting>
2009-06-19 20:22:18 +08:00
</listitem>
<listitem >
<para > <emphasis
role="bold"><interfacename > @ProfileValueSourceConfiguration</interfacename> </emphasis> </para>
2009-09-23 22:59:21 +08:00
<para > Class-level annotation that specifies what type of
2009-06-19 20:22:18 +08:00
<literal > ProfileValueSource</literal> to use when retrieving
2009-09-23 22:59:21 +08:00
<emphasis > profile values</emphasis> configured through the
2009-06-19 20:22:18 +08:00
<interfacename > @IfProfileValue</interfacename> annotation. If
<interfacename > @ProfileValueSourceConfiguration</interfacename> is
not declared for a test,
2009-09-23 22:59:21 +08:00
<classname > SystemProfileValueSource</classname> is used by
2009-06-19 20:22:18 +08:00
default.</para>
<programlisting language= "java" > @ProfileValueSourceConfiguration(CustomProfileValueSource.class)
2009-05-05 16:02:22 +08:00
public class CustomProfileValueSourceTests {
<lineannotation > // class body...</lineannotation>
}</programlisting>
2009-06-19 20:22:18 +08:00
</listitem>
<listitem >
<para > <emphasis
role="bold"><interfacename > @ExpectedException</interfacename> </emphasis> </para>
<para > Indicates that the annotated test method is expected to throw
an exception during execution. The type of the expected exception is
provided in the annotation, and if an instance of the exception is
thrown during the test method execution then the test passes.
Likewise if an instance of the exception is <emphasis > not</emphasis>
thrown during the test method execution then the test fails.</para>
<programlisting language= "java" > @ExpectedException(SomeBusinessException.class)
2009-05-05 16:02:22 +08:00
public void testProcessRainyDayScenario() {
<lineannotation > // some logic that should result in an <classname > Exception</classname> being thrown</lineannotation>
2009-03-19 04:00:49 +08:00
}</programlisting>
2009-06-19 20:22:18 +08:00
<para > Using Spring's
<interfacename > @ExpectedException</interfacename> annotation in
2011-03-13 08:25:58 +08:00
conjunction with JUnit's
2009-06-19 20:22:18 +08:00
<interfacename > @Test(expected=...)</interfacename> configuration
would lead to an unresolvable conflict. Developers must therefore
2011-03-13 08:25:58 +08:00
choose one or the other when integrating with JUnit, in which case
it is generally preferable to use the explicit JUnit configuration.</para>
2009-06-19 20:22:18 +08:00
</listitem>
<listitem >
<para > <emphasis
role="bold"><interfacename > @Timed</interfacename> </emphasis> </para>
2009-09-23 22:59:21 +08:00
<para > Indicates that the annotated test method must finish execution
in a specified time period (in milliseconds). If the text execution
time exceeds the specified time period, the test fails.</para>
2009-06-19 20:22:18 +08:00
2009-09-23 22:59:21 +08:00
<para > The time period includes execution of the test method itself,
any repetitions of the test (see
2009-06-19 20:22:18 +08:00
<interfacename > @Repeat</interfacename> ), as well as any
<emphasis > set up</emphasis> or <emphasis > tear down</emphasis> of the
test fixture.</para>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<programlisting language= "java" > @Timed(millis=1000)
2009-05-05 16:02:22 +08:00
public void testProcessWithOneSecondTimeout() {
<lineannotation > // some logic that should not take longer than 1 second to execute</lineannotation>
2009-03-19 04:00:49 +08:00
}</programlisting>
2009-06-19 20:22:18 +08:00
<para > Spring's <interfacename > @Timed</interfacename> annotation has
2011-03-13 08:25:58 +08:00
different semantics than JUnit's
2009-06-19 20:22:18 +08:00
<interfacename > @Test(timeout=...)</interfacename> support.
2011-03-13 08:25:58 +08:00
Specifically, due to the manner in which JUnit handles test
2009-09-23 22:59:21 +08:00
execution timeouts (that is, by executing the test method in a
separate <classname > Thread</classname> ),
2009-06-19 20:22:18 +08:00
<interfacename > @Test(timeout=...)</interfacename> applies to
<emphasis > each iteration</emphasis> in the case of repetitions and
preemptively fails the test if the test takes too long. Spring's
<interfacename > @Timed</interfacename> , on the other hand, times the
<emphasis > total</emphasis> test execution time (including all
repetitions) and does not preemptively fail the test but rather
2009-09-23 22:59:21 +08:00
waits for the test to complete before failing.</para>
2009-06-19 20:22:18 +08:00
</listitem>
<listitem >
<para > <emphasis
role="bold"><interfacename > @Repeat</interfacename> </emphasis> </para>
<para > Indicates that the annotated test method must be executed
repeatedly. The number of times that the test method is to be
executed is specified in the annotation.</para>
2009-03-19 04:00:49 +08:00
2009-09-23 22:59:21 +08:00
<para > The scope of execution to be repeated includes execution of
the test method itself as well as any <emphasis > set up</emphasis> or
2010-12-30 13:47:23 +08:00
<emphasis > tear down</emphasis> of the test fixture.</para>
2009-06-19 20:22:18 +08:00
<programlisting language= "java" > @Repeat(10)
2009-05-06 14:25:03 +08:00
@Test
2009-05-05 16:02:22 +08:00
public void testProcessRepeatedly() {
<lineannotation > // ...</lineannotation>
}</programlisting>
2009-06-19 20:22:18 +08:00
</listitem>
</itemizedlist>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<para > The following non-test-specific annotations are supported with
standard semantics for all configurations of the Spring TestContext
Framework.</para>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<itemizedlist >
<listitem >
<para > <emphasis
role="bold"><interfacename > @Autowired</interfacename> </emphasis> </para>
</listitem>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @Qualifier</interfacename> </emphasis> </para>
</listitem>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @Resource</interfacename> </emphasis>
(javax.annotation) <emphasis > if JSR-250 is present</emphasis> </para>
</listitem>
2009-03-19 04:00:49 +08:00
2009-10-07 05:10:56 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @Inject</interfacename> </emphasis>
(javax.inject) <emphasis > if JSR-330 is present</emphasis> </para>
</listitem>
<listitem >
<para > <emphasis
role="bold"><interfacename > @Named</interfacename> </emphasis>
(javax.inject) <emphasis > if JSR-330 is present</emphasis> </para>
</listitem>
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @PersistenceContext</interfacename> </emphasis>
(javax.persistence) <emphasis > if JPA is present</emphasis> </para>
</listitem>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @PersistenceUnit</interfacename> </emphasis>
(javax.persistence) <emphasis > if JPA is present</emphasis> </para>
</listitem>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @Required</interfacename> </emphasis> </para>
</listitem>
2009-03-19 04:00:49 +08:00
2009-06-19 20:22:18 +08:00
<listitem >
<para > <emphasis
role="bold"><interfacename > @Transactional</interfacename> </emphasis> </para>
</listitem>
</itemizedlist>
2009-03-19 04:00:49 +08:00
</section>
<section id= "testcontext-framework" >
<title > Spring TestContext Framework</title>
<para > The <emphasis > Spring <classname > TestContext</classname>
Framework</emphasis> (located in the
<literal > org.springframework.test.context</literal> package) provides
2009-09-23 22:59:21 +08:00
generic, annotation-driven unit and integration testing support that is
2011-03-13 08:25:58 +08:00
agnostic of the testing framework in use, whether JUnit or TestNG.
The TestContext framework also places a
2009-07-29 23:51:18 +08:00
great deal of importance on <emphasis > convention over
2009-09-23 22:59:21 +08:00
configuration</emphasis> with reasonable defaults that can be overridden
through annotation-based configuration.</para>
2009-03-19 04:00:49 +08:00
<para > In addition to generic testing infrastructure, the TestContext
2011-03-13 08:25:58 +08:00
framework provides explicit support for JUnit and TestNG in the
form of <literal > abstract</literal> support classes.
For JUnit, Spring also provides a custom JUnit
<interfacename > Runner</interfacename> that allows one to write
so called <emphasis > POJO test classes</emphasis> . POJO test classes
are not required to extend a particular class hierarchy.</para>
2009-03-19 04:00:49 +08:00
<para > The following section provides an overview of the internals of the
TestContext framework. If you are only interested in using the framework
and not necessarily interested in extending it with your own custom
2009-05-05 16:02:22 +08:00
listeners, feel free to go directly to the configuration (<link
2009-03-19 04:00:49 +08:00
linkend="testcontext-ctx-management">context management</link> , <link
linkend="testcontext-fixture-di">dependency injection</link> , <link
linkend="testcontext-tx">transaction management</link> ), <link
linkend="testcontext-support-classes">support classes</link> , and <link
2009-05-05 16:02:22 +08:00
linkend="integration-testing-annotations">annotation support</link>
2009-03-19 04:00:49 +08:00
sections.</para>
<section id= "testcontext-key-abstractions" >
<title > Key abstractions</title>
<para > The core of the framework consists of the
<classname > TestContext</classname> and
<classname > TestContextManager</classname> classes and the
<interfacename > TestExecutionListener</interfacename> interface. A
<classname > TestContextManager</classname> is created on a per-test
basis. The <classname > TestContextManager</classname> in turn manages a
2009-09-23 22:59:21 +08:00
<classname > TestContext</classname> that holds the context of the
current test. The <classname > TestContextManager</classname> also
updates the state of the <classname > TestContext</classname> as the
test progresses and delegates to
2009-03-19 04:00:49 +08:00
<interfacename > TestExecutionListener</interfacename> s, which
2009-09-23 22:59:21 +08:00
instrument the actual test execution, by providing dependency
injection, managing transactions, and so on. Consult the JavaDoc and
the Spring test suite for further information and examples of various
2009-03-19 04:00:49 +08:00
configurations.</para>
<itemizedlist >
<listitem >
2009-09-23 22:59:21 +08:00
<para > <classname > TestContext</classname> : Encapsulates the context
2009-03-19 04:00:49 +08:00
in which a test is executed, agnostic of the actual testing
framework in use.</para>
</listitem>
<listitem >
2009-09-23 22:59:21 +08:00
<para > <classname > TestContextManager</classname> : The main entry
2009-03-19 04:00:49 +08:00
point into the <emphasis > Spring TestContext Framework</emphasis> ,
2009-09-23 22:59:21 +08:00
which manages a single <classname > TestContext</classname> and
signals events to all registered
<interfacename > TestExecutionListener</interfacename> s at
2010-12-30 13:47:23 +08:00
well-defined test execution points:</para>
<itemizedlist >
<listitem >
<para > prior to any <emphasis > before class methods</emphasis>
of a particular testing framework</para>
</listitem>
<listitem >
<para > test instance preparation</para>
</listitem>
<listitem >
<para > prior to any <emphasis > before methods</emphasis>
of a particular testing framework</para>
</listitem>
<listitem >
<para > after any <emphasis > after methods</emphasis>
of a particular testing framework</para>
</listitem>
<listitem >
<para > after any <emphasis > after class methods</emphasis>
of a particular testing framework</para>
</listitem>
</itemizedlist>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
<para > <interfacename > TestExecutionListener</interfacename> :
2009-09-23 22:59:21 +08:00
Defines a <emphasis > listener</emphasis> API for reacting to test
2009-03-19 04:00:49 +08:00
execution events published by the
<classname > TestContextManager</classname> with which the listener
is registered.</para>
<para > Spring provides three
<interfacename > TestExecutionListener</interfacename>
2009-09-23 22:59:21 +08:00
implementations that are configured by default:
2010-12-30 13:47:23 +08:00
<classname > DependencyInjectionTestExecutionListener</classname> ,
<classname > DirtiesContextTestExecutionListener</classname> , and
2009-09-23 22:59:21 +08:00
<classname > TransactionalTestExecutionListener</classname> .
Respectively, they support dependency injection of the test
instance, handling of the
<interfacename > @DirtiesContext</interfacename> annotation, and
2010-12-30 13:47:23 +08:00
transactional test execution with default rollback semantics.</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
<para > The following three sections explain how to configure the
2009-09-23 22:59:21 +08:00
<classname > TestContext</classname> framework through annotations and
provide working examples of how to write unit and integration tests
with the framework.</para>
2009-03-19 04:00:49 +08:00
</section>
<section id= "testcontext-ctx-management" >
<title > Context management and caching</title>
<para > Each <classname > TestContext</classname> provides context
management and caching support for the test instance for which it is
responsible. Test instances do not automatically receive access to the
2009-09-23 22:59:21 +08:00
configured <classname > ApplicationContext</classname> . However, if a
2009-03-19 04:00:49 +08:00
test class implements the
<interfacename > ApplicationContextAware</interfacename> interface, a
2009-09-23 22:59:21 +08:00
reference to the <classname > ApplicationContext</classname> is supplied
to the test instance, if the
<classname > DependencyInjectionTestExecutionListener</classname> is
configured, which is the default.
2011-03-13 08:25:58 +08:00
<classname > AbstractJUnit4SpringContextTests</classname> and
2009-03-19 04:00:49 +08:00
<classname > AbstractTestNGSpringContextTests</classname> already
implement <interfacename > ApplicationContextAware</interfacename> and
therefore provide this functionality out-of-the-box.</para>
2009-04-30 09:04:39 +08:00
<tip >
2009-06-19 20:22:18 +08:00
<title > @Autowired ApplicationContext</title>
<para > As an alternative to implementing the
<interfacename > ApplicationContextAware</interfacename> interface,
2009-09-23 22:59:21 +08:00
you can inject the application context for your test class through
the <interfacename > @Autowired</interfacename> annotation on either a
field or setter method. For example:</para>
2009-06-19 20:22:18 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-04-30 09:04:39 +08:00
@ContextConfiguration
public class MyTest {
2009-07-01 02:40:33 +08:00
2009-05-06 14:25:03 +08:00
<emphasis role= "bold" > @Autowired</emphasis>
private ApplicationContext applicationContext;
2009-04-30 09:04:39 +08:00
<lineannotation > // class body...</lineannotation>
}</programlisting>
</tip>
2011-03-13 08:25:58 +08:00
<para > In contrast to the deprecated JUnit 3.8 legacy class
2009-09-23 22:59:21 +08:00
hierarchy, test classes that use the TestContext framework do not need
to override any <literal > protected</literal> instance methods to
2009-06-19 20:22:18 +08:00
configure their application context. Rather, configuration is achieved
merely by declaring the
<interfacename > @ContextConfiguration</interfacename> annotation at the
2009-09-23 22:59:21 +08:00
class level. If your test class does not explicitly declare
2009-06-19 20:22:18 +08:00
application context resource <literal > locations</literal> , the
2009-09-23 22:59:21 +08:00
configured <interfacename > ContextLoader</interfacename> determines how
2011-01-21 08:23:34 +08:00
and whether to load a context from a default location. For
example, <classname > GenericXmlContextLoader</classname> , which is the
2009-09-23 22:59:21 +08:00
default <interfacename > ContextLoader</interfacename> , generates a
default location based on the name of the test class. If your class is
named <literal > com.example.MyTest</literal> ,
<classname > GenericXmlContextLoader</classname> loads your application
context from
2009-03-19 04:00:49 +08:00
<literal > "classpath:/com/example/MyTest-context.xml"</literal> .</para>
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > package com.example;
2009-03-19 04:00:49 +08:00
@RunWith(SpringJUnit4ClassRunner.class)
<lineannotation > // ApplicationContext will be loaded from <literal > "classpath:/com/example/MyTest-context.xml"</literal> </lineannotation>
<emphasis role= "bold" > @ContextConfiguration</emphasis>
public class MyTest {
<lineannotation > // class body...</lineannotation>
}</programlisting>
2009-09-23 22:59:21 +08:00
<para > If the default location does not suit your needs, you can
2011-01-21 08:23:34 +08:00
explicitly configure the <literal > locations</literal> attribute of
2009-09-23 22:59:21 +08:00
<interfacename > @ContextConfiguration</interfacename> with an array
that contains the resource locations of XML configuration metadata
(assuming an XML-capable <interfacename > ContextLoader</interfacename>
2011-01-21 08:23:34 +08:00
has been configured, which is the default). A plain path, for
example <literal > "context.xml"</literal> , will be treated as a
classpath resource from the same package in which the test class
is defined. A path starting with a slash is treated as a fully qualified
classpath location, for example <literal > "/org/example/config.xml"</literal> .
A path which represents a URL (i.e., a path prefixed with
<literal > classpath:</literal> , <literal > file:</literal> ,
<literal > http:</literal> , etc.) will be used <emphasis > as is</emphasis> .
Alternatively, you can implement and configure your own custom
2009-03-19 04:00:49 +08:00
<interfacename > ContextLoader</interfacename> .</para>
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-03-19 04:00:49 +08:00
<lineannotation > // ApplicationContext will be loaded from <literal > "/applicationContext.xml"</literal> and <literal > "/applicationContext-test.xml"</literal> </lineannotation>
<lineannotation > // in the root of the classpath</lineannotation>
2011-01-21 08:23:34 +08:00
<emphasis role= "bold" > @ContextConfiguration(locations={"/applicationContext.xml", "/applicationContext-test.xml"})</emphasis>
2009-03-19 04:00:49 +08:00
public class MyTest {
<lineannotation > // class body...</lineannotation>
}</programlisting>
2009-06-19 20:22:18 +08:00
<para > <interfacename > @ContextConfiguration</interfacename> supports an
2009-09-23 22:59:21 +08:00
alias for the <literal > locations</literal> attribute through the
standard <literal > value</literal> attribute. Thus, if you do not need
to configure a custom <interfacename > ContextLoader</interfacename> ,
you can omit the declaration of the <literal > locations</literal>
attribute name and declare the resource locations by using the
2011-01-21 08:23:34 +08:00
shorthand format demonstrated in the following example.</para>
<para >
2009-06-19 20:22:18 +08:00
<interfacename > @ContextConfiguration</interfacename> also supports a
2009-09-23 22:59:21 +08:00
boolean <literal > inheritLocations</literal> attribute that denotes
whether resource locations from superclasses should be
2009-03-19 04:00:49 +08:00
<emphasis > inherited</emphasis> . The default value is
2009-09-23 22:59:21 +08:00
<literal > true</literal> , which means that an annotated class inherits
the resource locations defined by an annotated superclass.
Specifically, the resource locations for an annotated class are
appended to the list of resource locations defined by an annotated
superclass. Thus, subclasses have the option of
<emphasis > extending</emphasis> the list of resource locations. In the
2011-01-21 08:23:34 +08:00
following example, the <interfacename > ApplicationContext</interfacename> for
2009-09-23 22:59:21 +08:00
<classname > ExtendedTest</classname> is loaded from "/base-context.xml"
<emphasis role= "bold" > and</emphasis> "/extended-context.xml", in that
order. Beans defined in "/extended-context.xml" may therefore override
those defined in "/base-context.xml".</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-03-19 04:00:49 +08:00
<lineannotation > // ApplicationContext will be loaded from <literal > "/base-context.xml"</literal> in the root of the classpath</lineannotation>
2009-05-05 16:02:22 +08:00
<emphasis role= "bold" > @ContextConfiguration("/base-context.xml")</emphasis>
2009-03-19 04:00:49 +08:00
public class BaseTest {
<lineannotation > // class body...</lineannotation>
}
<lineannotation > // ApplicationContext will be loaded from <literal > "/base-context.xml"</literal> and <literal > "/extended-context.xml"</literal> </lineannotation>
<lineannotation > // in the root of the classpath</lineannotation>
2009-05-05 16:02:22 +08:00
<emphasis role= "bold" > @ContextConfiguration("/extended-context.xml")</emphasis>
2009-03-19 04:00:49 +08:00
public class ExtendedTest extends BaseTest {
<lineannotation > // class body...</lineannotation>
}</programlisting>
<para > If <literal > inheritLocations</literal> is set to
<literal > false</literal> , the resource locations for the annotated
2011-01-21 08:23:34 +08:00
class shadow and effectively replace any resource locations defined
2009-09-23 22:59:21 +08:00
by a superclass.</para>
2009-03-19 04:00:49 +08:00
<para > By default, once loaded, the configured
2009-09-23 22:59:21 +08:00
<interfacename > ApplicationContext</interfacename> is reused for each
2011-01-21 08:23:34 +08:00
test. Thus the setup cost is incurred only once (per test suite),
2009-09-23 22:59:21 +08:00
and subsequent test execution is much faster. In the unlikely case
2011-01-21 08:23:34 +08:00
that a test corrupts the application context and requires reloading —
for example, by modifying a bean definition or the state of an
application object — you can annotate your test class or test
method with <interfacename > @DirtiesContext</interfacename> (assuming
2009-03-19 04:00:49 +08:00
<classname > DirtiesContextTestExecutionListener</classname> has been
2011-01-21 08:23:34 +08:00
configured, which is the default). This instructs Spring to reload
2011-03-13 08:25:58 +08:00
the configuration and rebuild the application context before
2011-01-21 08:23:34 +08:00
executing the next test.</para>
2009-03-19 04:00:49 +08:00
</section>
<section id= "testcontext-fixture-di" >
<title > Dependency Injection of test fixtures</title>
2011-03-13 08:25:58 +08:00
<para > When you use the
2010-12-30 13:47:23 +08:00
<classname > DependencyInjectionTestExecutionListener</classname> —
2011-01-21 08:23:34 +08:00
which is configured by default — the dependencies of your
test instances are <emphasis > injected</emphasis> from beans in the
application context that you configured with
<interfacename > @ContextConfiguration</interfacename> . You may use setter
2009-09-23 22:59:21 +08:00
injection, field injection, or both, depending on which annotations
2009-03-19 04:00:49 +08:00
you choose and whether you place them on setter methods or fields. For
2009-04-30 09:04:39 +08:00
consistency with the annotation support introduced in Spring 2.5, you
2009-09-23 22:59:21 +08:00
can use Spring's <interfacename > @Autowired</interfacename> annotation
or the <interfacename > @Resource</interfacename> annotation from JSR
2011-03-13 08:25:58 +08:00
250. As of Spring 3.0 you may alternatively use the
<interfacename > @Inject</interfacename> annotation from JSR 330. For
example, if you prefer <link
2009-03-19 04:00:49 +08:00
linkend="beans-factory-autowire"><emphasis > autowiring by
type</emphasis> </link> , annotate your setter methods or fields with
2011-03-13 08:25:58 +08:00
<interfacename > @Autowired</interfacename> or
<interfacename > @Inject</interfacename> . If you prefer to have your
2009-09-23 22:59:21 +08:00
dependencies injected <emphasis > by name</emphasis> , annotate your
setter methods or fields with
2009-03-19 04:00:49 +08:00
<interfacename > @Resource</interfacename> .</para>
<tip >
<para > The TestContext framework does not instrument the manner in
which a test instance is instantiated. Thus the use of
2011-03-13 08:25:58 +08:00
<interfacename > @Autowired</interfacename> or
<interfacename > @Inject</interfacename> for constructors has no
2009-03-19 04:00:49 +08:00
effect for test classes.</para>
</tip>
2009-09-23 22:59:21 +08:00
<para > Because <interfacename > @Autowired</interfacename> performs <link
2009-03-19 04:00:49 +08:00
linkend="beans-factory-autowire"><emphasis > autowiring by
type</emphasis> </link> , if you have multiple bean definitions of the
same type, you cannot rely on this approach for those particular
beans. In that case, you can use
<interfacename > @Resource</interfacename> for injection <emphasis > by
2009-04-30 09:04:39 +08:00
name</emphasis> . Alternatively, if your test class has access to its
<classname > ApplicationContext</classname> , you can perform an explicit
2009-09-23 22:59:21 +08:00
lookup by using (for example) a call to
2011-01-21 08:23:34 +08:00
<methodname > applicationContext.getBean("titleRepository")</methodname> . A
2009-06-19 20:22:18 +08:00
third option is to use <interfacename > @Autowired</interfacename> in
2011-03-13 08:25:58 +08:00
conjunction with <interfacename > @Qualifier</interfacename> . As of
Spring 3.0 you may also choose to use
<interfacename > @Inject</interfacename> in conjunction with
<interfacename > @Named</interfacename> .</para>
2009-03-19 04:00:49 +08:00
2009-09-23 22:59:21 +08:00
<para > If you do not want dependency injection applied to your test
instances, simply do not annotate fields or setter methods with
2011-03-13 08:25:58 +08:00
<interfacename > @Autowired</interfacename> ,
<interfacename > @Inject</interfacename> or
2009-03-19 04:00:49 +08:00
<interfacename > @Resource</interfacename> . Alternatively, you can
disable dependency injection altogether by explicitly configuring your
class with <interfacename > @TestExecutionListeners</interfacename> and
omitting
<literal > DependencyInjectionTestExecutionListener.class</literal> from
the list of listeners.</para>
2011-01-21 08:23:34 +08:00
<para > Consider the scenario of testing a
<classname > HibernateTitleRepository</classname> class, as outlined in the <link
2011-01-21 19:48:30 +08:00
linkend="integration-testing-goals">Goals</link> section. The next four
2011-01-21 08:23:34 +08:00
code listings demonstrate the use of <interfacename > @Autowired</interfacename>
and <interfacename > @Resource</interfacename> on fields and
setter methods. The application context configuration is presented
after all sample code listings.</para>
2009-09-23 22:59:21 +08:00
<note >
<para > The dependency injection behavior in the following code
2011-03-13 08:25:58 +08:00
listings is not specific to JUnit. The same DI
2009-09-23 22:59:21 +08:00
techniques can be used in conjunction with any testing
framework.</para>
<para > The following examples make calls to static assertion methods
such as <literal > assertNotNull()</literal> but without prepending
the call with <literal > Assert</literal> . In such cases, assume that
the method was properly imported through an <literal > import
static</literal> declaration that is not shown in the
example.</para>
</note>
2009-07-29 23:51:18 +08:00
2011-03-13 08:25:58 +08:00
<para > The first code listing shows a JUnit-based implementation
2011-01-21 08:23:34 +08:00
of the test class that uses <interfacename > @Autowired</interfacename>
for field injection.</para>
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-03-19 04:00:49 +08:00
<lineannotation > // specifies the Spring configuration to load for this test fixture</lineannotation>
2011-01-21 08:23:34 +08:00
<emphasis role= "bold" > @ContextConfiguration("repository-config.xml")</emphasis>
public class HibernateTitleRepositoryTests {
2009-03-19 04:00:49 +08:00
<lineannotation > // this instance will be dependency injected <emphasis
role="bold">by type</emphasis> </lineannotation>
<emphasis role= "bold" > @Autowired</emphasis>
2011-01-21 08:23:34 +08:00
private HibernateTitleRepository titleRepository;
2009-03-19 04:00:49 +08:00
2011-01-21 08:23:34 +08:00
@Test
public void loadTitle() {
Title title = titleRepository.loadTitle(new Long(10));
2009-03-19 04:00:49 +08:00
assertNotNull(title);
}
}</programlisting>
2009-09-23 22:59:21 +08:00
<para > Alternatively, you can configure the class to use
2011-01-21 08:23:34 +08:00
<interfacename > @Autowired</interfacename> for setter injection as
seen below.</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-03-19 04:00:49 +08:00
<lineannotation > // specifies the Spring configuration to load for this test fixture</lineannotation>
2011-01-21 08:23:34 +08:00
<emphasis role= "bold" > @ContextConfiguration("repository-config.xml")</emphasis>
public class HibernateTitleRepositoryTests {
2009-03-19 04:00:49 +08:00
<lineannotation > // this instance will be dependency injected <emphasis
role="bold">by type</emphasis> </lineannotation>
2011-01-21 08:23:34 +08:00
private HibernateTitleRepository titleRepository;
2009-03-19 04:00:49 +08:00
<emphasis role= "bold" > @Autowired</emphasis>
2011-01-21 08:23:34 +08:00
public void setTitleRepository(HibernateTitleRepository titleRepository) {
this.titleRepository = titleRepository;
2009-03-19 04:00:49 +08:00
}
2011-01-21 08:23:34 +08:00
@Test
public void loadTitle() {
Title title = titleRepository.loadTitle(new Long(10));
2009-03-19 04:00:49 +08:00
assertNotNull(title);
}
}</programlisting>
2011-01-21 08:23:34 +08:00
<para > The following is an example of using <interfacename > @Resource</interfacename>
2009-09-23 22:59:21 +08:00
for field injection.</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-03-19 04:00:49 +08:00
<lineannotation > // specifies the Spring configuration to load for this test fixture</lineannotation>
2011-01-21 08:23:34 +08:00
<emphasis role= "bold" > @ContextConfiguration("repository-config.xml")</emphasis>
public class HibernateTitleRepositoryTests {
2009-03-19 04:00:49 +08:00
<lineannotation > // this instance will be dependency injected <emphasis
role="bold">by name</emphasis> </lineannotation>
<emphasis role= "bold" > @Resource</emphasis>
2011-01-21 08:23:34 +08:00
private HibernateTitleRepository titleRepository;
2009-03-19 04:00:49 +08:00
2011-01-21 08:23:34 +08:00
@Test
public void loadTitle() {
Title title = titleRepository.loadTitle(new Long(10));
2009-03-19 04:00:49 +08:00
assertNotNull(title);
}
}</programlisting>
2011-01-21 08:23:34 +08:00
<para > Here is an example of using <interfacename > @Resource</interfacename>
2009-09-23 22:59:21 +08:00
for setter injection.</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-03-19 04:00:49 +08:00
<lineannotation > // specifies the Spring configuration to load for this test fixture</lineannotation>
2011-01-21 08:23:34 +08:00
<emphasis role= "bold" > @ContextConfiguration("repository-config.xml")</emphasis>
public class HibernateTitleRepositoryTests {
2009-03-19 04:00:49 +08:00
<lineannotation > // this instance will be dependency injected <emphasis
role="bold">by name</emphasis> </lineannotation>
2011-01-21 08:23:34 +08:00
private HibernateTitleRepository titleRepository;
2009-03-19 04:00:49 +08:00
<emphasis role= "bold" > @Resource</emphasis>
2011-01-21 08:23:34 +08:00
public void setTitleRepository(HibernateTitleRepository titleRepository) {
this.titleRepository = titleRepository;
2009-03-19 04:00:49 +08:00
}
2011-01-21 08:23:34 +08:00
@Test
public void loadTitle() {
Title title = titleRepository.loadTitle(new Long(10));
2009-03-19 04:00:49 +08:00
assertNotNull(title);
}
}</programlisting>
2009-09-23 22:59:21 +08:00
<para > The preceding code listings use the same XML context file
referenced by the <interfacename > @ContextConfiguration</interfacename>
2011-01-21 08:23:34 +08:00
annotation (that is, <literal > repository-config.xml</literal> ), which looks like
2009-09-23 22:59:21 +08:00
this:</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "xml" > < ?xml version="1.0" encoding="UTF-8"?>
2009-03-19 04:00:49 +08:00
< beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
2009-06-10 07:39:37 +08:00
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
2009-03-19 04:00:49 +08:00
2011-01-21 08:23:34 +08:00
<lineannotation > < !-- this bean will be injected into the <classname > HibernateTitleRepositoryTests</classname> class --> </lineannotation>
< bean id="<emphasis role= "bold" > titleRepository</emphasis> " class="<emphasis
role="bold">com.foo.repository.hibernate.HibernateTitleRepository</emphasis> ">
2009-03-19 04:00:49 +08:00
< property name="sessionFactory" ref="sessionFactory"/>
< /bean>
2011-01-21 19:48:30 +08:00
< bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
2011-01-21 08:23:34 +08:00
<lineannotation > < !-- configuration elided for brevity --> </lineannotation>
2009-03-19 04:00:49 +08:00
< /bean>
< /beans> </programlisting>
<note >
2009-06-19 20:22:18 +08:00
<para > If you are extending from a Spring-provided test base class
that happens to use <interfacename > @Autowired</interfacename> on one
2009-09-23 22:59:21 +08:00
of its setter methods, you might have multiple beans of the affected
type defined in your application context: for example, multiple
2009-06-19 20:22:18 +08:00
<interfacename > DataSource</interfacename> beans. In such a case, you
2011-01-21 08:23:34 +08:00
can override the setter method and use the
2009-06-19 20:22:18 +08:00
<interfacename > @Qualifier</interfacename> annotation to indicate a
2011-01-21 08:23:34 +08:00
specific target bean as follows, but make sure to delegate to the
overridden method in the superclass as well.</para>
2009-03-19 04:00:49 +08:00
2009-07-29 23:51:18 +08:00
<programlisting language= "java" > <lineannotation > // ...</lineannotation>
@Autowired
@Override
2009-03-19 04:00:49 +08:00
public void setDataSource(<emphasis role= "bold" > @Qualifier("myDataSource")</emphasis> DataSource dataSource) {
super.setDataSource(dataSource);
}
2009-07-29 23:51:18 +08:00
<lineannotation > // ...</lineannotation> </programlisting>
2009-03-19 04:00:49 +08:00
<para > The specified qualifier value indicates the specific
2009-06-19 20:22:18 +08:00
<interfacename > DataSource</interfacename> bean to inject, narrowing
the set of type matches to a specific bean. Its value is matched
against <literal > < qualifier> </literal> declarations within the
corresponding <literal > < bean> </literal> definitions. The bean
name is used as a fallback qualifier value, so you may effectively
also point to a specific bean by name there (as shown above,
2011-01-21 08:23:34 +08:00
assuming that "myDataSource" is the bean id).</para>
2009-06-19 20:22:18 +08:00
<para > Alternatively, consider using the
2009-09-23 22:59:21 +08:00
<interfacename > @Resource</interfacename> annotation on such
2011-01-21 08:23:34 +08:00
overridden setter methods. This allows you to specify the name of
the target bean explicitly, but without type matching semantics.
In contrast to the solution above that combined
<interfacename > @Autowired</interfacename> and
<interfacename > @Qualifier</interfacename> , using
<interfacename > @Resource</interfacename> results in the
selection of a bean with that specific name, regardless of
how many beans of the given type exist in the context.</para>
2009-03-19 04:00:49 +08:00
2009-07-29 23:51:18 +08:00
<programlisting language= "java" > <lineannotation > // ...</lineannotation>
<emphasis role= "bold" > @Resource("myDataSource")</emphasis>
@Override
2009-03-19 04:00:49 +08:00
public void setDataSource(DataSource dataSource) {
super.setDataSource(dataSource);
}
2009-07-29 23:51:18 +08:00
<lineannotation > // ...</lineannotation> </programlisting>
2009-03-19 04:00:49 +08:00
</note>
</section>
<section id= "testcontext-tx" >
<title > Transaction management</title>
<para > In the TestContext framework, transactions are managed by the
2011-01-21 08:23:34 +08:00
<classname > TransactionalTestExecutionListener</classname> . Note that
<classname > TransactionalTestExecutionListener</classname> is
configured by default, even if you do not explicitly declare
2009-03-19 04:00:49 +08:00
<interfacename > @TestExecutionListeners</interfacename> on your test
class. To enable support for transactions, however, you must provide a
<classname > PlatformTransactionManager</classname> bean in the
2009-09-23 22:59:21 +08:00
application context loaded by
2009-03-19 04:00:49 +08:00
<interfacename > @ContextConfiguration</interfacename> semantics. In
addition, you must declare
<interfacename > @Transactional</interfacename> either at the class or
2011-01-21 08:23:34 +08:00
method level for your tests.</para>
2009-03-19 04:00:49 +08:00
2011-01-21 08:23:34 +08:00
<para > For class-level transaction configuration (i.e., setting the
2009-03-19 04:00:49 +08:00
bean name for the transaction manager and the default rollback flag),
see the <interfacename > @TransactionConfiguration</interfacename> entry
2009-06-19 20:22:18 +08:00
in the <link linkend= "integration-testing-annotations" > annotation
support</link> section.</para>
2009-03-19 04:00:49 +08:00
2009-09-23 22:59:21 +08:00
<para > If transactions are not enabled for the entire test class, you
can annotate methods explicitly with
<interfacename > @Transactional</interfacename> . To control whether a
transaction should commit for a particular test method, you can use
the <interfacename > @Rollback</interfacename> annotation to override
the class-level default rollback setting.</para>
2009-03-19 04:00:49 +08:00
2009-09-23 22:59:21 +08:00
<para > <emphasis > <link
2011-03-13 08:25:58 +08:00
linkend="testcontext-support-classes-junit4"><classname > AbstractTransactionalJUnit4SpringContextTests</classname> </link>
2009-03-19 04:00:49 +08:00
and <link
linkend="testcontext-support-classes-testng"><classname > AbstractTransactionalTestNGSpringContextTests</classname> </link>
2009-09-23 22:59:21 +08:00
are preconfigured for transactional support at the class level.
2009-03-19 04:00:49 +08:00
</emphasis> </para>
2009-09-23 22:59:21 +08:00
<para > Occasionally you need to execute certain code before or after a
transactional test method but outside the transactional context, for
example, to verify the initial database state prior to execution of
your test or to verify expected transactional commit behavior after
2011-01-21 08:23:34 +08:00
test execution (if the test was configured not to roll
2009-09-23 22:59:21 +08:00
back the transaction).
2009-03-19 04:00:49 +08:00
<classname > TransactionalTestExecutionListener</classname> supports the
<interfacename > @BeforeTransaction</interfacename> and
<interfacename > @AfterTransaction</interfacename> annotations exactly
for such scenarios. Simply annotate any <literal > public void</literal>
method in your test class with one of these annotations, and the
2009-09-23 22:59:21 +08:00
<classname > TransactionalTestExecutionListener</classname> ensures that
your <emphasis > before transaction method</emphasis> or <emphasis > after
transaction method</emphasis> is executed at the appropriate
time.</para>
2009-03-19 04:00:49 +08:00
<tip >
2011-03-13 08:25:58 +08:00
<para > Any <emphasis > before methods</emphasis> (such as methods
annotated with JUnit's <interfacename > @Before</interfacename> )
and any <emphasis > after methods</emphasis> (such as methods annotated
with JUnit's <interfacename > @After</interfacename> )
2009-09-23 22:59:21 +08:00
are executed <emphasis role= "bold" > within</emphasis> a transaction.
In addition, methods annotated with
2009-03-19 04:00:49 +08:00
<interfacename > @BeforeTransaction</interfacename> or
2009-09-23 22:59:21 +08:00
<interfacename > @AfterTransaction</interfacename> are naturally not
executed for tests annotated with
<interfacename > @NotTransactional</interfacename> . However,
<interfacename > @NotTransactional</interfacename> is deprecated as of
Spring 3.0.</para>
2009-03-19 04:00:49 +08:00
</tip>
2011-03-13 08:25:58 +08:00
<para > The following JUnit-based example displays a fictitious
2009-09-23 22:59:21 +08:00
integration testing scenario highlighting several transaction-related
annotations. Consult the <link
2009-06-19 20:22:18 +08:00
linkend="integration-testing-annotations">annotation support</link>
2011-01-21 08:23:34 +08:00
section for further information and configuration examples.</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-03-19 04:00:49 +08:00
@ContextConfiguration
<emphasis role= "bold" > @TransactionConfiguration(transactionManager="txMgr", defaultRollback=false)</emphasis>
<emphasis role= "bold" > @Transactional</emphasis>
public class FictitiousTransactionalTest {
<emphasis role= "bold" > @BeforeTransaction</emphasis>
public void verifyInitialDatabaseState() {
<lineannotation > // logic to verify the initial state before a transaction is started</lineannotation>
}
@Before
public void setUpTestDataWithinTransaction() {
<lineannotation > // set up test data within the transaction</lineannotation>
}
@Test
<lineannotation > // overrides the class-level defaultRollback setting</lineannotation>
<emphasis role= "bold" > @Rollback(true)</emphasis>
public void modifyDatabaseWithinTransaction() {
<lineannotation > // logic which uses the test data and modifies database state</lineannotation>
}
@After
public void tearDownWithinTransaction() {
<lineannotation > // execute "tear down" logic within the transaction</lineannotation>
}
<emphasis role= "bold" > @AfterTransaction</emphasis>
public void verifyFinalDatabaseState() {
<lineannotation > // logic to verify the final state after transaction has rolled back</lineannotation>
}
}</programlisting>
2009-07-21 20:12:42 +08:00
2010-12-30 13:47:23 +08:00
<anchor id= "testcontext-tx-false-positives" />
2009-07-21 20:12:42 +08:00
<note >
<title > Avoid false positives when testing ORM code</title>
2009-09-23 22:59:21 +08:00
2011-01-21 08:23:34 +08:00
<para > When you test application code that manipulates the state of
the Hibernate session, make sure to <emphasis > flush</emphasis> the
underlying session within test methods that execute that code.
Failing to flush the underlying session can
2009-09-23 22:59:21 +08:00
produce <emphasis > false positives</emphasis> : your test may pass,
but the same code throws an exception in a live, production
environment. In the following Hibernate-based example test case, one
2011-01-21 08:23:34 +08:00
method demonstrates a false positive, and the other method correctly
exposes the results of flushing the session. Note that this
applies to JPA and any other ORM frameworks that maintain an
in-memory <emphasis > unit of work</emphasis> .</para>
2009-07-21 20:12:42 +08:00
2009-07-29 23:51:18 +08:00
<programlisting language= "java" > <lineannotation > // ...</lineannotation>
2009-07-21 20:12:42 +08:00
@Autowired
private SessionFactory sessionFactory;
@Test // no expected exception!
public void falsePositive() {
updateEntityInHibernateSession();
// False positive: an exception will be thrown once the session is
// finally flushed (i.e., in production code)
}
@Test(expected = GenericJDBCException.class)
public void updateWithSessionFlush() {
updateEntityInHibernateSession();
// Manual flush is required to avoid false positive in test
sessionFactory.getCurrentSession().flush();
}
2009-07-29 23:51:18 +08:00
<lineannotation > // ...</lineannotation> </programlisting>
2009-07-21 20:12:42 +08:00
</note>
2009-03-19 04:00:49 +08:00
</section>
<section id= "testcontext-support-classes" >
<title > TestContext support classes</title>
2009-07-03 19:27:13 +08:00
<section id= "testcontext-support-classes-junit4" >
2011-03-13 08:25:58 +08:00
<title > JUnit support classes</title>
2009-03-19 04:00:49 +08:00
<para > The <literal > org.springframework.test.context.junit4</literal>
2009-08-26 21:13:06 +08:00
package provides support classes for JUnit 4.5+ based test
2009-03-19 04:00:49 +08:00
cases.</para>
<itemizedlist >
<listitem >
2009-09-23 22:59:21 +08:00
<para > <classname > AbstractJUnit4SpringContextTests</classname> :
Abstract base test class that integrates the <emphasis > Spring
TestContext Framework</emphasis> with explicit
2009-03-19 04:00:49 +08:00
<classname > ApplicationContext</classname> testing support in a
2009-08-26 21:13:06 +08:00
JUnit 4.5+ environment.</para>
2009-03-19 04:00:49 +08:00
<para > When you extend
2009-09-23 22:59:21 +08:00
<classname > AbstractJUnit4SpringContextTests</classname> , you can
access the following <literal > protected</literal> instance
variable:</para>
2009-03-19 04:00:49 +08:00
<itemizedlist >
<listitem >
2011-01-21 08:23:34 +08:00
<para > <literal > applicationContext</literal> :
Use this variable to perform explicit bean
lookups or to test the state of the context as a
2009-09-23 22:59:21 +08:00
whole.</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
</listitem>
<listitem >
2009-09-23 22:59:21 +08:00
<para > <classname > AbstractTransactionalJUnit4SpringContextTests</classname> :
Abstract <emphasis > transactional</emphasis> extension of
2009-03-19 04:00:49 +08:00
<classname > AbstractJUnit4SpringContextTests</classname> that
also adds some convenience functionality for JDBC access.
Expects a <classname > javax.sql.DataSource</classname> bean and a
<interfacename > PlatformTransactionManager</interfacename> bean
2009-09-23 22:59:21 +08:00
to be defined in the <classname > ApplicationContext</classname> .
When you extend
2009-03-19 04:00:49 +08:00
<classname > AbstractTransactionalJUnit4SpringContextTests</classname>
2009-09-23 22:59:21 +08:00
you can access the following <literal > protected</literal>
instance variables:</para>
2009-03-19 04:00:49 +08:00
<itemizedlist >
<listitem >
2009-09-23 22:59:21 +08:00
<para > <literal > applicationContext</literal> : Inherited from
2009-03-19 04:00:49 +08:00
the <classname > AbstractJUnit4SpringContextTests</classname>
2010-12-30 13:47:23 +08:00
superclass. Use this variable to perform explicit bean
lookups or to test the state of the context as a
whole.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2010-12-30 13:47:23 +08:00
<para > <literal > simpleJdbcTemplate</literal> : Use this variable
to execute SQL statements to query the database.
Such queries can be used to confirm database state both
<emphasis > prior to</emphasis> and <emphasis > after</emphasis>
execution of database-related application code, and Spring
ensures that such queries run in the scope of the same
transaction as the application code. When used in conjunction
with an ORM tool, be sure to avoid
<link linkend= "testcontext-tx-false-positives" > false positives</link> .</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
<tip >
2009-09-23 22:59:21 +08:00
<para > These classes are a convenience for extension. If you do not
want your test classes to be tied to a Spring-specific class
2011-01-21 08:23:34 +08:00
hierarchy — for example, if you want to directly extend the class
2010-12-30 13:47:23 +08:00
you are testing — you can configure your own custom test classes
2009-09-23 22:59:21 +08:00
by using
2009-03-19 04:00:49 +08:00
<interfacename > @RunWith(SpringJUnit4ClassRunner.class)</interfacename> ,
<interfacename > @ContextConfiguration</interfacename> ,
2009-09-23 22:59:21 +08:00
<interfacename > @TestExecutionListeners</interfacename> , and so
on.</para>
2009-03-19 04:00:49 +08:00
</tip>
</section>
<section id= "testcontext-junit4-runner" >
2011-03-13 08:25:58 +08:00
<title > Spring JUnit Runner</title>
2009-03-19 04:00:49 +08:00
<para > The <emphasis > Spring TestContext Framework</emphasis> offers
2009-09-23 22:59:21 +08:00
full integration with JUnit 4.5+ through a custom runner (tested on
2011-03-13 08:25:58 +08:00
JUnit 4.5 – 4.8.1). By annotating test classes with
2010-01-08 23:47:20 +08:00
<literal > @RunWith(SpringJUnit4ClassRunner.class)</literal> ,
2011-03-13 08:25:58 +08:00
developers can implement standard JUnit-based unit and integration
2009-03-19 04:00:49 +08:00
tests and simultaneously reap the benefits of the TestContext
framework such as support for loading application contexts,
dependency injection of test instances, transactional test method
2010-01-08 23:47:20 +08:00
execution, and so on. The following code listing displays the minimal
requirements for configuring a test class to run with the custom Spring
Runner. <interfacename > @TestExecutionListeners</interfacename> is
configured with an empty list in order to disable the default listeners,
which otherwise would require an ApplicationContext to be configured
through <interfacename > @ContextConfiguration</interfacename> .</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > @RunWith(SpringJUnit4ClassRunner.class)
2009-03-19 04:00:49 +08:00
@TestExecutionListeners({})
public class SimpleTest {
@Test
public void testMethod() {
<lineannotation > // execute test logic...</lineannotation>
}
}</programlisting>
</section>
<section id= "testcontext-support-classes-testng" >
<title > TestNG support classes</title>
<para > The <literal > org.springframework.test.context.testng</literal>
package provides support classes for TestNG based test cases.</para>
<itemizedlist >
<listitem >
2009-09-23 22:59:21 +08:00
<para > <classname > AbstractTestNGSpringContextTests</classname> :
Abstract base test class that integrates the <emphasis > Spring
TestContext Framework</emphasis> with explicit
2009-03-19 04:00:49 +08:00
<classname > ApplicationContext</classname> testing support in a
TestNG environment.</para>
<para > When you extend
2011-01-21 08:23:34 +08:00
<classname > AbstractTestNGSpringContextTests</classname> , you can
2009-09-23 22:59:21 +08:00
access the following <literal > protected</literal> instance
variable:</para>
2009-03-19 04:00:49 +08:00
<itemizedlist >
<listitem >
2011-01-21 08:23:34 +08:00
<para > <literal > applicationContext</literal> :
Use this variable to perform explicit bean
lookups or to test the state of the context as a
2009-09-23 22:59:21 +08:00
whole.</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
</listitem>
<listitem >
2009-09-23 22:59:21 +08:00
<para > <classname > AbstractTransactionalTestNGSpringContextTests</classname> :
Abstract <emphasis > transactional</emphasis> extension of
2009-03-19 04:00:49 +08:00
<classname > AbstractTestNGSpringContextTests</classname> that
adds some convenience functionality for JDBC access. Expects a
<classname > javax.sql.DataSource</classname> bean and a
<interfacename > PlatformTransactionManager</interfacename> bean
2009-09-23 22:59:21 +08:00
to be defined in the <classname > ApplicationContext</classname> .
When you extend
2011-01-21 08:23:34 +08:00
<classname > AbstractTransactionalTestNGSpringContextTests</classname> ,
2009-09-23 22:59:21 +08:00
you can access the following <literal > protected</literal>
instance variables:</para>
2009-03-19 04:00:49 +08:00
<itemizedlist >
<listitem >
2009-09-23 22:59:21 +08:00
<para > <literal > applicationContext</literal> : Inherited from
2009-03-19 04:00:49 +08:00
the <classname > AbstractTestNGSpringContextTests</classname>
2010-12-30 13:47:23 +08:00
superclass. Use this variable to perform explicit bean
lookups or to test the state of the context as a
whole.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2010-12-30 13:47:23 +08:00
<para > <literal > simpleJdbcTemplate</literal> : Use this variable
to execute SQL statements to query the database.
Such queries can be used to confirm database state both
<emphasis > prior to</emphasis> and <emphasis > after</emphasis>
execution of database-related application code, and Spring
ensures that such queries run in the scope of the same
transaction as the application code. When used in conjunction
with an ORM tool, be sure to avoid
<link linkend= "testcontext-tx-false-positives" > false positives</link> .</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
<tip >
2009-09-23 22:59:21 +08:00
<para > These classes are a convenience for extension. If you do not
want your test classes to be tied to a Spring-specific class
2010-12-30 13:47:23 +08:00
hierarchy — for example, if you want to directly extend the class
you are testing — you can configure your own custom test classes by
2009-09-23 22:59:21 +08:00
using <interfacename > @ContextConfiguration</interfacename> ,
<interfacename > @TestExecutionListeners</interfacename> , and so on,
and by manually instrumenting your test class with a
2009-03-19 04:00:49 +08:00
<classname > TestContextManager</classname> . See the source code of
<classname > AbstractTestNGSpringContextTests</classname> for an
example of how to instrument your test class.</para>
</tip>
</section>
</section>
</section>
<section id= "testing-examples-petclinic" >
<title > PetClinic example</title>
2011-01-21 08:23:34 +08:00
<para > The PetClinic application, available from the
2011-06-04 20:45:58 +08:00
<link linkend= "new-in-3.0-samples" > samples repository</link> ,
2010-05-05 21:42:46 +08:00
illustrates several features of the <emphasis > Spring
2009-08-26 21:13:06 +08:00
TestContext Framework</emphasis> in a JUnit 4.5+ environment. Most test
2009-03-19 04:00:49 +08:00
functionality is included in the
<classname > AbstractClinicTests</classname> , for which a partial listing
is shown below:</para>
2009-07-29 23:51:18 +08:00
<programlisting language= "java" > import static org.junit.Assert.assertEquals;
<lineannotation > // import ...</lineannotation>
<emphasis role= "bold" > @ContextConfiguration</emphasis>
2009-03-19 04:00:49 +08:00
public abstract class AbstractClinicTests <emphasis role= "bold" > extends AbstractTransactionalJUnit4SpringContextTests</emphasis> {
<emphasis role= "bold" > @Autowired</emphasis>
protected Clinic clinic;
@Test
public void getVets() {
Collection< Vet> vets = this.clinic.getVets();
assertEquals("JDBC query must show the same number of vets",
<emphasis role= "bold" > super.countRowsInTable("VETS")</emphasis> , vets.size());
Vet v1 = EntityUtils.getById(vets, Vet.class, 2);
assertEquals("Leary", v1.getLastName());
assertEquals(1, v1.getNrOfSpecialties());
assertEquals("radiology", (v1.getSpecialties().get(0)).getName());
<lineannotation > // ...</lineannotation>
}
<lineannotation > // ...</lineannotation>
}</programlisting>
<para > Notes:</para>
<itemizedlist >
<listitem >
<para > This test case extends the
<classname > AbstractTransactionalJUnit4SpringContextTests</classname>
class, from which it inherits configuration for Dependency Injection
2009-09-23 22:59:21 +08:00
(through the
2009-03-19 04:00:49 +08:00
<classname > DependencyInjectionTestExecutionListener</classname> ) and
2009-09-23 22:59:21 +08:00
transactional behavior (through the
2009-03-19 04:00:49 +08:00
<classname > TransactionalTestExecutionListener</classname> ).</para>
</listitem>
<listitem >
2010-12-30 13:47:23 +08:00
<para > The <literal > clinic</literal> instance variable — the
application object being tested — is set by Dependency Injection
2009-09-23 22:59:21 +08:00
through <interfacename > @Autowired</interfacename> semantics.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
<para > The <methodname > testGetVets()</methodname> method illustrates
2009-09-23 22:59:21 +08:00
how you can use the inherited
<methodname > countRowsInTable()</methodname> method to easily verify
2011-01-21 08:23:34 +08:00
the number of rows in a given table, thus verifying correct behavior
2009-09-23 22:59:21 +08:00
of the application code being tested. This allows for stronger tests
and lessens dependency on the exact test data. For example, you can
add additional rows in the database without breaking tests.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2009-09-23 22:59:21 +08:00
<para > Like many integration tests that use a database, most of the
2009-03-19 04:00:49 +08:00
tests in <classname > AbstractClinicTests</classname> depend on a
minimum amount of data already in the database before the test cases
2011-01-21 08:23:34 +08:00
run. Alternatively, you might choose to populate the database within
the test fixture set up of your test cases — again,
within the same transaction as the tests.</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
2009-09-23 22:59:21 +08:00
<para > The PetClinic application supports three data access technologies:
JDBC, Hibernate, and JPA. By declaring
2009-03-19 04:00:49 +08:00
<interfacename > @ContextConfiguration</interfacename> without any
specific resource locations, the
<classname > AbstractClinicTests</classname> class will have its
application context loaded from the default location,
2009-09-23 22:59:21 +08:00
<literal > AbstractClinicTests-context.xml</literal> , which declares a
2009-03-19 04:00:49 +08:00
common <classname > DataSource</classname> . Subclasses specify additional
2009-09-23 22:59:21 +08:00
context locations that must declare a
2009-03-19 04:00:49 +08:00
<interfacename > PlatformTransactionManager</interfacename> and a concrete
implementation of <interfacename > Clinic</interfacename> .</para>
<para > For example, the Hibernate implementation of the PetClinic tests
2009-09-23 22:59:21 +08:00
contains the following implementation. For this example,
2009-03-19 04:00:49 +08:00
<classname > HibernateClinicTests</classname> does not contain a single
line of code: we only need to declare
<interfacename > @ContextConfiguration</interfacename> , and the tests are
2009-09-23 22:59:21 +08:00
inherited from <classname > AbstractClinicTests</classname> . Because
2009-03-19 04:00:49 +08:00
<interfacename > @ContextConfiguration</interfacename> is declared without
any specific resource locations, the <emphasis > Spring TestContext
2009-09-23 22:59:21 +08:00
Framework</emphasis> loads an application context from all the beans
2011-01-21 08:23:34 +08:00
defined in <literal > AbstractClinicTests-context.xml</literal> (i.e.,
2009-03-19 04:00:49 +08:00
the inherited locations) and
2009-09-23 22:59:21 +08:00
<literal > HibernateClinicTests-context.xml</literal> , with
<literal > HibernateClinicTests-context.xml</literal> possibly overriding
beans defined in
<literal > AbstractClinicTests-context.xml</literal> .</para>
2009-03-19 04:00:49 +08:00
2009-04-08 21:38:36 +08:00
<programlisting language= "java" > <emphasis role= "bold" > @ContextConfiguration</emphasis>
2009-03-19 04:00:49 +08:00
public class HibernateClinicTests extends AbstractClinicTests { }
</programlisting>
2011-01-21 08:23:34 +08:00
<para > In a large-scale application, the Spring configuration is
often split across multiple files. Consequently, configuration locations
are typically specified in a common base class for all application-specific
2009-09-23 22:59:21 +08:00
integration tests. Such a base class may also add useful instance
2010-12-30 13:47:23 +08:00
variables — populated by Dependency Injection, naturally — such as a
2011-01-21 08:23:34 +08:00
<classname > SessionFactory</classname> in the case of an application
2009-03-19 04:00:49 +08:00
using Hibernate.</para>
<para > As far as possible, you should have exactly the same Spring
configuration files in your integration tests as in the deployed
environment. One likely point of difference concerns database connection
pooling and transaction infrastructure. If you are deploying to a
full-blown application server, you will probably use its connection pool
(available through JNDI) and JTA implementation. Thus in production you
2011-01-21 08:23:34 +08:00
will use a <classname > JndiObjectFactoryBean</classname> or
2009-06-19 20:22:18 +08:00
<literal > < jee:jndi-lookup> </literal> for the
2009-03-19 04:00:49 +08:00
<classname > DataSource</classname> and
<classname > JtaTransactionManager</classname> . JNDI and JTA will not be
available in out-of-container integration tests, so you should use a
combination like the Commons DBCP <classname > BasicDataSource</classname>
and <classname > DataSourceTransactionManager</classname> or
<classname > HibernateTransactionManager</classname> for them. You can
factor out this variant behavior into a single XML file, having the
2009-09-23 22:59:21 +08:00
choice between application server and a 'local' configuration separated
2009-03-19 04:00:49 +08:00
from all other configuration, which will not vary between the test and
production environments. In addition, it is advisable to use properties
2011-01-21 08:23:34 +08:00
files for connection settings. See the PetClinic application for an
2009-03-19 04:00:49 +08:00
example.</para>
</section>
</section>
<section id= "testing-resources" >
<title > Further Resources</title>
2009-09-23 22:59:21 +08:00
<para > Consult the following resources for more information about
testing:</para>
2009-03-19 04:00:49 +08:00
<itemizedlist >
<listitem >
2011-01-21 08:23:34 +08:00
<para > <ulink url= "http://www.junit.org/" > JUnit</ulink> :
<quote > <emphasis > A programmer-oriented testing framework for Java</emphasis> </quote> .
Used by the Spring Framework in its test suite.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2009-09-23 22:59:21 +08:00
<para > <ulink url= "http://testng.org/" > TestNG</ulink> : A testing
2011-03-13 08:25:58 +08:00
framework inspired by JUnit with added support for Java 5
2009-06-19 20:22:18 +08:00
annotations, test groups, data-driven testing, distributed testing,
2011-03-13 08:25:58 +08:00
etc.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2009-06-19 20:22:18 +08:00
<para > <ulink
2009-09-23 22:59:21 +08:00
url="http://www.mockobjects.com/">MockObjects.com</ulink> : Web site
2009-06-19 20:22:18 +08:00
dedicated to mock objects, a technique for improving the design of
2009-09-23 22:59:21 +08:00
code within test-driven development.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2009-06-19 20:22:18 +08:00
<para > <ulink url= "http://en.wikipedia.org/wiki/Mock_Object" > "Mock
2009-09-23 22:59:21 +08:00
Objects"</ulink> : Article in Wikipedia.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2011-01-21 19:48:30 +08:00
<para > <ulink url= "http://www.easymock.org/" > EasyMock</ulink> :
Java library <quote > <emphasis > that provides Mock Objects for interfaces
(and objects through the class extension) by generating them
on the fly using Java's proxy mechanism.</emphasis> </quote>
Used by the Spring Framework in its test suite.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2009-09-23 22:59:21 +08:00
<para > <ulink url= "http://www.jmock.org/" > JMock</ulink> : Library that
2009-06-19 20:22:18 +08:00
supports test-driven development of Java code with mock
objects.</para>
2009-03-19 04:00:49 +08:00
</listitem>
2009-07-01 02:40:33 +08:00
<listitem >
2009-09-23 22:59:21 +08:00
<para > <ulink url= "http://mockito.org/" > Mockito</ulink> : Java mock
library based on the <ulink
url="http://xunitpatterns.com/Test%20Spy.html">test spy</ulink>
2009-07-01 02:40:33 +08:00
pattern.</para>
</listitem>
2009-03-19 04:00:49 +08:00
<listitem >
2009-09-23 22:59:21 +08:00
<para > <ulink url= "http://dbunit.sourceforge.net/" > DbUnit</ulink> :
2009-06-19 20:22:18 +08:00
JUnit extension (also usable with Ant and Maven) targeted for
database-driven projects that, among other things, puts your database
into a known state between test runs.</para>
2009-03-19 04:00:49 +08:00
</listitem>
<listitem >
2009-09-23 22:59:21 +08:00
<para > <ulink url= "http://grinder.sourceforge.net/" > Grinder</ulink> :
2009-06-19 20:22:18 +08:00
Java load testing framework.</para>
2009-03-19 04:00:49 +08:00
</listitem>
</itemizedlist>
</section>
2009-06-19 20:22:18 +08:00
</chapter>