View Javadoc

1   /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.student.common_test_tester;
17  
18  import static org.junit.Assert.assertEquals;
19  import static org.junit.Assert.assertNotNull;
20  
21  import org.junit.Test;
22  import org.kuali.student.common.test.spring.AbstractTransactionalDaoTest;
23  import org.kuali.student.common.test.spring.Dao;
24  import org.kuali.student.common.test.spring.PersistenceFileLocation;
25  import org.kuali.student.common_test_tester.support.MyDao;
26  import org.kuali.student.common_test_tester.support.Value;
27  
28  @PersistenceFileLocation("classpath:META-INF/test-persistence.xml")
29  public class DaoCommonTest extends AbstractTransactionalDaoTest {
30  
31  	@Dao(value = "org.kuali.student.common_test_tester.support.MyDaoImpl", testDataFile = "classpath:META-INF/load-my-beans.xml", testSqlFile="classpath:test.sql")
32  	private MyDao myDao;
33  
34  	public Value value1;
35  	
36  	@Test
37  	public void test1() {
38  		Value value = new Value("Cheerios");
39  
40  		String id = myDao.createValue(value);
41  		//em.flush();//This is needed for eclipselink for some reason
42  		String result = myDao.findValue(id);
43  		assertEquals("Cheerios", result);
44  		
45  		assertNotNull(myDao.findValueFromValue("Value Number One"));
46  		assertNotNull(myDao.findValue("11223344-1122-1122-1111-000000000000"));
47  	}
48  	
49  	@Test
50  	public void test2() {
51  		Value value = new Value("Cheerios");
52  
53  		String id = myDao.createValue(value);
54  		//em.flush();//This is needed for eclipselink for some reason
55  		String result = myDao.findValue(id);
56  		assertEquals("Cheerios", result);
57  		
58  		assertNotNull(myDao.findValueFromValue("Value Number One"));
59  		assertNotNull(myDao.findValue("11223344-1122-1122-1111-000000000000"));
60  	}
61  }