Skip to content

Commit

Permalink
[ISSUE alibaba#11718] Fix ErrorCode have the same code (alibaba#11747)
Browse files Browse the repository at this point in the history
* [ISSUE alibaba#11718] Fix ErrorCode have the same code

* Fix code style.
  • Loading branch information
easynet-cn committed Feb 20, 2024
1 parent 7d085a8 commit 1d3f1bb
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public enum ErrorCode {
/**
* node down failure.
*/
NODE_DOWN_FAILURE(23001, "node down failure"),
NODE_DOWN_FAILURE(23002, "node down failure"),

/**
* server error.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
* 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.model.v2;

import static org.junit.Assert.assertEquals;

import java.util.HashSet;
import java.util.Set;

import org.junit.Test;

public class ErrorCodeTest {
@Test
public void testCodeNotSame() {
Class<ErrorCode> errorCodeClass = ErrorCode.class;

ErrorCode[] errorCodes = errorCodeClass.getEnumConstants();
Set<Integer> codeSet = new HashSet<Integer>(errorCodes.length);

for (ErrorCode errorCode : errorCodes) {
codeSet.add(errorCode.getCode());
}

assertEquals(errorCodes.length, codeSet.size());
}
}

0 comments on commit 1d3f1bb

Please sign in to comment.