]> source.dussan.org Git - sonarqube.git/blob
c9f87ee72ecfd603cfc2b6185a24d47d70e702d4
[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.server.platform.db.migration.version.v72;
21
22 import java.sql.SQLException;
23 import java.util.stream.Collectors;
24 import javax.annotation.Nullable;
25 import org.assertj.core.groups.Tuple;
26 import org.junit.Rule;
27 import org.junit.Test;
28 import org.junit.rules.ExpectedException;
29 import org.sonar.api.utils.System2;
30 import org.sonar.api.utils.internal.TestSystem2;
31 import org.sonar.db.CoreDbTester;
32
33 import static org.assertj.core.api.Assertions.assertThat;
34 import static org.assertj.core.api.Assertions.tuple;
35
36 public class PopulateExternalIdOnUsersTest {
37
38   private static final long PAST = 5_000_000_000L;
39   private static final long NOW = 10_000_000_000L;
40
41   @Rule
42   public ExpectedException expectedException = ExpectedException.none();
43
44   @Rule
45   public CoreDbTester db = CoreDbTester.createForSchema(PopulateExternalIdOnUsersTest.class, "users.sql");
46
47   private System2 system2 = new TestSystem2().setNow(NOW);
48
49   private PopulateExternalIdOnUsers underTest = new PopulateExternalIdOnUsers(db.database(), system2);
50
51   @Test
52   public void update_users() throws SQLException {
53     insertUser("USER_1", "user1", null);
54     insertUser("USER_2", "user2", "1234");
55
56     underTest.execute();
57
58     assertUsers(
59       tuple("USER_1", "user1", NOW),
60       tuple("USER_2", "1234", PAST));
61   }
62
63   @Test
64   public void migration_is_reentrant() throws SQLException {
65     insertUser("USER_1", "user1", null);
66     insertUser("USER_2", "user2", "1234");
67
68     underTest.execute();
69     underTest.execute();
70
71     assertUsers(
72       tuple("USER_1", "user1", NOW),
73       tuple("USER_2", "1234", PAST));
74   }
75
76   private void assertUsers(Tuple... expectedTuples) {
77     assertThat(db.select("SELECT LOGIN, EXTERNAL_ID, UPDATED_AT FROM USERS")
78       .stream()
79       .map(map -> new Tuple(map.get("LOGIN"), map.get("EXTERNAL_ID"), map.get("UPDATED_AT")))
80       .collect(Collectors.toList()))
81         .containsExactlyInAnyOrder(expectedTuples);
82   }
83
84   private void insertUser(String login, String externalLogin, @Nullable String externalId) {
85     db.executeInsert("USERS",
86       "LOGIN", login,
87       "EXTERNAL_ID", externalId,
88       "EXTERNAL_LOGIN", externalLogin,
89       "CREATED_AT", PAST,
90       "UPDATED_AT", PAST,
91       "IS_ROOT", false,
92       "ONBOARDED", false);
93   }
94 }