Project

General

Profile

IntegrationTestWriting » History » Revision 5

Revision 4 (Andreas Kohlbecker, 03/05/2013 02:13 PM) → Revision 5/16 (Andreas Kohlbecker, 03/05/2013 02:28 PM)

{{>toc}} 


 ----- 


 # How to write [[IntegrationTests]] and how to generate test data for them 


 Related pages: 

 * [[IntegrationTests|IntegrationTests - Testing java code using Maven and Unitils]] 

 


 ---- 



 ### CdmTransactionalIntegrationTest 


 * In most cases you may want your test to be subclass of `CdmTransactionalIntegrationTest`  

   * After a test method is run the transaction is usuallay rolled back. 

   * If you need something to be really persisted into the data base call the `commitAndStartNewTransaction()`  

   method after the `service.saveOrUpdate(Someting)`  



 ### dbUnit !dbUnit test data 


 Unitils profides integation with DbUnit wich support for testing with databases and loading of DbUnit data sets. DbUnit is a JUnit extension (also usable with Ant) targeted at database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage.  



 ### Test dependencies and load strategy 


 Even if DbUnit should turn your database into a known and controlled state it can happen that the database contains leftovers from previous tests. In order to explicitly wipe out all potential remains you can in case use specific load strategy class, the `CleanSweepInsertLoadStrategy` which will provide you a really virgin database: 

 ~~~ 
 @Test 
 @DataSet(loadStrategy=CleanSweepInsertLoadStrategy.class) 
 public void testArea_area() throws FileNotFoundException { 
   // your test 
 } 
 ~~~ 


 ### Generating test data 


 The DbUnit datasets in the cdm library are provided as flat xml data files. This is quite nice Untils it comes to extending test ore to refactoring library code.  

 In this case it can become very time consuming and painful to adapt the flat xml data files accordingly. Therefore it is highly recommended to generate the test data from within the the test class itself like in the following little example: 

 ~~~ 
 // @Test //    uncomment and run this test method to create/update the flat xml test data file 
 public void createTestData() throws FileNotFoundException { 
        
         // --- References --- // 
         Reference sec = ReferenceFactory.newDatabase(); 
         sec.setTitleCache("Test", true); 
         Reference nomRef = ReferenceFactory.newBook(); 
         sec.setTitleCache("Sp.Pl.", true); 

         referenceService.save(sec); 
         referenceService.save(nomRef); 

         BotanicalName n_lapsana = BotanicalName.NewInstance(Rank.GENUS()); 
         n_lapsana.setTitleCache("Lapsana", true); 
         Taxon t_lapsana = Taxon.NewInstance(n_lapsana, sec); 
         t_lapsana.setUuid(T_LAPSANA_UUID); 
         taxonService.saveOrUpdate(t_lapsana); 

	 commitAndStartNewTransaction(null); 

         // this will write falt xml file to the same package in the test resources  
         // the test file is named after the test class like: TestClassName.xml 
	 writeDbUnitDataSetFile(new String[] { 
	         "TAXONBASE", "TAXONNAMEBASE", 
	         "REFERENCE", "DESCRIPTIONELEMENTBASE", "DESCRIPTIONBASE", 
	         "AGENTBASE", "CLASSIFICATION", "CLASSIFICATION_TAXONNODE", "TAXONNODE", 
	         "HOMOTYPICALGROUP", "LANGUAGESTRING", 
	  }); 
 } 
 ~~~