This is an automated email from the ASF dual-hosted git repository.
kevinclair 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 5bcce9a50 [ISSUE #4198]Fix the TagRelationQuery.java equals method
(#4209)
5bcce9a50 is described below
commit 5bcce9a509a0d13ee9c854edbfc7126a0922981a
Author: hnxiaoyuan <[email protected]>
AuthorDate: Thu Nov 24 14:45:43 2022 +0800
[ISSUE #4198]Fix the TagRelationQuery.java equals method (#4209)
Co-authored-by: wangxiaoyuan <[email protected]>
---
.../shenyu/admin/model/query/TagRelationQuery.java | 2 +-
.../admin/model/query/TagRelationQueryTest.java | 47 ++++++++++++++++++++++
2 files changed, 48 insertions(+), 1 deletion(-)
diff --git
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/query/TagRelationQuery.java
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/query/TagRelationQuery.java
index 505027dd3..578836384 100644
---
a/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/query/TagRelationQuery.java
+++
b/shenyu-admin/src/main/java/org/apache/shenyu/admin/model/query/TagRelationQuery.java
@@ -71,7 +71,7 @@ public class TagRelationQuery {
if (this == o) {
return true;
}
- if (!(o instanceof TagQuery)) {
+ if (!(o instanceof TagRelationQuery)) {
return false;
}
TagRelationQuery that = (TagRelationQuery) o;
diff --git
a/shenyu-admin/src/test/java/org/apache/shenyu/admin/model/query/TagRelationQueryTest.java
b/shenyu-admin/src/test/java/org/apache/shenyu/admin/model/query/TagRelationQueryTest.java
new file mode 100644
index 000000000..bfedf787d
--- /dev/null
+++
b/shenyu-admin/src/test/java/org/apache/shenyu/admin/model/query/TagRelationQueryTest.java
@@ -0,0 +1,47 @@
+/*
+ * 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.admin.model.query;
+
+import org.apache.shenyu.admin.AbstractReflectGetterSetterTest;
+import org.junit.jupiter.api.Test;
+import java.util.HashSet;
+import java.util.Set;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.hasSize;
+
+/**
+ * Test case for TagRelationQuery.
+ */
+public class TagRelationQueryTest extends AbstractReflectGetterSetterTest {
+ @Override
+ protected Class<?> getTargetClass() {
+ return TagRelationQuery.class;
+ }
+
+ @Test
+ public void testEqualsAndHashCode() {
+ TagRelationQuery tagRelationQuery1 =
TagRelationQuery.builder().apiId("apiId").tagId("tagId").build();
+ TagRelationQuery tagRelationQuery2 =
TagRelationQuery.builder().apiId("apiId").tagId("tagId").build();
+
+ Set<TagRelationQuery> set = new HashSet<>();
+ set.add(tagRelationQuery1);
+ set.add(tagRelationQuery2);
+
+ assertThat(set, hasSize(1));
+ }
+}