]> source.dussan.org Git - sonarqube.git/blob
5d919d386751005d1253751151139f057593a610
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2016 SonarSource SA
4  * mailto:contact AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.computation.monitoring;
21
22 import java.util.ArrayList;
23 import java.util.Collections;
24 import java.util.List;
25 import java.util.concurrent.ExecutorService;
26 import java.util.concurrent.Executors;
27 import java.util.concurrent.ThreadFactory;
28 import java.util.concurrent.TimeUnit;
29 import org.junit.After;
30 import org.junit.Test;
31
32 import static org.assertj.core.api.Assertions.assertThat;
33
34 public class CEQueueStatusImplConcurrentTest {
35   private ExecutorService executorService = Executors.newFixedThreadPool(10, new ThreadFactory() {
36     private int cnt = 0;
37
38     @Override
39     public Thread newThread(Runnable r) {
40       return new Thread(r, CEQueueStatusImplConcurrentTest.class.getSimpleName() + cnt++);
41     }
42   });
43   private CEQueueStatusImpl underTest = new CEQueueStatusImpl();
44
45   @After
46   public void tearDown() throws Exception {
47     executorService.shutdownNow();
48   }
49
50   @Test
51   public void test_concurrent_modifications_in_any_order() throws InterruptedException {
52     long initialPendingCount = 9963L;
53     underTest.initPendingCount(initialPendingCount);
54
55     for (Runnable runnable : buildShuffleCallsToUnderTest()) {
56       executorService.submit(runnable);
57     }
58
59     executorService.awaitTermination(1, TimeUnit.SECONDS);
60
61     assertThat(underTest.getReceivedCount()).isEqualTo(100);
62     assertThat(underTest.getPendingCount()).isEqualTo(initialPendingCount + 2);
63     assertThat(underTest.getInProgressCount()).isEqualTo(1);
64     assertThat(underTest.getErrorCount()).isEqualTo(17);
65     assertThat(underTest.getSuccessCount()).isEqualTo(80);
66     assertThat(underTest.getProcessingTime()).isEqualTo(177);
67   }
68
69   private List<Runnable> buildShuffleCallsToUnderTest() {
70     List<Runnable> res = new ArrayList<>();
71     for (int i = 0; i < 100; i++) {
72       res.add(new AddReceivedRunnable());
73     }
74     for (int i = 0; i < 98; i++) {
75       res.add(new AddInProgressRunnable());
76     }
77     for (int i = 0; i < 80; i++) {
78       res.add(new AddSuccessRunnable());
79     }
80     for (int i = 0; i < 17; i++) {
81       res.add(new AddErrorRunnable());
82     }
83     Collections.shuffle(res);
84     return res;
85   }
86
87   private class AddReceivedRunnable implements Runnable {
88     @Override
89     public void run() {
90       underTest.addReceived();
91     }
92   }
93
94   private class AddInProgressRunnable implements Runnable {
95     @Override
96     public void run() {
97       underTest.addInProgress();
98     }
99   }
100
101   private class AddErrorRunnable implements Runnable {
102     @Override
103     public void run() {
104       underTest.addError(1);
105     }
106   }
107
108   private class AddSuccessRunnable implements Runnable {
109     @Override
110     public void run() {
111       underTest.addSuccess(2);
112     }
113   }
114 }