blob: b0220beabc27b0450b1920c9c14cc2af96dbd661 (
plain)
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
|
package jrummikub.control.network;
import static org.junit.Assert.*;
import jrummikub.util.IListener;
import jrummikub.util.IListener3;
import jrummikub.view.MockView;
import org.junit.Before;
import org.junit.Test;
/** */
public class LoginControlTest {
MockView view;
LoginControl loginControl;
boolean handled = false;
/** */
@Before
public void setup() {
view = new MockView();
loginControl = new LoginControl(view);
loginControl.startLogin();
}
/** */
@Test
public void panelVisibleTest() {
assertFalse(view.isSettingsPanelVisible);
assertTrue(view.isLoginPanelVisible);
assertFalse(view.isScorePanelVisible);
}
/** */
@Test
public void loginEventTest() {
loginControl.getLoginEvent().add(
new IListener3<String, String, String>() {
@Override
public void handle(String value1, String value2,
String value3) {
assertEquals("a", value1);
assertEquals("b", value2);
assertEquals("c", value3);
handled = true;
}
});
view.loginPanel.loginEvent.emit("a", "b", "c");
assertTrue(handled);
assertFalse(view.isLoginPanelVisible);
assertFalse(view.isScorePanelVisible);
assertFalse(view.isSettingsPanelVisible);
}
/** */
@Test
public void cancelEventTest() {
loginControl.getCancelEvent().add(new IListener() {
@Override
public void handle() {
handled = true;
}
});
view.loginPanel.cancelEvent.emit();
assertTrue(handled);
assertFalse(view.isLoginPanelVisible);
assertFalse(view.isScorePanelVisible);
assertFalse(view.isSettingsPanelVisible);
}
}
|