AbstractClinicTests.java
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:9k
源码类别:

Java编程

开发平台:

Java

  1. package org.springframework.samples.petclinic;
  2. import java.util.Collection;
  3. import java.util.Date;
  4. import static org.junit.Assert.assertEquals;
  5. import static org.junit.Assert.assertTrue;
  6. import org.junit.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.samples.petclinic.util.EntityUtils;
  9. import org.springframework.test.context.ContextConfiguration;
  10. import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;
  11. /**
  12.  * <p>
  13.  * Base class for {@link Clinic} integration tests.
  14.  * </p>
  15.  * <p>
  16.  * &quot;AbstractClinicTests-context.xml&quot; declares a common
  17.  * {@link javax.sql.DataSource DataSource}. Subclasses should specify
  18.  * additional context locations which declare a
  19.  * {@link org.springframework.transaction.PlatformTransactionManager PlatformTransactionManager}
  20.  * and a concrete implementation of {@link Clinic}.
  21.  * </p>
  22.  * <p>
  23.  * This class extends {@link AbstractTransactionalJUnit4SpringContextTests},
  24.  * one of the valuable testing support classes provided by the
  25.  * <em>Spring TestContext Framework</em> found in the
  26.  * <code>org.springframework.test.context</code> package. The
  27.  * annotation-driven configuration used here represents best practice for
  28.  * integration tests with Spring. Note, however, that
  29.  * AbstractTransactionalJUnit4SpringContextTests serves only as a convenience
  30.  * for extension. For example, if you do not wish for your test classes to be
  31.  * tied to a Spring-specific class hierarchy, you may configure your tests with
  32.  * annotations such as {@link ContextConfiguration @ContextConfiguration},
  33.  * {@link org.springframework.test.context.TestExecutionListeners @TestExecutionListeners},
  34.  * {@link org.springframework.transaction.annotation.Transactional @Transactional},
  35.  * etc.
  36.  * </p>
  37.  * <p>
  38.  * AbstractClinicTests and its subclasses benefit from the following services
  39.  * provided by the Spring TestContext Framework:
  40.  * </p>
  41.  * <ul>
  42.  * <li><strong>Spring IoC container caching</strong> which spares us
  43.  * unnecessary set up time between test execution.</li>
  44.  * <li><strong>Dependency Injection</strong> of test fixture instances,
  45.  * meaning that we don't need to perform application context lookups. See the
  46.  * use of {@link Autowired @Autowired} on the <code>clinic</code> instance
  47.  * variable, which uses autowiring <em>by type</em>. As an alternative, we
  48.  * could annotate <code>clinic</code> with
  49.  * {@link javax.annotation.Resource @Resource} to achieve dependency injection
  50.  * <em>by name</em>.
  51.  * <em>(see: {@link ContextConfiguration @ContextConfiguration},
  52.  * {@link org.springframework.test.context.support.DependencyInjectionTestExecutionListener DependencyInjectionTestExecutionListener})</em></li>
  53.  * <li><strong>Transaction management</strong>, meaning each test method is
  54.  * executed in its own transaction, which is automatically rolled back by
  55.  * default. Thus, even if tests insert or otherwise change database state, there
  56.  * is no need for a teardown or cleanup script.
  57.  * <em>(see: {@link org.springframework.test.context.transaction.TransactionConfiguration @TransactionConfiguration},
  58.  * {@link org.springframework.transaction.annotation.Transactional @Transactional},
  59.  * {@link org.springframework.test.context.transaction.TransactionalTestExecutionListener TransactionalTestExecutionListener})</em></li>
  60.  * <li><strong>Useful inherited protected fields</strong>, such as a
  61.  * {@link org.springframework.jdbc.core.simple.SimpleJdbcTemplate SimpleJdbcTemplate}
  62.  * that can be used to verify database state after test operations or to verify
  63.  * the results of queries performed by application code. An
  64.  * {@link org.springframework.context.ApplicationContext ApplicationContext} is
  65.  * also inherited and can be used for explicit bean lookup if necessary.
  66.  * <em>(see: {@link org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests AbstractJUnit4SpringContextTests},
  67.  * {@link AbstractTransactionalJUnit4SpringContextTests})</em></li>
  68.  * </ul>
  69.  * <p>
  70.  * The Spring TestContext Framework and related unit and integration testing
  71.  * support classes are shipped in <code>spring-test.jar</code>.
  72.  * </p>
  73.  *
  74.  * @author Ken Krebs
  75.  * @author Rod Johnson
  76.  * @author Juergen Hoeller
  77.  * @author Sam Brannen
  78.  */
  79. @ContextConfiguration
  80. public abstract class AbstractClinicTests extends AbstractTransactionalJUnit4SpringContextTests {
  81. @Autowired
  82. protected Clinic clinic;
  83. @Test
  84. public void getVets() {
  85. Collection<Vet> vets = this.clinic.getVets();
  86. // Use the inherited countRowsInTable() convenience method (from
  87. // AbstractTransactionalJUnit4SpringContextTests) to verify the results.
  88. assertEquals("JDBC query must show the same number of vets", super.countRowsInTable("VETS"), vets.size());
  89. Vet v1 = EntityUtils.getById(vets, Vet.class, 2);
  90. assertEquals("Leary", v1.getLastName());
  91. assertEquals(1, v1.getNrOfSpecialties());
  92. assertEquals("radiology", (v1.getSpecialties().get(0)).getName());
  93. Vet v2 = EntityUtils.getById(vets, Vet.class, 3);
  94. assertEquals("Douglas", v2.getLastName());
  95. assertEquals(2, v2.getNrOfSpecialties());
  96. assertEquals("dentistry", (v2.getSpecialties().get(0)).getName());
  97. assertEquals("surgery", (v2.getSpecialties().get(1)).getName());
  98. }
  99. @Test
  100. public void getPetTypes() {
  101. Collection<PetType> petTypes = this.clinic.getPetTypes();
  102. assertEquals("JDBC query must show the same number of pet types", super.countRowsInTable("TYPES"),
  103. petTypes.size());
  104. PetType t1 = EntityUtils.getById(petTypes, PetType.class, 1);
  105. assertEquals("cat", t1.getName());
  106. PetType t4 = EntityUtils.getById(petTypes, PetType.class, 4);
  107. assertEquals("snake", t4.getName());
  108. }
  109. @Test
  110. public void findOwners() {
  111. Collection<Owner> owners = this.clinic.findOwners("Davis");
  112. assertEquals(2, owners.size());
  113. owners = this.clinic.findOwners("Daviss");
  114. assertEquals(0, owners.size());
  115. }
  116. @Test
  117. public void loadOwner() {
  118. Owner o1 = this.clinic.loadOwner(1);
  119. assertTrue(o1.getLastName().startsWith("Franklin"));
  120. Owner o10 = this.clinic.loadOwner(10);
  121. assertEquals("Carlos", o10.getFirstName());
  122. // XXX: Add programmatic support for ending transactions with the
  123. // TestContext Framework.
  124. // Check lazy loading, by ending the transaction:
  125. // endTransaction();
  126. // Now Owners are "disconnected" from the data store.
  127. // We might need to touch this collection if we switched to lazy loading
  128. // in mapping files, but this test would pick this up.
  129. o1.getPets();
  130. }
  131. @Test
  132. public void insertOwner() {
  133. Collection<Owner> owners = this.clinic.findOwners("Schultz");
  134. int found = owners.size();
  135. Owner owner = new Owner();
  136. owner.setLastName("Schultz");
  137. this.clinic.storeOwner(owner);
  138. // assertTrue(!owner.isNew()); -- NOT TRUE FOR TOPLINK (before commit)
  139. owners = this.clinic.findOwners("Schultz");
  140. assertEquals("Verifying number of owners after inserting a new one.", found + 1, owners.size());
  141. }
  142. @Test
  143. public void updateOwner() throws Exception {
  144. Owner o1 = this.clinic.loadOwner(1);
  145. String old = o1.getLastName();
  146. o1.setLastName(old + "X");
  147. this.clinic.storeOwner(o1);
  148. o1 = this.clinic.loadOwner(1);
  149. assertEquals(old + "X", o1.getLastName());
  150. }
  151. @Test
  152. public void loadPet() {
  153. Collection<PetType> types = this.clinic.getPetTypes();
  154. Pet p7 = this.clinic.loadPet(7);
  155. assertTrue(p7.getName().startsWith("Samantha"));
  156. assertEquals(EntityUtils.getById(types, PetType.class, 1).getId(), p7.getType().getId());
  157. assertEquals("Jean", p7.getOwner().getFirstName());
  158. Pet p6 = this.clinic.loadPet(6);
  159. assertEquals("George", p6.getName());
  160. assertEquals(EntityUtils.getById(types, PetType.class, 4).getId(), p6.getType().getId());
  161. assertEquals("Peter", p6.getOwner().getFirstName());
  162. }
  163. @Test
  164. public void insertPet() {
  165. Owner o6 = this.clinic.loadOwner(6);
  166. int found = o6.getPets().size();
  167. Pet pet = new Pet();
  168. pet.setName("bowser");
  169. Collection<PetType> types = this.clinic.getPetTypes();
  170. pet.setType(EntityUtils.getById(types, PetType.class, 2));
  171. pet.setBirthDate(new Date());
  172. o6.addPet(pet);
  173. assertEquals(found + 1, o6.getPets().size());
  174. // both storePet and storeOwner are necessary to cover all ORM tools
  175. this.clinic.storePet(pet);
  176. this.clinic.storeOwner(o6);
  177. // assertTrue(!pet.isNew()); -- NOT TRUE FOR TOPLINK (before commit)
  178. o6 = this.clinic.loadOwner(6);
  179. assertEquals(found + 1, o6.getPets().size());
  180. }
  181. @Test
  182. public void updatePet() throws Exception {
  183. Pet p7 = this.clinic.loadPet(7);
  184. String old = p7.getName();
  185. p7.setName(old + "X");
  186. this.clinic.storePet(p7);
  187. p7 = this.clinic.loadPet(7);
  188. assertEquals(old + "X", p7.getName());
  189. }
  190. @Test
  191. public void insertVisit() {
  192. Pet p7 = this.clinic.loadPet(7);
  193. int found = p7.getVisits().size();
  194. Visit visit = new Visit();
  195. p7.addVisit(visit);
  196. visit.setDescription("test");
  197. // both storeVisit and storePet are necessary to cover all ORM tools
  198. this.clinic.storeVisit(visit);
  199. this.clinic.storePet(p7);
  200. // assertTrue(!visit.isNew()); -- NOT TRUE FOR TOPLINK (before commit)
  201. p7 = this.clinic.loadPet(7);
  202. assertEquals(found + 1, p7.getVisits().size());
  203. }
  204. }