Add unit test for multi-release scheduler

This commit is contained in:
games647
2024-05-02 10:57:10 +02:00
parent 3925b66511
commit 1889c2605e
4 changed files with 87 additions and 28 deletions

View File

@ -60,7 +60,7 @@ Possible values: `Premium`, `Cracked`, `Unknown`
## Requirements
* Java 8 supported, but Java 21 recommended for improved threading
* Java 8 supported, but Java 21+ recommended for improved threading
* Server software in offlinemode:
* Spigot (or a fork e.g. Paper) 1.8.8+
* Protocol plugin:

View File

@ -77,14 +77,6 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
@ -98,11 +90,10 @@
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>jdk9</id>
<id>jdk21</id>
<goals>
<goal>compile</goal>
</goals>
@ -116,22 +107,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<configuration>
<archive>
<manifestEntries>
<Multi-Release>true</Multi-Release>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>

View File

@ -0,0 +1,70 @@
/*
* SPDX-License-Identifier: MIT
*
* The MIT License (MIT)
*
* Copyright (c) 2015-2023 games647 and contributors
*
* 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 NONINFRINGEMENT. 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.
*/
package com.github.games647.fastlogin.core;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledForJreRange;
import org.junit.jupiter.api.condition.EnabledForJreRange;
import org.junit.jupiter.api.condition.JRE;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.concurrent.Executors;
import java.util.concurrent.atomic.AtomicBoolean;
class AsyncSchedulerTest {
@Test
@DisabledForJreRange(min = JRE.JAVA_21)
void legacyScheduler() {
Logger logger = LoggerFactory.getLogger(AsyncSchedulerTest.class);
AsyncScheduler scheduler = new AsyncScheduler(logger, Executors.newCachedThreadPool());
AtomicBoolean virtual = new AtomicBoolean(false);
scheduler.runAsync(() -> setVirtual(virtual)).join();
Assertions.assertFalse(virtual.get());
}
@Test
@EnabledForJreRange(min = JRE.JAVA_21)
void greenThread() {
Logger logger = LoggerFactory.getLogger(AsyncSchedulerTest.class);
AsyncScheduler scheduler = new AsyncScheduler(logger, Executors.newCachedThreadPool());
AtomicBoolean virtual = new AtomicBoolean(false);
scheduler.runAsync(() -> setVirtual(virtual)).join();
Assertions.assertTrue(virtual.get());
}
private static void setVirtual(AtomicBoolean virtual) {
if (Thread.currentThread().isVirtual()) {
virtual.set(true);
}
}
}

16
pom.xml
View File

@ -157,11 +157,25 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<!-- Work-around to make multi-release classes discoverable
https://issues.apache.org/jira/browse/SUREFIRE-1731 -->
<classesDirectory>
${project.build.directory}/classes/META-INF/versions/21
</classesDirectory>
<additionalClasspathElements>
<additionalClasspathElement>
${project.build.outputDirectory}
</additionalClasspathElement>
</additionalClasspathElements>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.1</version>
<!-- Explicitly enable multi-release for the scheduler,
because detection from class shading doesn't work -->
<executions>
<execution>
<id>default-jar</id>