This commit is contained in:
Immanuel Alvaro Bhirawa 2023-04-20 12:10:46 +10:00
commit 53fe954a57
3 changed files with 54 additions and 8 deletions

View File

@ -9,8 +9,10 @@ stages:
before_script:
- export PATH_TO_FX=/usr/share/openjfx/lib
- export JAVAFX_OPTIONS="--module-path $PATH_TO_FX --add-modules javafx.controls,javafx.fxml,javafx.media"
- export CP=src:/ass2/*:/shared/junit-platform-console-standalone-1.7.0.jar:$PATH_TO_FX/*
- export JUNIT="java $JAVAFX_OPTIONS -jar /shared/junit-platform-console-standalone-1.7.0.jar --class-path src:/ass2/comp1110-ass2.jar --disable-banner"
- export CP=src:src-dev:/ass2/*:/shared/junit-platform-console-standalone-1.7.0.jar:$PATH_TO_FX/*
- export JUNIT="java $JAVAFX_OPTIONS -jar /shared/junit-platform-console-standalone-1.7.0.jar --class-path src:src-dev:/ass2/comp1110-ass2.jar --disable-banner --reports-dir=junit-reports"
- export SRC_FILES=$(find src/ -type f -name '*.java')
- export SRC_DEV_FILES=$(if [ -d "src-dev/" ]; then find src-dev/ -type f -name '*.java'; fi)
checksum:
tags:
@ -38,11 +40,11 @@ build:
- comp1110
stage: build
script:
- javac -encoding utf-8 $JAVAFX_OPTIONS -cp $CP src/comp1110/ass2/*.java src/comp1110/ass2/*/*.java
- javac -encoding utf-8 $JAVAFX_OPTIONS -cp $CP $SRC_FILES $SRC_DEV_FILES
artifacts:
paths:
- src/comp1110/ass2/*.class
- src/comp1110/ass2/*/*.class
- src/
- src-dev/
task3:
tags:
@ -51,6 +53,9 @@ task3:
script:
- $JUNIT -c=comp1110.ass2.IsStateStringWellFormedTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task4:
tags:
@ -59,6 +64,9 @@ task4:
script:
- $JUNIT -c=comp1110.ass2.IsMoveStringWellFormedTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task6:
tags:
@ -67,6 +75,9 @@ task6:
script:
- $JUNIT -c=comp1110.ass2.DistributeResourcesTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task7:
tags:
@ -75,6 +86,9 @@ task7:
script:
- $JUNIT -c=comp1110.ass2.IsMoveValidTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task8:
tags:
@ -83,6 +97,9 @@ task8:
script:
- $JUNIT -c=comp1110.ass2.GenerateAllValidMovesTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task9:
tags:
@ -91,6 +108,9 @@ task9:
script:
- $JUNIT -c=comp1110.ass2.IsPhaseOverTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task10:
tags:
@ -99,6 +119,9 @@ task10:
script:
- $JUNIT -c=comp1110.ass2.PlacePieceTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task11:
tags:
@ -107,6 +130,9 @@ task11:
script:
- $JUNIT -c=comp1110.ass2.CalculateIslandLinksScoreTest -c=comp1110.ass2.CalculateIslandMajoritiesScoreTest -c=comp1110.ass2.CalculateResourcesAndStatuettesScoreTest -c=comp1110.ass2.CalculateTotalIslandsScoreTest -c=comp1110.ass2.CalculateScoresTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task12:
tags:
@ -115,6 +141,9 @@ task12:
script:
- $JUNIT -c=comp1110.ass2.EndPhaseTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task13:
tags:
@ -123,6 +152,9 @@ task13:
script:
- $JUNIT -c=comp1110.ass2.ApplyMoveTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task16:
tags:
@ -131,6 +163,9 @@ task16:
script:
- $JUNIT -c=comp1110.ass2.GenerateAIMoveTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
task17:
tags:
@ -139,6 +174,9 @@ task17:
script:
- $JUNIT -c=comp1110.ass2.VariableBoardSizeTest -c=comp1110.ass2.ThreeFourPlayerTest -c=comp1110.ass2.VariableSizeThreeFourPlayerTest
allow_failure: true
artifacts:
reports:
junit: junit-reports/TEST-junit-jupiter.xml
## Local Variables:
## mode: yaml

View File

@ -7,7 +7,15 @@
<NATIVE>
<root url="file://$PATH_TO_FX$" />
</NATIVE>
<SOURCES />
<SOURCES>
<root url="jar://$PATH_TO_FX$/../src.zip!/javafx.base" />
<root url="jar://$PATH_TO_FX$/../src.zip!/javafx.controls" />
<root url="jar://$PATH_TO_FX$/../src.zip!/javafx.fxml" />
<root url="jar://$PATH_TO_FX$/../src.zip!/javafx.graphics" />
<root url="jar://$PATH_TO_FX$/../src.zip!/javafx.media" />
<root url="jar://$PATH_TO_FX$/../src.zip!/javafx.swing" />
<root url="jar://$PATH_TO_FX$/../src.zip!/javafx.web" />
</SOURCES>
<jarDirectory url="file://$PATH_TO_FX$" recursive="false" />
</library>
</component>

View File

@ -133,14 +133,14 @@ public class StringComparator {
private void checkGeneralString(List<String> statementsA, List<String> statementsB, List<String> errors) {
// Check for the number of statements
if (checks.get(ResultType.General).contains("num_statements") &&
if (checks.get(ResultType.General).contains("numStatements") &&
statementsA.size() != statementsB.size())
{
errors.add("Strings contain different numbers of statements");
}
// Check if there are any unrecognised statement IDs
if (checks.get(ResultType.General).contains("unrecognised_statements"))
if (checks.get(ResultType.General).contains("unrecognisedStatements"))
{
List<String> unrecognised = statementsB
.stream()