@@ -10,7 +10,10 @@ import misk.testing.MiskTestModule
10
10
import org.assertj.core.api.Assertions.assertThat
11
11
import org.junit.jupiter.api.BeforeEach
12
12
import org.junit.jupiter.api.Test
13
+ import org.junit.jupiter.api.assertThrows
14
+ import java.sql.SQLException
13
15
import java.time.Clock
16
+ import java.time.Duration
14
17
import javax.inject.Inject
15
18
import javax.persistence.PersistenceException
16
19
@@ -28,7 +31,12 @@ class TestDatabasePoolTest {
28
31
@Inject private lateinit var clock: Clock
29
32
@Inject private lateinit var backend: FakeDatabaseBackend
30
33
31
- private val config = DataSourceConfig (type = DataSourceType .MYSQL , database = " test" )
34
+ private val config = DataSourceConfig (
35
+ type = DataSourceType .MYSQL ,
36
+ database = " test" ,
37
+ username = " root" ,
38
+ password = " "
39
+ )
32
40
33
41
private lateinit var testDatabasePool: TestDatabasePool
34
42
@@ -103,6 +111,38 @@ class TestDatabasePoolTest {
103
111
)
104
112
}
105
113
114
+ @Test fun releasesDatabaseNamesForReuse () {
115
+ assertThat(testDatabasePool.takeDatabase(config).database).isEqualTo(" test__20180101__1" )
116
+ assertThat(testDatabasePool.takeDatabase(config).database).isEqualTo(" test__20180101__2" )
117
+ testDatabasePool.releaseDatabase(config.copy(database = " test__20180101__1" ))
118
+ assertThat(testDatabasePool.takeDatabase(config).database).isEqualTo(" test__20180101__1" )
119
+ }
120
+
121
+ @Test fun integrationTest () {
122
+ val realDatabasePool = TestDatabasePool (MySqlTestDatabasePoolBackend (config), clock)
123
+ realDatabasePool.getPool(config)
124
+ realDatabasePool.pruneOldDatabases(retention = Duration .ZERO )
125
+
126
+ // Create a database. This will be the first one that the pool tries to create.
127
+ realDatabasePool.backend.createDatabase(" test__20180101__1" )
128
+
129
+ // Demonstrate that attempting to create an existing database throws.
130
+ assertThrows<SQLException > {
131
+ realDatabasePool.backend.createDatabase(" test__20180101__1" )
132
+ }
133
+
134
+ // Assert that the database pool does not yet know about any database names.
135
+ assertThat(realDatabasePool.getPool(config).pool).isEmpty()
136
+
137
+ // At this point, the pool has tried to allocate "test__20180101__1", failed, and bumped the
138
+ // sequence number.
139
+ assertThat(realDatabasePool.takeDatabase(config).database).isEqualTo(" test__20180101__2" )
140
+
141
+ // If we return a name to the database pool, it will be the next database to be taken.
142
+ realDatabasePool.releaseDatabase(config.copy(database = " test__20180101__1" ))
143
+ assertThat(realDatabasePool.takeDatabase(config).database).isEqualTo(" test__20180101__1" )
144
+ }
145
+
106
146
private fun backendHasDatabases () {
107
147
val todaysDatabases = listOf (
108
148
" test__20180101__1" ,
0 commit comments