Last active
August 29, 2015 13:56
-
-
Save jbrackett/8926181 to your computer and use it in GitHub Desktop.
Test for spring-data-jpa tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
insert into Person (firstName, lastName) values ('John', 'Doe'); | |
insert into Person (firstName, lastName) values ('John', 'Smith'); | |
insert into Person (firstName, lastName) values ('Jane', 'Doe'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.repositories; | |
import static org.junit.Assert.assertEquals; | |
import static org.junit.Assert.assertNotNull; | |
import static org.junit.Assert.assertNull; | |
import static org.junit.Assert.assertTrue; | |
import java.util.List; | |
import javax.annotation.Resource; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import org.springframework.test.context.ContextConfiguration; | |
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; | |
import com.example.AppConfig; | |
import com.example.domain.Person; | |
@RunWith(SpringJUnit4ClassRunner.class) | |
@ContextConfiguration(classes = { AppConfig.class }) | |
public class PersonRepositoryTest { | |
@Resource | |
private PersonRepository personRepository; | |
@Test | |
public void crud() { | |
Person me = new Person("Josh", "Brackett"); | |
Person saved = personRepository.save(me); | |
assertNotNull(saved); | |
assertNotNull(saved.getId()); | |
Long id = saved.getId(); | |
Person got = personRepository.findOne(id); | |
assertNotNull(got); | |
assertEquals(saved, got); | |
got.setFirstName("Joshua"); | |
Person updated = personRepository.save(got); | |
assertNotNull(updated); | |
assertEquals("Joshua", updated.getFirstName()); | |
personRepository.delete(id); | |
Person deleted = personRepository.findOne(id); | |
assertNull(deleted); | |
} | |
@Test | |
public void getJohns() { | |
List<Person> persons = personRepository.findByFirstName("John"); | |
assertNotNull(persons); | |
assertEquals(2, persons.size()); | |
for (Person person : persons) { | |
assertEquals("John", person.getFirstName()); | |
} | |
} | |
@Test | |
public void getDoes() { | |
List<Person> persons = personRepository.findByLastName("Doe"); | |
assertNotNull(persons); | |
assertEquals(2, persons.size()); | |
for (Person person : persons) { | |
assertEquals("Doe", person.getLastName()); | |
} | |
} | |
@Test | |
public void getPartialMatch() { | |
String partial = "mit"; | |
List<Person> persons = personRepository.findByLastNameContaining(partial); | |
assertNotNull(persons); | |
assertEquals(1, persons.size()); | |
for (Person person : persons) { | |
assertTrue(person.getLastName().contains(partial)); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment