]> source.dussan.org Git - sonarqube.git/commitdiff
Add some unit tests
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 11 Sep 2014 12:01:28 +0000 (14:01 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 11 Sep 2014 12:01:28 +0000 (14:01 +0200)
sonar-core/src/test/java/org/sonar/core/issue/db/IssueAuthorizationDtoTest.java [new file with mode: 0644]
sonar-core/src/test/java/org/sonar/core/user/GroupDtoTest.java [new file with mode: 0644]

diff --git a/sonar-core/src/test/java/org/sonar/core/issue/db/IssueAuthorizationDtoTest.java b/sonar-core/src/test/java/org/sonar/core/issue/db/IssueAuthorizationDtoTest.java
new file mode 100644 (file)
index 0000000..ec21f11
--- /dev/null
@@ -0,0 +1,74 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
+package org.sonar.core.issue.db;
+
+import org.junit.Test;
+
+import static com.google.common.collect.Lists.newArrayList;
+import static org.fest.assertions.Assertions.assertThat;
+
+public class IssueAuthorizationDtoTest {
+
+  @Test
+  public void getter_and_setter() throws Exception {
+    IssueAuthorizationDto dto = new IssueAuthorizationDto()
+      .setProject("Sample")
+      .setPermission("user")
+      .setGroups(newArrayList("sonar-users"))
+      .setUsers(newArrayList("john"));
+
+    assertThat(dto.getKey()).isEqualTo("Sample");
+    assertThat(dto.getProject()).isEqualTo("Sample");
+    assertThat(dto.getPermission()).isEqualTo("user");
+    assertThat(dto.getGroups()).containsExactly("sonar-users");
+    assertThat(dto.getUsers()).containsExactly("john");
+  }
+
+  @Test
+  public void add_group() throws Exception {
+    IssueAuthorizationDto dto = new IssueAuthorizationDto()
+      .setProject("Sample")
+      .setPermission("user")
+      .setGroups(newArrayList("sonar-users"))
+      .setUsers(newArrayList("john"));
+
+    assertThat(dto.getGroups()).containsExactly("sonar-users");
+
+    dto.addGroup("sonar-admins");
+
+    assertThat(dto.getGroups()).containsExactly("sonar-users", "sonar-admins");
+  }
+
+  @Test
+  public void add_user() throws Exception {
+    IssueAuthorizationDto dto = new IssueAuthorizationDto()
+      .setProject("Sample")
+      .setPermission("user")
+      .setGroups(newArrayList("sonar-users"))
+      .setUsers(newArrayList("john"));
+
+    assertThat(dto.getUsers()).containsExactly("john");
+
+    dto.addUser("doe");
+
+    assertThat(dto.getUsers()).containsExactly("john", "doe");
+  }
+}
diff --git a/sonar-core/src/test/java/org/sonar/core/user/GroupDtoTest.java b/sonar-core/src/test/java/org/sonar/core/user/GroupDtoTest.java
new file mode 100644 (file)
index 0000000..87b6db2
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2014 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
+package org.sonar.core.user;
+
+import org.junit.Test;
+
+import static org.fest.assertions.Assertions.assertThat;
+
+public class GroupDtoTest {
+
+  @Test
+  public void getter_and_setter() throws Exception {
+    GroupDto dto = new GroupDto()
+      .setId(1L)
+      .setName("sonar-users")
+      .setDescription("Sonar users");
+
+    assertThat(dto.getKey()).isEqualTo("sonar-users");
+    assertThat(dto.getName()).isEqualTo("sonar-users");
+    assertThat(dto.getId()).isEqualTo(1L);
+    assertThat(dto.getDescription()).isEqualTo("Sonar users");
+  }
+
+}