This is an automated email from the ASF dual-hosted git repository.
zhangzicheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new 953f4de928 Add test case for `ShenyuClientIllegalArgumentException`
(#5408)
953f4de928 is described below
commit 953f4de928e5138c4a224c0b5f13061f74477abb
Author: Divyansh200102 <[email protected]>
AuthorDate: Mon Jan 22 14:23:51 2024 +0530
Add test case for `ShenyuClientIllegalArgumentException` (#5408)
* Create ShenyuClientIllegalArgumentExceptionTest.java
* Update ShenyuClientIllegalArgumentExceptionTest.java
* Update ShenyuClientIllegalArgumentExceptionTest.java
---------
Co-authored-by: dragon-zhang <[email protected]>
---
.../ShenyuClientIllegalArgumentExceptionTest.java | 55 ++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git
a/shenyu-client/shenyu-client-core/src/test/java/org/apache/shenyu/client/core/exception/ShenyuClientIllegalArgumentExceptionTest.java
b/shenyu-client/shenyu-client-core/src/test/java/org/apache/shenyu/client/core/exception/ShenyuClientIllegalArgumentExceptionTest.java
new file mode 100644
index 0000000000..c8b5f80246
--- /dev/null
+++
b/shenyu-client/shenyu-client-core/src/test/java/org/apache/shenyu/client/core/exception/ShenyuClientIllegalArgumentExceptionTest.java
@@ -0,0 +1,55 @@
+/*
+ * 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 org.apache.shenyu.client.core.exception;
+
+import static org.junit.Assert.assertThrows;
+
+import org.junit.Test;
+
+public class ShenyuClientIllegalArgumentExceptionTest {
+
+ @Test
+ public void testExceptionThrownWithInvalidInput() {
+ String invalidInput = "some invalid input";
+ assertThrows(ShenyuClientIllegalArgumentException.class, () -> {
+ throw new ShenyuClientIllegalArgumentException(invalidInput);
+ });
+ }
+
+ @Test
+ public void testExceptionMessageContainsInvalidInput() {
+ String expectedMessage = "Invalid input: some error message";
+ assertThrows(ShenyuClientIllegalArgumentException.class, () -> {
+ throw new ShenyuClientIllegalArgumentException(expectedMessage);
+ });
+ }
+
+ @Test
+ public void testExceptionThrownWhenArgumentNull() {
+ assertThrows(ShenyuClientIllegalArgumentException.class, () -> {
+ throw new ShenyuClientIllegalArgumentException("Argument cannot be
null");
+ });
+ }
+
+ @Test
+ public void testExceptionThrownWhenValueOutOfRange() {
+ assertThrows(ShenyuClientIllegalArgumentException.class, () -> {
+ throw new ShenyuClientIllegalArgumentException("Value must be
between 1 and 10");
+ });
+ }
+}