Merge pull request #109 from P0nk/script-tests

Fix scripts containing non-ASCII characters, add tests
This commit is contained in:
Ponk
2022-08-19 21:19:09 +02:00
committed by GitHub
3 changed files with 112 additions and 2 deletions

View File

@@ -126,6 +126,11 @@
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
</dependency>
</dependencies>

View File

@@ -23,13 +23,13 @@ package scripting;
import client.Client;
import com.oracle.truffle.js.scriptengine.GraalJSScriptEngine;
import constants.string.CharsetConstants;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.script.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
@@ -57,7 +57,7 @@ public abstract class AbstractScriptManager {
enableScriptHostAccess(graalScriptEngine);
try (BufferedReader br = Files.newBufferedReader(scriptFile, CharsetConstants.CHARSET)) {
try (BufferedReader br = Files.newBufferedReader(scriptFile, StandardCharsets.UTF_8)) {
engine.eval(br);
} catch (final ScriptException | IOException t) {
log.warn("Exception during script eval for file: {}", path, t);

View File

@@ -0,0 +1,105 @@
package scripting;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
import javax.script.ScriptEngine;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import java.util.stream.Stream;
import static org.junit.jupiter.api.Assertions.assertNotNull;
public class ScriptEvaluationTest {
private AbstractScriptManager scriptManager = new AbstractScriptManager() {};
@BeforeAll
static void muteGraal() {
System.setProperty("polyglot.engine.WarnInterpreterOnly", "false");
}
private static List<String> eventScriptFilePaths() throws IOException {
return getScriptFilePaths("event");
}
private static List<String> itemScriptFilePaths() throws IOException {
return getScriptFilePaths("item");
}
private static List<String> npcScriptFilePaths() throws IOException {
return getScriptFilePaths("npc");
}
private static List<String> portalScriptFilePaths() throws IOException {
return getScriptFilePaths("portal");
}
private static List<String> questScriptFilePaths() throws IOException {
return getScriptFilePaths("quest");
}
private static List<String> reactorScriptFilePaths() throws IOException {
return getScriptFilePaths("reactor");
}
private static List<String> getScriptFilePaths(final String scriptsSubdirectory) throws IOException {
Path scriptDirectory = Path.of("scripts", scriptsSubdirectory);
try (Stream<Path> pathStream = Files.walk(scriptDirectory)) {
return pathStream
.filter(Files::isRegularFile)
.map(path -> "%s/%s".formatted(scriptsSubdirectory, path.getFileName().toString()))
.toList();
}
}
@ParameterizedTest
@MethodSource("eventScriptFilePaths")
void eventScriptShouldEvaluate(String eventScriptPath) {
ScriptEngine scriptEngine = scriptManager.getInvocableScriptEngine(eventScriptPath);
assertNotNull(scriptEngine);
}
@ParameterizedTest
@MethodSource("itemScriptFilePaths")
void itemScriptShouldEvaluate(String itemScriptPath) {
ScriptEngine scriptEngine = scriptManager.getInvocableScriptEngine(itemScriptPath);
assertNotNull(scriptEngine);
}
@ParameterizedTest
@MethodSource("npcScriptFilePaths")
void npcScriptShouldEvaluate(String npcScriptPath) {
ScriptEngine scriptEngine = scriptManager.getInvocableScriptEngine(npcScriptPath);
assertNotNull(scriptEngine);
}
@ParameterizedTest
@MethodSource("portalScriptFilePaths")
void portalScriptShouldEvaluate(String portalScriptPath) {
ScriptEngine scriptEngine = scriptManager.getInvocableScriptEngine(portalScriptPath);
assertNotNull(scriptEngine);
}
@ParameterizedTest
@MethodSource("questScriptFilePaths")
void questScriptShouldEvaluate(String questScriptPath) {
ScriptEngine scriptEngine = scriptManager.getInvocableScriptEngine(questScriptPath);
assertNotNull(scriptEngine);
}
@ParameterizedTest
@MethodSource("reactorScriptFilePaths")
void reactorScriptShouldEvaluate(String reactorScriptPath) {
ScriptEngine scriptEngine = scriptManager.getInvocableScriptEngine(reactorScriptPath);
assertNotNull(scriptEngine);
}
}