-
Notifications
You must be signed in to change notification settings - Fork 26.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* fix #6306. support TypeBuilder sort * fix #6306. support TypeBuilder sort * fix #6306. support TypeBuilder sort * remove unused import * add license for test file
- Loading branch information
Showing
6 changed files
with
128 additions
and
7 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
43 changes: 43 additions & 0 deletions
43
...bbo-metadata-api/src/test/java/org/apache/dubbo/metadata/definition/Test3TypeBuilder.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,43 @@ | ||
/* | ||
* 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.dubbo.metadata.definition; | ||
|
||
import org.apache.dubbo.metadata.definition.builder.TypeBuilder; | ||
import org.apache.dubbo.metadata.definition.model.TypeDefinition; | ||
|
||
import java.lang.reflect.Type; | ||
import java.util.Map; | ||
|
||
/** | ||
* test for sort | ||
*/ | ||
public class Test3TypeBuilder implements TypeBuilder { | ||
// it is smaller than the implements of TypeBuilder | ||
public int getPriority(){ | ||
return 10; | ||
} | ||
|
||
@Override | ||
public boolean accept(Type type, Class<?> clazz) { | ||
return false; | ||
} | ||
|
||
@Override | ||
public TypeDefinition build(Type type, Class<?> clazz, Map<Class<?>, TypeDefinition> typeCache) { | ||
return null; | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...ubbo-metadata-api/src/test/java/org/apache/dubbo/metadata/definition/TestTypeBuilder.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,43 @@ | ||
/* | ||
* 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.dubbo.metadata.definition; | ||
|
||
import org.apache.dubbo.metadata.definition.builder.TypeBuilder; | ||
import org.apache.dubbo.metadata.definition.model.TypeDefinition; | ||
|
||
import java.lang.reflect.Type; | ||
import java.util.Map; | ||
|
||
/** | ||
* test for sort | ||
*/ | ||
public class TestTypeBuilder implements TypeBuilder { | ||
// it is smaller than the implements of TypeBuilder | ||
public int getPriority(){ | ||
return -3; | ||
} | ||
|
||
@Override | ||
public boolean accept(Type type, Class<?> clazz) { | ||
return false; | ||
} | ||
|
||
@Override | ||
public TypeDefinition build(Type type, Class<?> clazz, Map<Class<?>, TypeDefinition> typeCache) { | ||
return null; | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...ata-api/src/test/java/org/apache/dubbo/metadata/definition/TypeDefinitionBuilderTest.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,34 @@ | ||
/* | ||
* 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.dubbo.metadata.definition; | ||
|
||
import org.apache.dubbo.metadata.definition.builder.TypeBuilder; | ||
|
||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
public class TypeDefinitionBuilderTest { | ||
|
||
@Test | ||
public void testSortTypeBuilder(){ | ||
TypeBuilder tb = TypeDefinitionBuilder.BUILDERS.get(0); | ||
Assertions.assertTrue(tb instanceof TestTypeBuilder); | ||
|
||
tb = TypeDefinitionBuilder.BUILDERS.get(TypeDefinitionBuilder.BUILDERS.size()-1); | ||
Assertions.assertTrue(tb instanceof Test3TypeBuilder); | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
...esources/META-INF/dubbo/internal/org.apache.dubbo.metadata.definition.builder.TypeBuilder
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,2 @@ | ||
test=org.apache.dubbo.metadata.definition.TestTypeBuilder | ||
test3=org.apache.dubbo.metadata.definition.Test3TypeBuilder |