]> source.dussan.org Git - sonarqube.git/blob
45ec82d267ef0a573619eb8a018c71f704db0e66
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2014 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * SonarQube 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  * SonarQube 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     for (Runnable runnable : buildShuffleCallsToUnderTest()) {
53       executorService.submit(runnable);
54     }
55
56     executorService.awaitTermination(1, TimeUnit.SECONDS);
57
58     assertThat(underTest.getReceivedCount()).isEqualTo(100);
59     assertThat(underTest.getPendingCount()).isEqualTo(2);
60     assertThat(underTest.getInProgressCount()).isEqualTo(1);
61     assertThat(underTest.getErrorCount()).isEqualTo(17);
62     assertThat(underTest.getSuccessCount()).isEqualTo(80);
63     assertThat(underTest.getProcessingTime()).isEqualTo(177);
64   }
65
66   private List<Runnable> buildShuffleCallsToUnderTest() {
67     List<Runnable> res = new ArrayList<>();
68     for (int i = 0; i < 100; i++) {
69       res.add(new AddReceivedRunnable());
70     }
71     for (int i = 0; i < 98; i++) {
72       res.add(new AddInProgressRunnable());
73     }
74     for (int i = 0; i < 80; i++) {
75       res.add(new AddSuccessRunnable());
76     }
77     for (int i = 0; i < 17; i++) {
78       res.add(new AddErrorRunnable());
79     }
80     Collections.shuffle(res);
81     return res;
82   }
83
84   private class AddReceivedRunnable implements Runnable {
85     @Override
86     public void run() {
87       underTest.addReceived();
88     }
89   }
90
91   private class AddInProgressRunnable implements Runnable {
92     @Override
93     public void run() {
94       underTest.addInProgress();
95     }
96   }
97
98   private class AddErrorRunnable implements Runnable {
99     @Override
100     public void run() {
101       underTest.addError(1);
102     }
103   }
104
105   private class AddSuccessRunnable implements Runnable {
106     @Override
107     public void run() {
108       underTest.addSuccess(2);
109     }
110   }
111 }