]> source.dussan.org Git - sonarqube.git/blob
3bb6b653b72a4d601029d67589ddb761b45a9f43
[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 package org.sonar.server.computation.task.projectanalysis.component;
21
22 import java.util.Optional;
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.DbTester;
28 import org.sonar.db.component.BranchType;
29 import org.sonar.db.component.ComponentDto;
30 import org.sonar.db.component.ComponentTesting;
31 import org.sonar.server.computation.task.projectanalysis.analysis.AnalysisMetadataHolderRule;
32 import org.sonar.server.computation.task.projectanalysis.analysis.Branch;
33 import org.sonar.server.computation.task.projectanalysis.analysis.Project;
34
35 import static org.assertj.core.api.Assertions.assertThat;
36 import static org.mockito.Mockito.mock;
37 import static org.mockito.Mockito.when;
38 import static org.sonar.server.computation.task.projectanalysis.component.Component.Type.PROJECT;
39 import static org.sonar.server.computation.task.projectanalysis.component.ReportComponent.builder;
40
41 public class BranchPersisterTest {
42   private final static Component MAIN = builder(PROJECT, 1).setUuid("PROJECT_UUID").setKey("PROJECT_KEY").build();
43   private final static Component BRANCH = builder(PROJECT, 1).setUuid("BRANCH_UUID").setKey("BRANCH_KEY").build();
44
45   @Rule
46   public AnalysisMetadataHolderRule analysisMetadataHolder = new AnalysisMetadataHolderRule();
47   @Rule
48   public DbTester dbTester = DbTester.create(System2.INSTANCE);
49   @Rule
50   public TreeRootHolderRule treeRootHolder = new TreeRootHolderRule();
51   @Rule
52   public ExpectedException exception = ExpectedException.none();
53
54   BranchPersister underTest = new BranchPersister(dbTester.getDbClient(), System2.INSTANCE, treeRootHolder, analysisMetadataHolder);
55
56   @Test
57   public void fail_if_no_component_for_main_branches() {
58     analysisMetadataHolder.setBranch(createBranch(BranchType.LONG, true, "master"));
59     treeRootHolder.setRoot(MAIN);
60
61     exception.expect(IllegalStateException.class);
62     exception.expectMessage("Project has been deleted by end-user during analysis");
63
64     underTest.persist(dbTester.getSession());
65   }
66
67   @Test
68   public void persist_secondary_branch() {
69     analysisMetadataHolder.setBranch(createBranch(BranchType.LONG, false, "branch"));
70     treeRootHolder.setRoot(BRANCH);
71
72     // add main branch in project table and in metadata
73     ComponentDto dto = ComponentTesting.newPrivateProjectDto(dbTester.organizations().insert(), MAIN.getUuid()).setDbKey(MAIN.getKey());
74     analysisMetadataHolder.setProject(Project.copyOf(dto));
75     dbTester.getDbClient().componentDao().insert(dbTester.getSession(), dto);
76
77     // this should add new columns in project and project_branches
78     underTest.persist(dbTester.getSession());
79
80     dbTester.getSession().commit();
81
82     assertThat(dbTester.countRowsOfTable("projects")).isEqualTo(2);
83     assertThat(dbTester.countRowsOfTable("project_branches")).isEqualTo(1);
84
85   }
86
87   private static Branch createBranch(BranchType type, boolean isMain, String name) {
88     Branch branch = mock(Branch.class);
89     when(branch.getType()).thenReturn(type);
90     when(branch.getName()).thenReturn(name);
91     when(branch.isMain()).thenReturn(isMain);
92     when(branch.getMergeBranchUuid()).thenReturn(Optional.empty());
93     return branch;
94   }
95 }