-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathButtonPresenterTest.kt
More file actions
379 lines (349 loc) · 13.7 KB
/
ButtonPresenterTest.kt
File metadata and controls
379 lines (349 loc) · 13.7 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
package com.reactnativenavigation.utils
import android.app.Activity
import android.app.Application
import android.content.res.Configuration
import android.graphics.Color
import android.graphics.PorterDuff
import android.graphics.PorterDuffColorFilter
import android.text.SpannableString
import android.view.Menu
import android.view.MenuItem
import android.widget.TextView
import androidx.appcompat.widget.ActionMenuView
import androidx.test.espresso.Espresso
import androidx.test.ext.junit.rules.ActivityScenarioRule
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.platform.app.InstrumentationRegistry
import com.reactnativenavigation.BaseAndroidTest
import com.reactnativenavigation.TestActivity
import com.reactnativenavigation.fakes.IconResolverFake
import com.reactnativenavigation.mocks.ImageLoaderMock.mock
import com.reactnativenavigation.options.ButtonOptions
import com.reactnativenavigation.options.IconBackgroundOptions
import com.reactnativenavigation.options.params.Bool
import com.reactnativenavigation.options.params.Colour
import com.reactnativenavigation.options.params.Number
import com.reactnativenavigation.options.params.Text
import com.reactnativenavigation.options.params.ThemeColour
import com.reactnativenavigation.viewcontrollers.stack.topbar.button.ButtonController
import com.reactnativenavigation.viewcontrollers.stack.topbar.button.ButtonPresenter
import com.reactnativenavigation.views.stack.topbar.titlebar.ButtonBar
import com.reactnativenavigation.views.stack.topbar.titlebar.IconBackgroundDrawable
import com.reactnativenavigation.views.stack.topbar.titlebar.TitleBarButtonCreator
import org.assertj.core.api.Java6Assertions
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.Mockito
import java.util.Objects
@RunWith(AndroidJUnit4::class)
class ButtonPresenterTest : BaseAndroidTest() {
private lateinit var titleBar: ButtonBar
private lateinit var uut: ButtonPresenter
private lateinit var buttonController: ButtonController
private lateinit var button: ButtonOptions
private lateinit var activity: Activity
@get:Rule
val rule = ActivityScenarioRule(TestActivity::class.java)
@Before
fun beforeEach() {
rule.scenario.onActivity { activity: TestActivity ->
this.activity =
activity
titleBar = ButtonBar(activity)
activity.setContentView(titleBar)
button = createButton()
val imageLoaderMock =
mock()
initUUt(imageLoaderMock)
}
}
private fun initUUt(imageLoaderMock: ImageLoader) {
val iconResolver = IconResolverFake(
activity, imageLoaderMock
)
uut = ButtonPresenter(activity, button, iconResolver)
buttonController = ButtonController(
activity,
uut,
button,
Mockito.mock(TitleBarButtonCreator::class.java),
Mockito.mock(
ButtonController.OnClickListener::class.java
)
)
}
@Test
fun applyOptions_buttonIsAddedToMenu() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
addButtonAndApplyOptions()
Java6Assertions.assertThat(findButtonView().text.toString())
.isEqualTo(BTN_TEXT)
}
}
@Test
fun applyOptions_appliesColorOnButtonTextView() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
button.color =
ThemeColour(Colour(Color.RED), Colour(Color.RED))
addButtonAndApplyOptions()
}
Espresso.onIdle()
Java6Assertions.assertThat(findButtonView().currentTextColor).isEqualTo(Color.RED)
}
@Test
fun applyOptions_appliesColorOnButtonTextViewOnDarkMode() {
val application = InstrumentationRegistry.getInstrumentation().targetContext.applicationContext as Application
application.resources.configuration.uiMode = Configuration.UI_MODE_NIGHT_NO
button.color = ThemeColour(Colour(Color.RED), Colour(Color.BLACK))
var menuItem: MenuItem? = null
InstrumentationRegistry.getInstrumentation().runOnMainSync {
menuItem = addButtonAndApplyOptions()
}
Espresso.onIdle()
Java6Assertions.assertThat(findButtonView().currentTextColor).isEqualTo(Color.RED)
InstrumentationRegistry.getInstrumentation().runOnMainSync {
application.resources.configuration.uiMode = Configuration.UI_MODE_NIGHT_YES
uut.applyOptions(titleBar, menuItem!!) { buttonController.view }
}
Espresso.onIdle()
Java6Assertions.assertThat(findButtonView().currentTextColor).isEqualTo(Color.BLACK)
}
@Test
fun apply_disabledColor() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
button.enabled = Bool(false)
addButtonAndApplyOptions()
}
Espresso.onIdle()
Java6Assertions.assertThat(findButtonView().currentTextColor)
.isEqualTo(ButtonPresenter.DISABLED_COLOR)
}
@Test
fun applyColor_shouldChangeColor() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
val menuItem = addMenuButton()
uut.applyOptions(titleBar, menuItem) { buttonController.view }
val color =
ThemeColour(Colour(Color.RED), Colour(Color.RED))
uut.applyColor(titleBar, menuItem, color)
}
Espresso.onIdle()
Java6Assertions.assertThat(findButtonView().currentTextColor).isEqualTo(Color.RED)
}
@Test
fun applyBackgroundColor_shouldChangeBackgroundColor() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
val mockD = Mockito.mock(
IconBackgroundDrawable::class.java
)
initUUt(mock(mockD))
button.enabled = Bool(true)
button.icon = Text("icon")
button.color =
ThemeColour(Colour(Color.RED), Colour(Color.RED))
val iconBackground = IconBackgroundOptions()
iconBackground.color = ThemeColour(
Colour(Color.GREEN),
Colour(Color.GREEN)
)
button.iconBackground = iconBackground
val menuItem = Mockito.spy(addMenuButton())
uut.applyOptions(titleBar, menuItem) { buttonController.view }
Java6Assertions.assertThat((menuItem.icon as IconBackgroundDrawable).backgroundColor)
.isEqualTo(Color.GREEN)
uut.applyBackgroundColor(
titleBar, menuItem,
ThemeColour(
Colour(Color.BLACK),
Colour(Color.BLACK)
)
)
Java6Assertions.assertThat((menuItem.icon as IconBackgroundDrawable).backgroundColor)
.isEqualTo(Color.BLACK)
}
}
@Test
fun applyOptions_shouldChangeIconColorTint() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
val mockD = Mockito.mock(
IconBackgroundDrawable::class.java
)
initUUt(mock(mockD))
button.enabled = Bool(true)
button.icon = Text("icon")
button.color =
ThemeColour(Colour(Color.RED), Colour(Color.RED))
val menuItem = Mockito.spy(addMenuButton())
uut.applyOptions(titleBar, menuItem) { buttonController.view }
val icon = menuItem.icon
Java6Assertions.assertThat(
icon
).isNotNull()
Mockito.verify(icon)?.colorFilter =
PorterDuffColorFilter(Color.RED, PorterDuff.Mode.SRC_IN)
}
}
@Test
fun applyOptions_shouldChangeIconDisabledColorTint() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
val mockD = Mockito.mock(
IconBackgroundDrawable::class.java
)
initUUt(mock(mockD))
button.enabled = Bool(false)
button.icon = Text("icon")
button.color =
ThemeColour(Colour(Color.RED), Colour(Color.RED))
button.disabledColor = ThemeColour(
Colour(Color.YELLOW),
Colour(Color.YELLOW)
)
val menuItem = Mockito.spy(addMenuButton())
uut.applyOptions(titleBar, menuItem) { buttonController.view }
val icon = menuItem.icon
Java6Assertions.assertThat(
icon
).isNotNull()
Mockito.verify(icon)?.colorFilter =
PorterDuffColorFilter(Color.YELLOW, PorterDuff.Mode.SRC_IN)
}
}
@Test
fun applyOptions_shouldChangeIconColorBackground() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
val mockD = Mockito.mock(
IconBackgroundDrawable::class.java
)
initUUt(mock(mockD))
button.enabled = Bool(true)
button.icon = Text("icon")
button.color =
ThemeColour(Colour(Color.RED), Colour(Color.RED))
val iconBackground = IconBackgroundOptions()
iconBackground.color = ThemeColour(
Colour(Color.GREEN),
Colour(Color.GREEN)
)
button.iconBackground = iconBackground
val menuItem = Mockito.spy(addMenuButton())
uut.applyOptions(titleBar, menuItem) { buttonController.view }
val icon = menuItem.icon
Java6Assertions.assertThat(
icon
).isNotNull()
Java6Assertions.assertThat(
icon
).isInstanceOf(
IconBackgroundDrawable::class.java
)
val modifed = icon as IconBackgroundDrawable?
Mockito.verify(modifed!!.getWrappedDrawable()).colorFilter =
PorterDuffColorFilter(Color.RED, PorterDuff.Mode.SRC_IN)
Java6Assertions.assertThat(modifed.backgroundColor)
.isEqualTo(Color.GREEN)
}
}
@Test
fun applyOptions_shouldChangeIconDisabledColorBackground() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
val mockD = Mockito.mock(
IconBackgroundDrawable::class.java
)
initUUt(mock(mockD))
button.enabled = Bool(false)
button.icon = Text("icon")
button.color =
ThemeColour(Colour(Color.RED), Colour(Color.RED))
button.disabledColor = ThemeColour(
Colour(Color.YELLOW),
Colour(Color.YELLOW)
)
val iconBackground = IconBackgroundOptions()
iconBackground.color = ThemeColour(
Colour(Color.GREEN),
Colour(Color.GREEN)
)
iconBackground.disabledColor = ThemeColour(
Colour(Color.CYAN),
Colour(Color.CYAN)
)
button.iconBackground = iconBackground
val menuItem = Mockito.spy(addMenuButton())
uut.applyOptions(titleBar, menuItem) { buttonController.view }
val icon = menuItem.icon
Java6Assertions.assertThat(
icon
).isNotNull()
Java6Assertions.assertThat(
icon
).isInstanceOf(
IconBackgroundDrawable::class.java
)
val modifed = icon as IconBackgroundDrawable?
Mockito.verify(modifed!!.getWrappedDrawable()).colorFilter =
PorterDuffColorFilter(Color.YELLOW, PorterDuff.Mode.SRC_IN)
Java6Assertions.assertThat(modifed.backgroundColor)
.isEqualTo(Color.CYAN)
}
}
@Test
fun applyColor_shouldChangeDisabledColor() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
button.enabled = Bool(false)
val menuItem = addMenuButton()
uut.applyOptions(titleBar, menuItem) { buttonController.view }
val disabledColor = ThemeColour(
Colour(Color.BLUE),
Colour(Color.BLUE)
)
uut.applyDisabledColor(titleBar, menuItem, disabledColor)
}
Espresso.onIdle()
Java6Assertions.assertThat(findButtonView().currentTextColor).isEqualTo(Color.BLUE)
}
@Test
fun apply_allCaps() {
InstrumentationRegistry.getInstrumentation().runOnMainSync {
button.allCaps = Bool(false)
addButtonAndApplyOptions()
Java6Assertions.assertThat(findButtonView().isAllCaps)
.isEqualTo(false)
}
}
private fun addButtonAndApplyOptions(): MenuItem {
val menuItem = addMenuButton()
uut.applyOptions(titleBar, menuItem) { buttonController.view }
return menuItem
}
private fun addMenuButton(): MenuItem {
return titleBar.addButton(
Menu.NONE,
1,
0,
SpannableString.valueOf(button.text["text"])
) ?: throw IllegalStateException("MenuItem should not be null")
}
private fun findButtonView(): TextView {
return ViewUtils.findChildrenByClass(
Objects.requireNonNull(
ViewUtils.findChildByClass(
titleBar,
ActionMenuView::class.java
)
),
TextView::class.java
) { child: Any? -> true }[0] as TextView
}
private fun createButton(): ButtonOptions {
val b = ButtonOptions()
b.id = "btn1"
b.text = Text(BTN_TEXT)
b.showAsAction = Number(MenuItem.SHOW_AS_ACTION_ALWAYS)
return b
}
companion object {
private const val BTN_TEXT = "button1"
}
}