]> source.dussan.org Git - sonarqube.git/commitdiff
Add missing test for ProjectBadgesWs
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 29 Jan 2018 13:48:38 +0000 (14:48 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 29 Jan 2018 15:25:14 +0000 (16:25 +0100)
server/sonar-server/src/test/java/org/sonar/server/badge/ws/ProjectBadgesWsTest.java [new file with mode: 0644]

diff --git a/server/sonar-server/src/test/java/org/sonar/server/badge/ws/ProjectBadgesWsTest.java b/server/sonar-server/src/test/java/org/sonar/server/badge/ws/ProjectBadgesWsTest.java
new file mode 100644 (file)
index 0000000..76afe9f
--- /dev/null
@@ -0,0 +1,60 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2018 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program 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.
+ *
+ * This program 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.server.badge.ws;
+
+import java.util.Collections;
+import org.junit.Test;
+import org.sonar.api.server.ws.Request;
+import org.sonar.api.server.ws.Response;
+import org.sonar.api.server.ws.WebService;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class ProjectBadgesWsTest {
+
+  @Test
+  public void test_definition() {
+    ProjectBadgesWsAction action = createFakeAction();
+    WebService.Context context = new WebService.Context();
+    ProjectBadgesWs underTest = new ProjectBadgesWs(Collections.singletonList(action));
+    underTest.define(context);
+
+    WebService.Controller controller = context.controller("api/project_badges");
+    assertThat(controller).isNotNull();
+    assertThat(controller.description()).isNotEmpty();
+    assertThat(controller.since()).isEqualTo("7.1");
+  }
+
+  private ProjectBadgesWsAction createFakeAction() {
+    return new ProjectBadgesWsAction() {
+
+      @Override
+      public void define(WebService.NewController context) {
+        context.createAction("fake").setHandler(this);
+      }
+
+      @Override
+      public void handle(Request request, Response response) {
+        // nothing to do
+      }
+    };
+  }
+}