]> source.dussan.org Git - sonarqube.git/blob
d540cd19953002234dd56fbc84c154947e2ee77a
[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.db.migrations.v501;
21
22 import org.junit.Before;
23 import org.junit.ClassRule;
24 import org.junit.Test;
25 import org.sonar.api.utils.DateUtils;
26 import org.sonar.api.utils.System2;
27 import org.sonar.core.persistence.TestDatabase;
28 import org.sonar.server.db.migrations.DatabaseMigration;
29
30 import static junit.framework.TestCase.fail;
31 import static org.fest.assertions.Assertions.assertThat;
32 import static org.mockito.Mockito.mock;
33 import static org.mockito.Mockito.when;
34
35 public class AddCharacteristicUsabilityAndSubCharacteristicsComplianceMigrationTest {
36
37   @ClassRule
38   public static TestDatabase db = new TestDatabase().schema(AddCharacteristicUsabilityAndSubCharacteristicsComplianceMigrationTest.class, "schema.sql");
39
40   DatabaseMigration migration;
41
42   System2 system = mock(System2.class);
43
44   @Before
45   public void setUp() throws Exception {
46     db.executeUpdateSql("truncate table characteristics");
47
48     when(system.now()).thenReturn(DateUtils.parseDate("2015-02-15").getTime());
49
50     migration = new AddCharacteristicUsabilityAndSubCharacteristicsComplianceMigration(db.database(), system);
51   }
52
53   @Test
54   public void migrate() throws Exception {
55     db.prepareDbUnit(getClass(), "migrate.xml");
56     migration.execute();
57     db.assertDbUnit(getClass(), "migrate-result.xml", "characteristics");
58   }
59
60   @Test
61   public void do_nothing_when_already_migrated() throws Exception {
62     db.prepareDbUnit(getClass(), "do_nothing_when_already_migrated.xml");
63     migration.execute();
64     db.assertDbUnit(getClass(), "do_nothing_when_already_migrated.xml", "characteristics");
65   }
66
67   @Test
68   public void insert_usability_at_the_top_if_security_does_exists() throws Exception {
69     db.prepareDbUnit(getClass(), "insert_usability_at_the_top_if_security_does_exists.xml");
70     migration.execute();
71     db.assertDbUnit(getClass(), "insert_usability_at_the_top_if_security_does_exists-result.xml", "characteristics");
72   }
73
74   @Test
75   public void update_usability_order_if_already_exists() throws Exception {
76     db.prepareDbUnit(getClass(), "update_usability_if_already_exists.xml");
77     migration.execute();
78     db.assertDbUnit(getClass(), "update_usability_if_already_exists-result.xml", "characteristics");
79   }
80
81   @Test
82   public void fail_if_usability_exists_as_sub_characteristic() throws Exception {
83     db.prepareDbUnit(getClass(), "fail_if_usability_exists_as_sub_characteristic.xml");
84
85     try {
86       migration.execute();
87       fail();
88     } catch (Exception e) {
89       assertThat(e).isInstanceOf(IllegalStateException.class).hasMessage("'Usability' must be a characteristic");
90     }
91   }
92
93   @Test
94   public void fail_if_compliance_already_exists_as_characteristic() throws Exception {
95     db.prepareDbUnit(getClass(), "fail_if_compliance_already_exists_as_characteristic.xml");
96
97     try {
98       migration.execute();
99       fail();
100     } catch (Exception e) {
101       assertThat(e).isInstanceOf(IllegalStateException.class).hasMessage("'Compliance' must be a sub-characteristic");
102     }
103   }
104
105   @Test
106   public void fail_if_compliance_already_exists_under_wrong_characteristic() throws Exception {
107     db.prepareDbUnit(getClass(), "fail_if_compliance_already_exists_under_wrong_characteristic.xml");
108
109     try {
110       migration.execute();
111       fail();
112     } catch (Exception e) {
113       assertThat(e).isInstanceOf(IllegalStateException.class).hasMessage("'Reusability Compliance' must be defined under 'Reusability'");
114     }
115   }
116
117 }