]> source.dussan.org Git - sonarqube.git/blob
fa3e45b5d105bc88684432f8bace12f3f5e5473e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 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
21 package org.sonar.server.computation.task.projectanalysis.step;
22
23 import org.junit.Rule;
24 import org.junit.Test;
25 import org.junit.rules.ExpectedException;
26 import org.sonar.api.utils.System2;
27 import org.sonar.db.DbClient;
28 import org.sonar.db.DbSession;
29 import org.sonar.db.component.ComponentDao;
30 import org.sonar.server.computation.task.projectanalysis.analysis.AnalysisMetadataHolder;
31 import org.sonar.server.computation.task.projectanalysis.component.BranchPersisterDelegate;
32 import org.sonar.server.computation.task.projectanalysis.component.Component;
33 import org.sonar.server.computation.task.projectanalysis.component.MutableDbIdsRepository;
34 import org.sonar.server.computation.task.projectanalysis.component.MutableDisabledComponentsHolder;
35 import org.sonar.server.computation.task.projectanalysis.component.TreeRootHolder;
36
37 import static java.util.Collections.emptyList;
38 import static org.apache.commons.lang.RandomStringUtils.randomAlphabetic;
39 import static org.mockito.Matchers.any;
40 import static org.mockito.Matchers.eq;
41 import static org.mockito.Mockito.doReturn;
42 import static org.mockito.Mockito.mock;
43
44 public class PersistComponentsStepTest {
45
46   @Rule
47   public ExpectedException thrown = ExpectedException.none();
48
49   @Test
50   public void should_fail_if_project_is_not_stored_in_database_yet() {
51     TreeRootHolder treeRootHolder = mock(TreeRootHolder.class);
52     Component component = mock(Component.class);
53     DbClient dbClient = mock(DbClient.class);
54     ComponentDao componentDao = mock(ComponentDao.class);
55     String projectKey = randomAlphabetic(20);
56
57     doReturn(component).when(treeRootHolder).getRoot();
58     doReturn(projectKey).when(component).getKey();
59     doReturn(componentDao).when(dbClient).componentDao();
60     doReturn(emptyList()).when(componentDao).selectAllComponentsFromProjectKey(any(DbSession.class), eq(projectKey));
61
62     thrown.expect(IllegalStateException.class);
63     thrown.expectMessage("The project '" + projectKey + "' is not stored in the database, during a project analysis");
64
65     new PersistComponentsStep(
66       dbClient,
67       treeRootHolder,
68       mock(MutableDbIdsRepository.class),
69       System2.INSTANCE,
70       mock(MutableDisabledComponentsHolder.class),
71       mock(AnalysisMetadataHolder.class),
72       mock(BranchPersisterDelegate.class)).execute();
73   }
74 }