]> source.dussan.org Git - sonarqube.git/blob
83758b4ea2936ae584ca502b765f0876aff1feaa
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2019 SonarSource SA
4  * mailto:info 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.ce.taskprocessor;
21
22 import java.util.Random;
23 import org.junit.Test;
24 import org.mockito.Mockito;
25 import org.sonar.ce.task.CeTask;
26 import org.sonar.ce.task.log.CeTaskLogging;
27 import org.sonar.db.ce.CeActivityDto;
28
29 import static org.mockito.Mockito.mock;
30 import static org.mockito.Mockito.verify;
31 import static org.mockito.Mockito.verifyNoMoreInteractions;
32
33 public class CeTaskLoggingWorkerExecutionListenerTest {
34   private CeTaskLogging ceTaskLogging = Mockito.spy(CeTaskLogging.class);
35   private CeLoggingWorkerExecutionListener underTest = new CeLoggingWorkerExecutionListener(ceTaskLogging);
36
37   @Test
38   public void onStart_calls_initForTask_with_method_argument() {
39     CeTask ceTask = Mockito.mock(CeTask.class);
40
41     underTest.onStart(ceTask);
42
43     verify(ceTaskLogging).initForTask(ceTask);
44     verifyNoMoreInteractions(ceTaskLogging);
45   }
46
47   @Test
48   public void onEnd_calls_clearForTask() {
49     underTest.onEnd(mock(CeTask.class),
50       CeActivityDto.Status.values()[new Random().nextInt(CeActivityDto.Status.values().length)],
51       null, null);
52
53     verify(ceTaskLogging).clearForTask();
54     verifyNoMoreInteractions(ceTaskLogging);
55   }
56 }