View Javadoc

1   /*
2    * Copyright 2007 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License"); you may not use this file except in
5    * compliance with the License. You may obtain a copy of the License at
6    * 
7    * http://www.opensource.org/licenses/ecl2.php
8    * 
9    * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS
10   * IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
11   * language governing permissions and limitations under the License.
12   */
13  package org.kuali.rice.test.lifecycles;
14  
15  import org.kuali.rice.core.api.lifecycle.Lifecycle;
16  import org.kuali.rice.core.api.lifecycle.Lifecycle;
17  import org.kuali.rice.test.data.PerTestUnitTestData;
18  import org.kuali.rice.test.data.UnitTestData;
19  import org.kuali.rice.test.data.UnitTestDataUtils;
20  
21  import java.lang.reflect.Method;
22  
23  /**
24   * A lifecycle for loading SQL datasets based on the PerSuiteUnitTestData annotation. The individual SQL statements are
25   * loaded first, followed by the statements inside the files (files are loaded sequentially in the order listed in the
26   * annotation).
27   * 
28   * @author Kuali Rice Team (rice.collab@kuali.org)
29   */
30  public class PerTestDataLoaderLifecycle implements Lifecycle {
31  	private boolean started;
32  	private Method method;
33  
34  	public PerTestDataLoaderLifecycle(Method method) {
35  		this.method = method;
36  	}
37  
38  	public boolean isStarted() {
39  		return started;
40  	}
41  
42  	public void start() throws Exception {
43  		if (method.getDeclaringClass().isAnnotationPresent(PerTestUnitTestData.class)) {
44  			UnitTestData[] data = method.getDeclaringClass().getAnnotation(PerTestUnitTestData.class).value();
45              UnitTestDataUtils.executeDataLoader(data);
46  		}
47  		if (method.isAnnotationPresent(UnitTestData.class)) {
48  			UnitTestData data = method.getAnnotation(UnitTestData.class);
49              UnitTestDataUtils.executeDataLoader(data);
50  		}
51  		started = true;
52  	}
53  
54  	public void stop() throws Exception {
55  	    if (method.getDeclaringClass().isAnnotationPresent(PerTestUnitTestData.class)) {
56              UnitTestData[] data = method.getDeclaringClass().getAnnotation(PerTestUnitTestData.class).tearDown();
57              UnitTestDataUtils.executeDataLoader(data);
58          }
59  		started = false;
60  	}
61  }