-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathTests.kt
More file actions
277 lines (249 loc) · 8.98 KB
/
Tests.kt
File metadata and controls
277 lines (249 loc) · 8.98 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
import com.querydsl.example.ksp.Bear
import com.querydsl.example.ksp.Cat
import com.querydsl.example.ksp.CatType
import com.querydsl.example.ksp.Dog
import com.querydsl.example.ksp.Person
import com.querydsl.example.ksp.QBear
import com.querydsl.example.ksp.QBearSimplifiedProjection
import com.querydsl.example.ksp.QCat
import com.querydsl.example.ksp.QDog
import com.querydsl.example.ksp.QGeolocation
import com.querydsl.example.ksp.QPerson
import com.querydsl.example.ksp.QPersonClassDTO
import com.querydsl.example.ksp.QPersonClassConstructorDTO
import com.querydsl.example.ksp.Tag
import com.querydsl.jpa.impl.JPAQueryFactory
import jakarta.persistence.EntityManagerFactory
import org.hibernate.cfg.AvailableSettings
import org.assertj.core.api.Assertions.assertThat
import org.assertj.core.api.Assertions.fail
import org.hibernate.cfg.Configuration
import kotlin.reflect.full.declaredMemberProperties
import kotlin.reflect.full.primaryConstructor
import kotlin.test.Test
class Tests {
@Test
fun `select entity` () {
val emf = initialize()
run {
val em = emf.createEntityManager()
em.transaction.begin()
em.persist(Person(424, "John Smith"))
em.transaction.commit()
em.close()
}
run {
val em = emf.createEntityManager()
val queryFactory = JPAQueryFactory(em)
val q = QPerson.person
val person = queryFactory
.selectFrom(q)
.where(q.name.eq("John Smith"))
.fetchOne()
if (person == null) {
fail<Any>("No person was returned")
} else {
assertThat(person.id).isEqualTo(424)
}
em.close()
}
}
@Test
fun `create cat with owner` () {
val emf = initialize()
run {
val em = emf.createEntityManager()
em.transaction.begin()
val catOwner = Person(425, "Percy Bysshe Catownerly")
em.persist(catOwner)
em.persist(Cat(103, "Samuel Taylor Cattingridge", false, "Not so fluffy", catOwner, CatType.MAINE_COON))
em.transaction.commit()
em.close()
}
run {
val em = emf.createEntityManager()
val queryFactory = JPAQueryFactory(em)
val q = QCat.cat
val catWithOwner = queryFactory
.selectFrom(q)
.where(q.name.eq("Samuel Taylor Cattingridge"))
.fetchOne()
if (catWithOwner == null) {
fail<Any>("No owned cat was returned")
} else {
assertThat(catWithOwner.id).isEqualTo(103)
assertThat(catWithOwner.catType).isEqualTo(CatType.MAINE_COON)
assertThat(catWithOwner.owner?.id).isEqualTo(425)
}
em.close()
}
}
@Test
fun `filter entities`() {
val emf = initialize()
run {
val em = emf.createEntityManager()
em.transaction.begin()
em.persist(Cat(100, "Neville Furbottom", true, "Quite Fluffy"))
em.persist(Cat(101, "Edgar Allan Paw", true, null))
em.persist(Cat(102, "Admiral Meowington", false))
em.transaction.commit()
em.close()
}
run {
val em = emf.createEntityManager()
val queryFactory = JPAQueryFactory(em)
val q = QCat.cat
val animals = queryFactory
.selectFrom(q)
.where(q.isTailUpright.isTrue)
.fetch()
.map { it.name }
assertThat(animals.size).isEqualTo(2)
assertThat(animals).contains("Neville Furbottom")
assertThat(animals).contains("Edgar Allan Paw")
val quiteFluffyAnimals = queryFactory
.selectFrom(q)
.where(q.fluffiness.eq("Quite Fluffy"))
.fetch()
.map { it.name }
assertThat(quiteFluffyAnimals.size).isEqualTo(1)
assertThat(quiteFluffyAnimals).contains("Neville Furbottom")
em.close()
}
}
@Test
fun `select dto`() {
val emf = initialize()
run {
val em = emf.createEntityManager()
em.transaction.begin()
em.persist(Person(424, "John Smith"))
em.transaction.commit()
em.close()
}
run {
val em = emf.createEntityManager()
val queryFactory = JPAQueryFactory(em)
val q = QPerson.person
val personDTO = queryFactory
.select(QPersonClassConstructorDTO(q.id, q.name))
.from(q)
.where(q.name.eq("John Smith"))
.fetchOne()
if (personDTO == null) {
fail<Any>("No personDTO was returned")
} else {
assertThat(personDTO.id).isEqualTo(424)
assertThat(personDTO.name).isEqualTo("John Smith")
}
em.close()
}
run {
val em = emf.createEntityManager()
val queryFactory = JPAQueryFactory(em)
val q = QPerson.person
val personDTO = queryFactory
.select(QPersonClassDTO(q.id, q.name))
.from(q)
.where(q.name.eq("John Smith"))
.fetchOne()
if (personDTO == null) {
fail<Any>("No personDTO was returned")
} else {
assertThat(personDTO.id).isEqualTo(424)
assertThat(personDTO.name).isEqualTo("John Smith")
}
em.close()
}
}
@Test
fun `query projection with excluded property`() {
val emf = initialize()
run {
val em = emf.createEntityManager()
em.transaction.begin()
em.persist(Bear(424, "Winnie", "The forest"))
em.transaction.commit()
em.close()
}
run {
val em = emf.createEntityManager()
val queryFactory = JPAQueryFactory(em)
val q = QBear.bear
val bearProjection = queryFactory
.select(QBearSimplifiedProjection(q.id, q.name))
.from(q)
.where(q.name.eq("Winnie"))
.fetchOne()
if (bearProjection == null) {
fail<Any>("No bear was returned")
} else {
assertThat(bearProjection.id).isEqualTo(424)
assertThat(bearProjection.name).isEqualTo("Winnie")
}
em.close()
}
}
@Test
fun `query projection exclude property from constructor`() {
assertThat(Bear::class.declaredMemberProperties.count()).isEqualTo(3)
assertThat(QBearSimplifiedProjection::class.primaryConstructor!!.parameters.count()).isEqualTo(2)
}
@Test
fun `create and query dog with jsonb tag`() {
val emf = initialize()
run {
val em = emf.createEntityManager()
em.transaction.begin()
val dogTag = Tag(
id = 10,
name = "Playful"
)
em.persist(Dog(300, "Buddy", dogTag))
em.transaction.commit()
em.close()
}
run {
val em = emf.createEntityManager()
val queryFactory = JPAQueryFactory(em)
val q = QDog.dog
val dog = queryFactory
.selectFrom(q)
.where(q.name.eq("Buddy"))
.fetchOne()
if (dog == null) {
fail<Any>("No dog was returned")
} else {
assertThat(dog.id).isEqualTo(300)
assertThat(dog.name).isEqualTo("Buddy")
assertThat(dog.tag.id).isEqualTo(10)
assertThat(dog.tag.name).isEqualTo("Playful")
}
em.close()
}
}
@Test
fun `is detecting comparable interface on unknown type`() {
val locationTypeName = QGeolocation::class
.members
.first { it.name == "location" }
.returnType
.toString()
assertThat(locationTypeName).isEqualTo("com.querydsl.core.types.dsl.ComparablePath<org.locationtech.jts.geom.Point>")
}
private fun initialize(): EntityManagerFactory {
val configuration = Configuration()
.setProperty(AvailableSettings.JAKARTA_JDBC_DRIVER, org.h2.Driver::class.qualifiedName!!)
.setProperty(AvailableSettings.JAKARTA_JDBC_URL, "jdbc:h2:mem:my-database;")
.setProperty(AvailableSettings.HBM2DDL_AUTO, "create-drop")
.setProperty(AvailableSettings.SHOW_SQL, "true")
.addAnnotatedClass(Person::class.java)
.addAnnotatedClass(Cat::class.java)
.addAnnotatedClass(Dog::class.java)
.addAnnotatedClass(Bear::class.java)
return configuration
.buildSessionFactory()
.unwrap(EntityManagerFactory::class.java)
}
}