-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathConfigStalenessCheckTest.kt
More file actions
200 lines (153 loc) · 6.41 KB
/
ConfigStalenessCheckTest.kt
File metadata and controls
200 lines (153 loc) · 6.41 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
package com.mparticle.internal
import com.mparticle.MParticle
import com.mparticle.MParticleOptions
import com.mparticle.testutils.BaseCleanInstallEachTest
import com.mparticle.testutils.MPLatch
import org.json.JSONObject
import org.junit.Test
import kotlin.test.assertEquals
import kotlin.test.assertNotNull
import kotlin.test.assertNull
import kotlin.test.assertTrue
class ConfigStalenessCheckTest : BaseCleanInstallEachTest() {
val configManager: ConfigManager
get() = MParticle.getInstance()?.Internal()?.configManager.assertNotNull()
@Test
fun testNeverStale() {
val config1 = randomJson(4)
val config2 = randomJson(4)
var latch = MPLatch(1)
val options = MParticleOptions.builder(mContext)
.addCredentials()
.build()
mServer.setupConfigResponse(config1.toString())
MParticle.start(options)
configManager.onNewConfig { latch.countDown() }
latch.await()
assertEquals(config1.toString(), configManager.config)
val etag = configManager.etag
val lastModified = configManager.ifModified
val timestamp = configManager.configTimestamp
MParticle.setInstance(null)
mServer.setupConfigResponse(config2.toString())
MParticle.start(options)
latch = MPLatch(1)
configManager.onNewConfig { latch.countDown() }
// after restart, we should still have config1
assertEquals(config1.toString(), configManager.config)
assertEquals(etag, configManager.etag)
assertEquals(lastModified, configManager.ifModified)
assertEquals(timestamp, configManager.configTimestamp)
configManager.onNewConfig { latch.countDown() }
latch.await()
assertEquals(config2.toString(), MParticle.getInstance()?.Internal()?.configManager?.config)
}
@Test
fun testExceedStalenessThreshold() {
val config1 = randomJson(4)
val config2 = randomJson(4)
var latch = MPLatch(1)
val options = MParticleOptions.builder(mContext)
.addCredentials()
.configMaxAgeSeconds(1)
.build()
mServer.setupConfigResponse(config1.toString())
MParticle.start(options)
configManager.onNewConfig { latch.countDown() }
latch.await()
assertEquals(config1.toString(), MParticle.getInstance()?.Internal()?.configManager?.config)
MParticle.setInstance(null)
Thread.sleep(1010)
mServer.setupConfigResponse(config2.toString())
MParticle.start(options)
latch = MPLatch(1)
// after configMaxAge time has elapsed, config should be cleared after restart
assertTrue(configManager.config?.isEmpty()!!)
assertNull(configManager.etag)
assertNull(configManager.ifModified)
assertNull(configManager.configTimestamp)
configManager.onNewConfig { latch.countDown() }
latch.await()
// after config has been fetched, we should see config2
assertEquals(config2.toString(), MParticle.getInstance()?.Internal()?.configManager?.config)
}
@Test
fun testDoesntExceedStalenessThreshold() {
val config1 = randomJson(4)
val config2 = randomJson(4)
var latch = MPLatch(1)
val options = MParticleOptions.builder(mContext)
.addCredentials()
.configMaxAgeSeconds(100)
.build()
mServer.setupConfigResponse(config1.toString())
MParticle.start(options)
configManager.onNewConfig { latch.countDown() }
latch.await()
assertEquals(config1.toString(), configManager.config)
val etag = configManager.etag
val lastModified = configManager.ifModified
val timestamp = configManager.configTimestamp
MParticle.setInstance(null)
mServer.setupConfigResponse(config2.toString())
MParticle.start(options)
latch = MPLatch(1)
configManager.onNewConfig { latch.countDown() }
// after restart, we should still have config1
assertEquals(config1.toString(), configManager.config)
assertEquals(etag, configManager.etag)
assertEquals(lastModified, configManager.ifModified)
assertEquals(timestamp, configManager.configTimestamp)
configManager.onNewConfig { latch.countDown() }
latch.await()
assertEquals(config2.toString(), MParticle.getInstance()?.Internal()?.configManager?.config)
}
@Test
fun testAlwaysStale() {
val config1 = randomJson(4)
val config2 = randomJson(4)
var latch = MPLatch(1)
val options = MParticleOptions.builder(mContext)
.addCredentials()
.configMaxAgeSeconds(0)
.build()
mServer.setupConfigResponse(config1.toString())
MParticle.start(options)
configManager.onNewConfig { latch.countDown() }
latch.await()
assertEquals(config1.toString(), MParticle.getInstance()?.Internal()?.configManager?.config)
MParticle.setInstance(null)
mServer.setupConfigResponse(config2.toString())
MParticle.start(options)
latch = MPLatch(1)
// directly after restart, config should be cleared
assertTrue(configManager.config?.isEmpty()!!)
assertNull(configManager.etag)
assertNull(configManager.ifModified)
assertNull(configManager.configTimestamp)
configManager.onNewConfig { latch.countDown() }
latch.await()
// after config has been fetched, we should see config2
assertEquals(config2.toString(), configManager.config)
}
private fun randomJson(size: Int) =
(1..size)
.map { mRandomUtils.getAlphaNumericString(4) to mRandomUtils.getAlphaNumericString(6) }
.fold(JSONObject()) { init, attribute ->
init.apply { put(attribute.first, attribute.second) }
}
fun <T> T?.assertNotNull(): T {
assertNotNull(this)
return this
}
fun MParticleOptions.Builder.addCredentials() = this.credentials("apiKey", "apiSecret")
fun ConfigManager.onNewConfig(callback: () -> Unit) {
addConfigUpdatedListener(object : ConfigManager.ConfigLoadedListener {
override fun onConfigUpdated(configType: ConfigManager.ConfigType, isNew: Boolean) {
if (isNew && configType == ConfigManager.ConfigType.CORE) {
callback()
}
}
})
}
}