6
6
import android .widget .TextView ;
7
7
8
8
import com .reactnativenavigation .BaseTest ;
9
- import com .reactnativenavigation .viewcontrollers .stack .topbar .button .ButtonPresenter ;
10
9
import com .reactnativenavigation .fakes .IconResolverFake ;
11
10
import com .reactnativenavigation .options .ButtonOptions ;
11
+ import com .reactnativenavigation .options .params .Bool ;
12
12
import com .reactnativenavigation .options .params .Colour ;
13
13
import com .reactnativenavigation .options .params .Number ;
14
14
import com .reactnativenavigation .options .params .Text ;
15
15
import com .reactnativenavigation .viewcontrollers .stack .topbar .button .ButtonController ;
16
+ import com .reactnativenavigation .viewcontrollers .stack .topbar .button .ButtonPresenter ;
16
17
import com .reactnativenavigation .views .stack .topbar .titlebar .TitleBar ;
17
18
import com .reactnativenavigation .views .stack .topbar .titlebar .TitleBarButtonCreator ;
18
19
19
20
import org .junit .Test ;
20
21
import org .robolectric .annotation .LooperMode ;
21
22
import org .robolectric .shadows .ShadowLooper ;
22
23
23
- import java .util .List ;
24
-
25
24
import androidx .appcompat .widget .ActionMenuView ;
26
25
27
26
import static java .util .Objects .requireNonNull ;
30
29
31
30
@ LooperMode (LooperMode .Mode .PAUSED )
32
31
public class ButtonPresenterTest extends BaseTest {
32
+ private static final String BTN_TEXT = "button1" ;
33
+
33
34
private TitleBar titleBar ;
34
35
private ButtonPresenter uut ;
35
36
private ButtonController buttonController ;
37
+ private ButtonOptions button ;
36
38
37
39
@ Override
38
40
public void beforeEach () {
39
41
Activity activity = newActivity ();
40
42
titleBar = new TitleBar (activity );
41
43
activity .setContentView (titleBar );
42
- ButtonOptions button = createButton ();
44
+ button = createButton ();
43
45
44
46
uut = new ButtonPresenter (button , new IconResolverFake (activity ));
45
47
buttonController = new ButtonController (
@@ -51,25 +53,47 @@ public void beforeEach() {
51
53
);
52
54
}
53
55
56
+ @ Test
57
+ public void applyOptions_buttonIsAddedToMenu () {
58
+ addButtonAndApplyOptions ();
59
+
60
+ assertThat (findButtonView ().getText ().toString ()).isEqualTo (BTN_TEXT );
61
+ }
62
+
54
63
@ Test
55
64
public void applyOptions_appliesColorOnButtonTextView () {
65
+ button .color = new Colour (Color .RED );
66
+ addButtonAndApplyOptions ();
67
+
68
+ assertThat (findButtonView ().getCurrentTextColor ()).isEqualTo (Color .RED );
69
+ }
70
+
71
+ @ Test
72
+ public void apply_disabledColor () {
73
+ button .enabled = new Bool (false );
74
+ addButtonAndApplyOptions ();
75
+
76
+ assertThat (findButtonView ().getCurrentTextColor ()).isEqualTo (ButtonPresenter .DISABLED_COLOR );
77
+ }
78
+
79
+ private void addButtonAndApplyOptions () {
56
80
MenuItem menuItem = buttonController .createAndAddButtonToTitleBar (titleBar , 0 );
57
81
uut .applyOptions (titleBar , menuItem , buttonController ::getView );
82
+ }
58
83
84
+ private TextView findButtonView () {
59
85
ShadowLooper .idleMainLooper ();
60
- List < TextView > textualButtons = ViewUtils .findChildrenByClass (
86
+ return ( TextView ) ViewUtils .findChildrenByClass (
61
87
requireNonNull (ViewUtils .findChildByClass (titleBar , ActionMenuView .class )),
62
88
TextView .class ,
63
89
child -> true
64
- );
65
- assertThat (textualButtons .get (0 ).getCurrentTextColor ()).isEqualTo (Color .RED );
90
+ ).get (0 );
66
91
}
67
92
68
93
private ButtonOptions createButton () {
69
94
ButtonOptions b = new ButtonOptions ();
70
95
b .id = "btn1" ;
71
- b .text = new Text ("button" );
72
- b .color = new Colour (Color .RED );
96
+ b .text = new Text (BTN_TEXT );
73
97
b .showAsAction = new Number (MenuItem .SHOW_AS_ACTION_ALWAYS );
74
98
return b ;
75
99
}
0 commit comments