-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
91 additions
and
8 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
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
77 changes: 77 additions & 0 deletions
77
eo-runtime/src/test/java/EOorg/EOeolang/EoClassesArePublicTest.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,77 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2016-2024 Objectionary.com | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included | ||
* in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
/* | ||
* @checkstyle PackageNameCheck (10 lines) | ||
*/ | ||
package EOorg.EOeolang; | ||
|
||
import com.google.common.reflect.ClassPath; | ||
import com.jcabi.log.Logger; | ||
import java.io.IOException; | ||
import java.lang.reflect.Modifier; | ||
import java.util.Set; | ||
import java.util.stream.Collectors; | ||
import org.eolang.Phi; | ||
import org.hamcrest.MatcherAssert; | ||
import org.hamcrest.Matchers; | ||
import org.junit.jupiter.api.Test; | ||
|
||
/** | ||
* Test that all EO.. classes are public. | ||
* @since 0.38 | ||
*/ | ||
@SuppressWarnings("JTCOP.RuleAllTestsHaveProductionClass") | ||
public class EoClassesArePublicTest { | ||
|
||
@Test | ||
@SuppressWarnings("JTCOP.RulePresentTense") | ||
public void arePublic() throws IOException { | ||
final Set<Class<?>> clazzes = ClassPath.from(ClassLoader.getSystemClassLoader()) | ||
.getAllClasses() | ||
.stream() | ||
.filter(clazz -> clazz.getPackageName().equals("EOorg.EOeolang")) | ||
.map(ClassPath.ClassInfo::load) | ||
.filter(EoClassesArePublicTest::isEoClass) | ||
.collect(Collectors.toSet()); | ||
assert !clazzes.isEmpty(); | ||
Logger.info(this.getClass(), "Found %d EO classes", clazzes.size()); | ||
MatcherAssert.assertThat( | ||
"All EO.. classes should be public", | ||
clazzes.stream() | ||
.filter(clazz -> !Modifier.isPublic(clazz.getModifiers())) | ||
.collect(Collectors.toList()), | ||
Matchers.empty() | ||
); | ||
} | ||
|
||
/** | ||
* Is EO.. class and is instance of {@link Phi}. | ||
* @param clazz Class. | ||
* @return True if is. | ||
*/ | ||
private static boolean isEoClass(final Class<?> clazz) { | ||
return clazz.getSimpleName().startsWith("EO") | ||
&& Phi.class.isAssignableFrom(clazz); | ||
} | ||
} |