3 * Copyright (C) 2009-2019 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 package org.sonar.ce.taskprocessor;
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;
29 import static org.mockito.Mockito.mock;
30 import static org.mockito.Mockito.verify;
31 import static org.mockito.Mockito.verifyNoMoreInteractions;
33 public class CeTaskLoggingWorkerExecutionListenerTest {
34 private CeTaskLogging ceTaskLogging = Mockito.spy(CeTaskLogging.class);
35 private CeLoggingWorkerExecutionListener underTest = new CeLoggingWorkerExecutionListener(ceTaskLogging);
38 public void onStart_calls_initForTask_with_method_argument() {
39 CeTask ceTask = Mockito.mock(CeTask.class);
41 underTest.onStart(ceTask);
43 verify(ceTaskLogging).initForTask(ceTask);
44 verifyNoMoreInteractions(ceTaskLogging);
48 public void onEnd_calls_clearForTask() {
49 underTest.onEnd(mock(CeTask.class),
50 CeActivityDto.Status.values()[new Random().nextInt(CeActivityDto.Status.values().length)],
53 verify(ceTaskLogging).clearForTask();
54 verifyNoMoreInteractions(ceTaskLogging);