-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSpringJPATest.java
64 lines (54 loc) · 2.19 KB
/
SpringJPATest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.example;
import java.time.Duration;
import java.util.Optional;
import com.example.model.Student;
import com.example.repository.StudentRepository;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.testcontainers.service.connection.ServiceConnection;
import org.testcontainers.junit.jupiter.Container;
import org.testcontainers.junit.jupiter.Testcontainers;
import org.testcontainers.oracle.OracleContainer;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
@SpringBootTest
@Testcontainers
public class SpringJPATest {
@Container
@ServiceConnection
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.7-slim-faststart")
.withStartupTimeout(Duration.ofMinutes(2))
.withUsername("testuser")
.withPassword("testpwd")
.withInitScript("student.sql");
// Autowire JPA repositories
@Autowired
StudentRepository studentRepository;
@Test
void crudExample() {
Student s = new Student();
s.setFirstName("John");
s.setLastName("Doe");
s.setCredits(60);
s.setMajor("Computer Science");
s.setEmail("[email protected]");
s.setGpa(3.77);
// Create a new student using the student repository.
Student saved = studentRepository.save(s);
assertThat(saved.getId()).isNotNull();
// Update the student credits and GPA.
saved.setCredits(64);
saved.setGpa(3.79);
studentRepository.save(saved);
studentRepository.flush();
// Verify the student was updated successfully.
Optional<Student> byId = studentRepository.findById(saved.getId());
assertTrue(byId.isPresent());
assertThat(byId.get().getCredits()).isEqualTo(64);
assertThat(byId.get().getGpa()).isEqualTo(3.79);
studentRepository.deleteById(saved.getId());
assertFalse(studentRepository.findById(saved.getId()).isPresent());
}
}