forked from apache/dubbo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unit test for com.alibaba.dubbo.common.status.support (apache#1796)
* unit test for Status * remove unnecessary 'static' * unit test for StatusUtils * unit test for LoadStatusChecker * reformat the code * unit test for MemoryStatusChecker
- Loading branch information
Showing
6 changed files
with
207 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
dubbo-common/src/test/java/com/alibaba/dubbo/common/status/StatusTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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()); | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...o-common/src/test/java/com/alibaba/dubbo/common/status/support/LoadStatusCheckerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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()); | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...common/src/test/java/com/alibaba/dubbo/common/status/support/MemoryStatusCheckerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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()); | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
dubbo-common/src/test/java/com/alibaba/dubbo/common/status/support/StatusUtilsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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()); | ||
} | ||
} |