-
-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more flexible static parse method (#6306)
* Add more flexible static parse method * Remove extraneous new line * Add SkriptPattern overload --------- Co-authored-by: sovdee <[email protected]>
- Loading branch information
1 parent
dfb5ffd
commit e454a10
Showing
2 changed files
with
110 additions
and
0 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
90 changes: 90 additions & 0 deletions
90
src/test/java/org/skriptlang/skript/test/tests/parsing/StaticParseTest.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,90 @@ | ||
/** | ||
* This file is part of Skript. | ||
* | ||
* Skript is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Skript is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Skript. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright Peter Güttinger, SkriptLang team and contributors | ||
*/ | ||
package org.skriptlang.skript.test.tests.parsing; | ||
|
||
import ch.njol.skript.lang.ParseContext; | ||
import ch.njol.skript.lang.SkriptParser; | ||
import ch.njol.skript.lang.SkriptParser.ParseResult; | ||
import ch.njol.skript.patterns.PatternCompiler; | ||
import ch.njol.skript.patterns.SkriptPattern; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import java.util.stream.Stream; | ||
|
||
public class StaticParseTest { | ||
|
||
private Stream<ParseResult> computeParseResults(String text, String pattern) { | ||
ParseResult stringParseResult = SkriptParser.parse(text, pattern, SkriptParser.ALL_FLAGS, ParseContext.COMMAND); | ||
SkriptPattern compiledPattern = PatternCompiler.compile(pattern); | ||
ParseResult compiledParseResult = SkriptParser.parse(text, compiledPattern, SkriptParser.ALL_FLAGS, ParseContext.COMMAND); | ||
return Stream.of(stringParseResult, compiledParseResult); | ||
} | ||
|
||
@Test | ||
public void testMultipleSingleExpressions() { | ||
computeParseResults("1 test 2 test 3", "%number% test %number% test %number%").forEach(result -> { | ||
Assert.assertNotNull("parse method returned null", result); | ||
Assert.assertEquals("parse method returned wrong number of expressions", 3, result.exprs.length); | ||
Assert.assertEquals("parse method returned wrong first expression", 1L, result.exprs[0].getSingle(null)); | ||
Assert.assertEquals("parse method returned wrong second expression", 2L, result.exprs[1].getSingle(null)); | ||
Assert.assertEquals("parse method returned wrong first expression", 3L, result.exprs[2].getSingle(null)); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testMultipleMultipleExpressions() { | ||
computeParseResults("1, 2 and 3 test 4, 5 and 6", "%numbers% test %numbers%").forEach(result -> { | ||
Assert.assertNotNull("parse method returned null", result); | ||
Assert.assertEquals("parse method returned wrong number of expressions", 2, result.exprs.length); | ||
Assert.assertArrayEquals("parse method returned wrong first expression", new Long[]{1L,2L,3L}, result.exprs[0].getArray(null)); | ||
Assert.assertArrayEquals("parse method returned wrong second expression", new Long[]{4L,5L,6L}, result.exprs[1].getArray(null)); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testMultipleMixedExpressions() { | ||
computeParseResults("1 test 2, 3 and 4", "%number% test %numbers%").forEach(result -> { | ||
Assert.assertNotNull("parse method returned null", result); | ||
Assert.assertEquals("parse method returned wrong number of expressions", 2, result.exprs.length); | ||
Assert.assertEquals("parse method returned wrong first expression", 1L, result.exprs[0].getSingle(null)); | ||
Assert.assertArrayEquals("parse method returned wrong second expression", new Long[]{2L,3L,4L}, result.exprs[1].getArray(null)); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testMultipleExpression() { | ||
computeParseResults("1, 2 and 3", "%numbers%").forEach(result -> { | ||
Assert.assertNotNull("parse method returned null", result); | ||
Assert.assertEquals("parse method returned wrong number of expressions", 1, result.exprs.length); | ||
Assert.assertArrayEquals("parse method returned wrong first expression", new Long[]{1L,2L,3L}, result.exprs[0].getArray(null)); | ||
}); | ||
|
||
} | ||
|
||
@Test | ||
public void testSingleExpression() { | ||
computeParseResults("1", "%number%").forEach(result -> { | ||
Assert.assertNotNull("parse method returned null", result); | ||
Assert.assertEquals("parse method returned wrong number of expressions", 1, result.exprs.length); | ||
Assert.assertEquals("parse method returned wrong first expression", 1L, result.exprs[0].getSingle(null)); | ||
}); | ||
} | ||
|
||
} |