You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2018/01/26 13:44:20 UTC

kylin git commit: fix AdminServiceTest

Repository: kylin
Updated Branches:
  refs/heads/sync 923a9bd9f -> c875c5f3e


fix AdminServiceTest


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/c875c5f3
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/c875c5f3
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/c875c5f3

Branch: refs/heads/sync
Commit: c875c5f3ec7701d2aaeed86f4d0c840a626dbe10
Parents: 923a9bd
Author: Li Yang <li...@apache.org>
Authored: Fri Jan 26 21:43:58 2018 +0800
Committer: Li Yang <li...@apache.org>
Committed: Fri Jan 26 21:43:58 2018 +0800

----------------------------------------------------------------------
 .../org/apache/kylin/rest/service/AdminServiceTest.java   | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/c875c5f3/server/src/test/java/org/apache/kylin/rest/service/AdminServiceTest.java
----------------------------------------------------------------------
diff --git a/server/src/test/java/org/apache/kylin/rest/service/AdminServiceTest.java b/server/src/test/java/org/apache/kylin/rest/service/AdminServiceTest.java
index ce46536..3d18511 100644
--- a/server/src/test/java/org/apache/kylin/rest/service/AdminServiceTest.java
+++ b/server/src/test/java/org/apache/kylin/rest/service/AdminServiceTest.java
@@ -47,6 +47,7 @@ public class AdminServiceTest extends ServiceTestBase {
         KylinConfig.setKylinConfigThreadLocal(KylinConfig.createInstanceFromUri(path));
         
         String expected = "kylin.web.link-streaming-guide=http://kylin.apache.org/\n" +
+                "kylin.web.dashboard-enabled=\n" +
                 "kylin.web.contact-mail=\n" +
                 "kylin.query.cache-enabled=true\n" +
                 "kylin.web.link-diagnostic=\n" +
@@ -54,6 +55,7 @@ public class AdminServiceTest extends ServiceTestBase {
                 "kylin.web.timezone=GMT+8\n" +
                 "kylin.server.external-acl-provider=\n" +
                 "kylin.storage.default=2\n" +
+                "kylin.cube.cubeplanner.enabled=false\n" +
                 "kylin.web.help=\n" +
                 "kylin.web.export-allow-other=true\n" +
                 "kylin.web.link-hadoop=\n" +
@@ -63,10 +65,10 @@ public class AdminServiceTest extends ServiceTestBase {
                 "kylin.env=QA\n" +
                 "kylin.web.hive-limit=20\n" +
                 "kylin.engine.default=2\n" +
-                "kylin.web.help.3=onboard|Cube Design Tutorial|\n" +
-                "kylin.web.help.2=tableau|Tableau Guide|\n" +
-                "kylin.web.help.1=odbc|ODBC Driver|\n" +
-                "kylin.web.help.0=start|Getting Started|\n" +
+                "kylin.web.help.3=onboard|Cube Design Tutorial|http://kylin.apache.org/docs21/howto/howto_optimize_cubes.html\n" +
+                "kylin.web.help.2=tableau|Tableau Guide|http://kylin.apache.org/docs21/tutorial/tableau_91.html\n" +
+                "kylin.web.help.1=odbc|ODBC Driver|http://kylin.apache.org/docs21/tutorial/odbc.html\n" +
+                "kylin.web.help.0=start|Getting Started|http://kylin.apache.org/docs21/tutorial/kylin_sample.html\n" +
                 "kylin.security.profile=testing\n";
         Assert.assertEquals(expected, adminService.getPublicConfig());
     }