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
|
/*
* SonarQube Runner - CLI - Distribution
* Copyright (C) 2011 SonarSource
* sonarqube@googlegroups.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
import com.jayway.awaitility.Duration;
import java.util.concurrent.Callable;
import java.util.concurrent.TimeUnit;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import static com.jayway.awaitility.Awaitility.await;
import static org.fest.assertions.Assertions.assertThat;
import static org.mockito.Mockito.verify;
public class ShutdownTest {
@Mock
private Exit exit;
private Shutdown shutdown;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
shutdown = new Shutdown(exit, true);
}
@Test
public void testShutdown() {
shutdown.exit(3);
verify(exit).exit(3);
}
@Test(timeout = 60_000)
public void testWaitReady() throws InterruptedException {
shutdown = new Shutdown(exit, true, 100_000);
shutdown.signalReady(false);
assertThat(shutdown.shouldExit()).isFalse();
final Thread t = new HookCaller();
t.start();
await().atMost(Duration.TWO_SECONDS).pollDelay(50, TimeUnit.MILLISECONDS).until(new Callable<Boolean>() {
@Override
public Boolean call() throws Exception {
return t.isAlive();
}
});
assertThat(shutdown.shouldExit()).isTrue();
shutdown.signalReady(true);
t.join();
}
@Test(timeout = 60_000)
public void testTimeout() throws InterruptedException {
shutdown = new Shutdown(exit, true, 0);
Thread t = new HookCaller();
t.start();
t.join();
}
private class HookCaller extends Thread {
@Override
public void run() {
shutdown.hook.run();
}
}
}
|