You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by il...@apache.org on 2018/05/15 01:59:18 UTC

[incubator-dubbo] branch master updated: unit test for com.alibaba.dubbo.common.status.support (#1796)

This is an automated email from the ASF dual-hosted git repository.

iluo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f3fcab  unit test for com.alibaba.dubbo.common.status.support (#1796)
6f3fcab is described below

commit 6f3fcabae5fc53bad69b65a20687d77e58ab0ee1
Author: Ian Luo <ia...@gmail.com>
AuthorDate: Tue May 15 09:59:15 2018 +0800

    unit test for com.alibaba.dubbo.common.status.support (#1796)
    
    * unit test for Status
    
    * remove unnecessary 'static'
    
    * unit test for StatusUtils
    
    * unit test for LoadStatusChecker
    
    * reformat the code
    
    * unit test for MemoryStatusChecker
---
 .../com/alibaba/dubbo/common/status/Status.java    |  2 +-
 .../common/status/support/LoadStatusChecker.java   |  3 +-
 .../alibaba/dubbo/common/status/StatusTest.java    | 52 ++++++++++++++++
 .../status/support/LoadStatusCheckerTest.java      | 39 ++++++++++++
 .../status/support/MemoryStatusCheckerTest.java    | 42 +++++++++++++
 .../common/status/support/StatusUtilsTest.java     | 71 ++++++++++++++++++++++
 6 files changed, 207 insertions(+), 2 deletions(-)

diff --git a/dubbo-common/src/main/java/com/alibaba/dubbo/common/status/Status.java b/dubbo-common/src/main/java/com/alibaba/dubbo/common/status/Status.java
index 940e17f..ad598c9 100644
--- a/dubbo-common/src/main/java/com/alibaba/dubbo/common/status/Status.java
+++ b/dubbo-common/src/main/java/com/alibaba/dubbo/common/status/Status.java
@@ -54,7 +54,7 @@ public class Status {
     /**
      * Level
      */
-    public static enum Level {
+    public enum Level {
         /**
          * OK
          */
diff --git a/dubbo-common/src/main/java/com/alibaba/dubbo/common/status/support/LoadStatusChecker.java b/dubbo-common/src/main/java/com/alibaba/dubbo/common/status/support/LoadStatusChecker.java
index 018bce7..20715c5 100644
--- a/dubbo-common/src/main/java/com/alibaba/dubbo/common/status/support/LoadStatusChecker.java
+++ b/dubbo-common/src/main/java/com/alibaba/dubbo/common/status/support/LoadStatusChecker.java
@@ -41,7 +41,8 @@ public class LoadStatusChecker implements StatusChecker {
             load = -1;
         }
         int cpu = operatingSystemMXBean.getAvailableProcessors();
-        return new Status(load < 0 ? Status.Level.UNKNOWN : (load < cpu ? Status.Level.OK : Status.Level.WARN), (load < 0 ? "" : "load:" + load + ",") + "cpu:" + cpu);
+        return new Status(load < 0 ? Status.Level.UNKNOWN : (load < cpu ? Status.Level.OK : Status.Level.WARN),
+                (load < 0 ? "" : "load:" + load + ",") + "cpu:" + cpu);
     }
 
 }
diff --git a/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/StatusTest.java b/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/StatusTest.java
new file mode 100644
index 0000000..bc8e531
--- /dev/null
+++ b/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/StatusTest.java
@@ -0,0 +1,52 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.alibaba.dubbo.common.status;
+
+import org.junit.Test;
+
+import static com.alibaba.dubbo.common.status.Status.Level.OK;
+import static org.hamcrest.Matchers.equalTo;
+import static org.hamcrest.Matchers.is;
+import static org.hamcrest.Matchers.isEmptyOrNullString;
+import static org.junit.Assert.assertThat;
+
+public class StatusTest {
+    @Test
+    public void testConstructor1() throws Exception {
+        Status status = new Status(OK, "message", "description");
+        assertThat(status.getLevel(), is(OK));
+        assertThat(status.getMessage(), equalTo("message"));
+        assertThat(status.getDescription(), equalTo("description"));
+    }
+
+    @Test
+    public void testConstructor2() throws Exception {
+        Status status = new Status(OK, "message");
+        assertThat(status.getLevel(), is(OK));
+        assertThat(status.getMessage(), equalTo("message"));
+        assertThat(status.getDescription(), isEmptyOrNullString());
+    }
+
+    @Test
+    public void testConstructor3() throws Exception {
+        Status status = new Status(OK);
+        assertThat(status.getLevel(), is(OK));
+        assertThat(status.getMessage(), isEmptyOrNullString());
+        assertThat(status.getDescription(), isEmptyOrNullString());
+    }
+}
diff --git a/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/LoadStatusCheckerTest.java b/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/LoadStatusCheckerTest.java
new file mode 100644
index 0000000..121da3b
--- /dev/null
+++ b/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/LoadStatusCheckerTest.java
@@ -0,0 +1,39 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.alibaba.dubbo.common.status.support;
+
+import com.alibaba.dubbo.common.logger.Logger;
+import com.alibaba.dubbo.common.logger.LoggerFactory;
+import com.alibaba.dubbo.common.status.Status;
+import org.junit.Test;
+
+import static org.hamcrest.Matchers.notNullValue;
+import static org.junit.Assert.assertThat;
+
+public class LoadStatusCheckerTest {
+    private static Logger logger = LoggerFactory.getLogger(LoadStatusCheckerTest.class);
+
+    @Test
+    public void test() throws Exception {
+        LoadStatusChecker statusChecker = new LoadStatusChecker();
+        Status status = statusChecker.check();
+        assertThat(status, notNullValue());
+        logger.info("load status level: " + status.getLevel());
+        logger.info("load status message: " + status.getMessage());
+    }
+}
diff --git a/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/MemoryStatusCheckerTest.java b/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/MemoryStatusCheckerTest.java
new file mode 100644
index 0000000..eb05b5c
--- /dev/null
+++ b/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/MemoryStatusCheckerTest.java
@@ -0,0 +1,42 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.alibaba.dubbo.common.status.support;
+
+import com.alibaba.dubbo.common.logger.Logger;
+import com.alibaba.dubbo.common.logger.LoggerFactory;
+import com.alibaba.dubbo.common.status.Status;
+import org.junit.Test;
+
+import static com.alibaba.dubbo.common.status.Status.Level.OK;
+import static com.alibaba.dubbo.common.status.Status.Level.WARN;
+import static org.hamcrest.CoreMatchers.anyOf;
+import static org.hamcrest.Matchers.is;
+import static org.junit.Assert.assertThat;
+
+public class MemoryStatusCheckerTest {
+    private static final Logger logger = LoggerFactory.getLogger(MemoryStatusCheckerTest.class);
+
+    @Test
+    public void test() throws Exception {
+        MemoryStatusChecker statusChecker = new MemoryStatusChecker();
+        Status status = statusChecker.check();
+        assertThat(status.getLevel(), anyOf(is(OK), is(WARN)));
+        logger.info("memory status level: " + status.getLevel());
+        logger.info("memory status message: " + status.getMessage());
+    }
+}
diff --git a/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/StatusUtilsTest.java b/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/StatusUtilsTest.java
new file mode 100644
index 0000000..83f5e45
--- /dev/null
+++ b/dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/StatusUtilsTest.java
@@ -0,0 +1,71 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.alibaba.dubbo.common.status.support;
+
+import com.alibaba.dubbo.common.status.Status;
+import org.junit.Test;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import static org.hamcrest.Matchers.containsString;
+import static org.hamcrest.Matchers.is;
+import static org.hamcrest.Matchers.isEmptyOrNullString;
+import static org.hamcrest.Matchers.not;
+import static org.junit.Assert.assertThat;
+
+public class StatusUtilsTest {
+    @Test
+    public void testGetSummaryStatus1() throws Exception {
+        Status status1 = new Status(Status.Level.ERROR);
+        Status status2 = new Status(Status.Level.WARN);
+        Status status3 = new Status(Status.Level.OK);
+        Map<String, Status> statuses = new HashMap<String, Status>();
+        statuses.put("status1", status1);
+        statuses.put("status2", status2);
+        statuses.put("status3", status3);
+        Status status = StatusUtils.getSummaryStatus(statuses);
+        assertThat(status.getLevel(), is(Status.Level.ERROR));
+        assertThat(status.getMessage(), containsString("status1"));
+        assertThat(status.getMessage(), containsString("status2"));
+        assertThat(status.getMessage(), not(containsString("status3")));
+    }
+
+    @Test
+    public void testGetSummaryStatus2() throws Exception {
+        Status status1 = new Status(Status.Level.WARN);
+        Status status2 = new Status(Status.Level.OK);
+        Map<String, Status> statuses = new HashMap<String, Status>();
+        statuses.put("status1", status1);
+        statuses.put("status2", status2);
+        Status status = StatusUtils.getSummaryStatus(statuses);
+        assertThat(status.getLevel(), is(Status.Level.WARN));
+        assertThat(status.getMessage(), containsString("status1"));
+        assertThat(status.getMessage(), not(containsString("status2")));
+    }
+
+    @Test
+    public void testGetSummaryStatus3() throws Exception {
+        Status status1 = new Status(Status.Level.OK);
+        Map<String, Status> statuses = new HashMap<String, Status>();
+        statuses.put("status1", status1);
+        Status status = StatusUtils.getSummaryStatus(statuses);
+        assertThat(status.getLevel(), is(Status.Level.OK));
+        assertThat(status.getMessage(), isEmptyOrNullString());
+    }
+}

-- 
To stop receiving notification emails like this one, please contact
iluo@apache.org.