-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-643 - Make sure all kinds of enums are correctly identified.
This fixes #643.
- Loading branch information
1 parent
bfcadad
commit bab8271
Showing
8 changed files
with
125 additions
and
15 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
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
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
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
72 changes: 72 additions & 0 deletions
72
test/src/test/java/org/neo4j/ogm/support/ClassUtilsTest.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,72 @@ | ||
/* | ||
* Copyright (c) 2002-2019 "Neo4j," | ||
* Neo4j Sweden AB [http://neo4j.com] | ||
* | ||
* This file is part of Neo4j. | ||
* | ||
* 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 org.neo4j.ogm.support; | ||
|
||
import static org.assertj.core.api.Assertions.*; | ||
|
||
import org.junit.Test; | ||
|
||
/** | ||
* @author Michael J. Simons | ||
*/ | ||
public class ClassUtilsTest { | ||
|
||
enum YourFriendlyEnumMostPeopleUse { | ||
THING1, THING2 | ||
} | ||
|
||
enum YesEnumsCanBeMuchMore { | ||
THING1, THING2 { | ||
@Override | ||
public void something() { | ||
} | ||
}; | ||
|
||
@SuppressWarnings({ "unused" }) | ||
void something() { | ||
} | ||
} | ||
|
||
interface SomeInterface { | ||
} | ||
|
||
enum Singleton implements SomeInterface { | ||
THE_INSTANCE | ||
} | ||
|
||
@Test | ||
public void shouldWorkWithPlainEnum() { | ||
assertThat(ClassUtils.isEnum(YourFriendlyEnumMostPeopleUse.class)).isTrue(); | ||
assertThat(ClassUtils.isEnum(YourFriendlyEnumMostPeopleUse.THING1)).isTrue(); | ||
assertThat(ClassUtils.isEnum(YourFriendlyEnumMostPeopleUse.THING2)).isTrue(); | ||
} | ||
|
||
@Test | ||
public void shouldWorkWithExtendedEnum() { | ||
assertThat(ClassUtils.isEnum(YesEnumsCanBeMuchMore.class)).isTrue(); | ||
assertThat(ClassUtils.isEnum(YesEnumsCanBeMuchMore.THING1)).isTrue(); | ||
assertThat(ClassUtils.isEnum(YesEnumsCanBeMuchMore.THING2)).isTrue(); | ||
} | ||
|
||
@Test | ||
public void shouldWorkWithInterfaceEnum() { | ||
assertThat(ClassUtils.isEnum(Singleton.class)).isTrue(); | ||
assertThat(ClassUtils.isEnum(Singleton.THE_INSTANCE)).isTrue(); | ||
} | ||
} |