-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Judge the message whether null for metadata processor. (#9951)
- Loading branch information
1 parent
e736455
commit 9ebf5ae
Showing
9 changed files
with
419 additions
and
7 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
api/src/test/java/com/alibaba/nacos/api/ability/ClientAbilitiesTest.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,59 @@ | ||
/* | ||
* Copyright 1999-2021 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed 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.nacos.api.ability; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.databind.DeserializationFeature; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
public class ClientAbilitiesTest { | ||
|
||
private static ObjectMapper mapper; | ||
|
||
@BeforeClass | ||
public static void setUp() throws Exception { | ||
mapper = new ObjectMapper(); | ||
mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES); | ||
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); | ||
} | ||
|
||
@Test | ||
public void testSerialize() throws JsonProcessingException { | ||
ClientAbilities abilities = new ClientAbilities(); | ||
String json = mapper.writeValueAsString(abilities); | ||
assertTrue(json.contains("\"remoteAbility\":{")); | ||
assertTrue(json.contains("\"configAbility\":{")); | ||
assertTrue(json.contains("\"namingAbility\":{")); | ||
} | ||
|
||
@Test | ||
public void testDeserialize() throws JsonProcessingException { | ||
String json = "{\"remoteAbility\":{\"supportRemoteConnection\":false}," | ||
+ "\"configAbility\":{\"supportRemoteMetrics\":false},\"namingAbility\":{\"supportDeltaPush\":false," | ||
+ "\"supportRemoteMetric\":false}}"; | ||
ClientAbilities abilities = mapper.readValue(json, ClientAbilities.class); | ||
assertNotNull(abilities.getRemoteAbility()); | ||
assertNotNull(abilities.getNamingAbility()); | ||
assertNotNull(abilities.getConfigAbility()); | ||
} | ||
} |
83 changes: 83 additions & 0 deletions
83
api/src/test/java/com/alibaba/nacos/api/ability/ServerAbilitiesTest.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,83 @@ | ||
/* | ||
* Copyright 1999-2021 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed 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.nacos.api.ability; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.databind.DeserializationFeature; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import org.junit.Before; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotEquals; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
public class ServerAbilitiesTest { | ||
|
||
private static ObjectMapper mapper; | ||
|
||
private ServerAbilities serverAbilities; | ||
|
||
@BeforeClass | ||
public static void setUpBeforeClass() throws Exception { | ||
mapper = new ObjectMapper(); | ||
mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES); | ||
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); | ||
} | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
serverAbilities = new ServerAbilities(); | ||
} | ||
|
||
@Test | ||
public void testSerialize() throws JsonProcessingException { | ||
serverAbilities = new ServerAbilities(); | ||
String json = mapper.writeValueAsString(serverAbilities); | ||
assertTrue(json.contains("\"remoteAbility\":{")); | ||
assertTrue(json.contains("\"configAbility\":{")); | ||
assertTrue(json.contains("\"namingAbility\":{")); | ||
} | ||
|
||
@Test | ||
public void testDeserialize() throws JsonProcessingException { | ||
String json = "{\"remoteAbility\":{\"supportRemoteConnection\":false}," | ||
+ "\"configAbility\":{\"supportRemoteMetrics\":false},\"namingAbility\":{\"supportDeltaPush\":false," | ||
+ "\"supportRemoteMetric\":false}}"; | ||
ServerAbilities abilities = mapper.readValue(json, ServerAbilities.class); | ||
assertNotNull(abilities.getRemoteAbility()); | ||
assertNotNull(abilities.getNamingAbility()); | ||
assertNotNull(abilities.getConfigAbility()); | ||
} | ||
|
||
@Test | ||
public void testEqualsAndHashCode() { | ||
assertEquals(serverAbilities, serverAbilities); | ||
assertEquals(serverAbilities.hashCode(), serverAbilities.hashCode()); | ||
assertNotEquals(serverAbilities, null); | ||
assertNotEquals(serverAbilities, new ClientAbilities()); | ||
ServerAbilities test = new ServerAbilities(); | ||
assertEquals(serverAbilities, test); | ||
assertEquals(serverAbilities.hashCode(), test.hashCode()); | ||
test.setRemoteAbility(null); | ||
assertNotEquals(serverAbilities, test); | ||
assertNotEquals(serverAbilities.hashCode(), test.hashCode()); | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
api/src/test/java/com/alibaba/nacos/api/config/ability/ClientRemoteAbilityTest.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,55 @@ | ||
/* | ||
* Copyright 1999-2021 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed 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.nacos.api.config.ability; | ||
|
||
import com.alibaba.nacos.api.remote.ability.ClientRemoteAbility; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.databind.DeserializationFeature; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
public class ClientRemoteAbilityTest { | ||
|
||
private static ObjectMapper mapper; | ||
|
||
@BeforeClass | ||
public static void setUp() throws Exception { | ||
mapper = new ObjectMapper(); | ||
mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES); | ||
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); | ||
} | ||
|
||
@Test | ||
public void testSerialize() throws JsonProcessingException { | ||
ClientRemoteAbility abilities = new ClientRemoteAbility(); | ||
String json = mapper.writeValueAsString(abilities); | ||
assertEquals("{\"supportRemoteConnection\":false}", json); | ||
} | ||
|
||
@Test | ||
public void testDeserialize() throws JsonProcessingException { | ||
String json = "{\"supportRemoteConnection\":true}"; | ||
ClientRemoteAbility abilities = mapper.readValue(json, ClientRemoteAbility.class); | ||
assertTrue(abilities.isSupportRemoteConnection()); | ||
} | ||
|
||
} |
78 changes: 78 additions & 0 deletions
78
api/src/test/java/com/alibaba/nacos/api/config/ability/ServerRemoteAbilityTest.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,78 @@ | ||
/* | ||
* Copyright 1999-2021 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed 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.nacos.api.config.ability; | ||
|
||
import com.alibaba.nacos.api.ability.ClientAbilities; | ||
import com.alibaba.nacos.api.remote.ability.ServerRemoteAbility; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.databind.DeserializationFeature; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import org.junit.Before; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotEquals; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
public class ServerRemoteAbilityTest { | ||
|
||
private static ObjectMapper mapper; | ||
|
||
private ServerRemoteAbility serverAbilities; | ||
|
||
@BeforeClass | ||
public static void setUpBeforeClass() throws Exception { | ||
mapper = new ObjectMapper(); | ||
mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES); | ||
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); | ||
} | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
serverAbilities = new ServerRemoteAbility(); | ||
} | ||
|
||
@Test | ||
public void testSerialize() throws JsonProcessingException { | ||
serverAbilities = new ServerRemoteAbility(); | ||
String json = mapper.writeValueAsString(serverAbilities); | ||
assertEquals("{\"supportRemoteConnection\":false}", json); | ||
} | ||
|
||
@Test | ||
public void testDeserialize() throws JsonProcessingException { | ||
String json = "{\"supportRemoteConnection\":true}"; | ||
ServerRemoteAbility abilities = mapper.readValue(json, ServerRemoteAbility.class); | ||
assertTrue(abilities.isSupportRemoteConnection()); | ||
} | ||
|
||
@Test | ||
public void testEqualsAndHashCode() { | ||
assertEquals(serverAbilities, serverAbilities); | ||
assertEquals(serverAbilities.hashCode(), serverAbilities.hashCode()); | ||
assertNotEquals(serverAbilities, null); | ||
assertNotEquals(serverAbilities, new ClientAbilities()); | ||
ServerRemoteAbility test = new ServerRemoteAbility(); | ||
assertEquals(serverAbilities, test); | ||
assertEquals(serverAbilities.hashCode(), test.hashCode()); | ||
test.setSupportRemoteConnection(true); | ||
assertNotEquals(serverAbilities, test); | ||
assertNotEquals(serverAbilities.hashCode(), test.hashCode()); | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
api/src/test/java/com/alibaba/nacos/api/remote/ability/ClientRemoteAbilityTest.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,54 @@ | ||
/* | ||
* Copyright 1999-2021 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed 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.nacos.api.remote.ability; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.databind.DeserializationFeature; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import org.junit.BeforeClass; | ||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
public class ClientRemoteAbilityTest { | ||
|
||
private static ObjectMapper mapper; | ||
|
||
@BeforeClass | ||
public static void setUp() throws Exception { | ||
mapper = new ObjectMapper(); | ||
mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES); | ||
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); | ||
} | ||
|
||
@Test | ||
public void testSerialize() throws JsonProcessingException { | ||
ClientRemoteAbility abilities = new ClientRemoteAbility(); | ||
String json = mapper.writeValueAsString(abilities); | ||
assertEquals("{\"supportRemoteConnection\":false}", json); | ||
} | ||
|
||
@Test | ||
public void testDeserialize() throws JsonProcessingException { | ||
String json = "{\"supportRemoteConnection\":true}"; | ||
ClientRemoteAbility abilities = mapper.readValue(json, ClientRemoteAbility.class); | ||
assertTrue(abilities.isSupportRemoteConnection()); | ||
} | ||
|
||
} |
Oops, something went wrong.