1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Refactor: Refactor baselib; merge Array_ and Bool_

This commit is contained in:
gnosygnu
2021-12-05 16:25:05 -05:00
parent 197e0aa863
commit 48559edffe
1793 changed files with 177613 additions and 16991 deletions

View File

@@ -0,0 +1,48 @@
/*
XOWA: the XOWA Offline Wiki Application
Copyright (C) 2012-2021 gnosygnu@gmail.com
XOWA is licensed under the terms of the General Public License (GPL) Version 3,
or alternatively under the terms of the Apache License Version 2.0.
You may use XOWA according to either of these licenses as is most appropriate
for your project on a case-by-case basis.
The terms of each license can be found in the source code repository:
GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
*/
package gplx.objects.strings;
import gplx.tests.GfoTstr;
import org.junit.Test;
public class StringUtlTest {
private final StringUtlTstr fxt = new StringUtlTstr();
@Test public void Len() {
fxt.TestLen("" , 0);
fxt.TestLen("abc", 3);
}
@Test public void Format() {
fxt.TestFormat("empty fmt" , "" , "");
fxt.TestFormat("empty fmt w/ args" , "" , "", "a");
fxt.TestFormat("no args" , "a" , "a");
fxt.TestFormat("args = 1" , "a" , "{0}", "a");
fxt.TestFormat("args = n" , "a + b" , "{0} + {1}", "a", "b");
fxt.TestFormat("escape {" , "{" , "{{", 0);
fxt.TestFormat("escape }" , "}" , "}}", 0);
fxt.TestFormat("nested" , "{a0c}" , "{a{0}c}", 0);
fxt.TestFormat("nested; invalid" , "{a{b}c}" , "{a{b}c}", 0);
fxt.TestFormat("out of bounds" , "{1}" , "{1}", "a");
fxt.TestFormat("invalid arg" , "{a} {b}" , "{a} {b}", 0);
fxt.TestFormat("invalid and valid args" , "{a}0{b}1", "{a}{0}{b}{1}", 0, 1);
fxt.TestFormat("dangling" , "{0" , "{0", 0);
}
}
class StringUtlTstr {
public void TestLen(String v, int expd) {
GfoTstr.EqInt(expd, StringUtl.Len(v));
}
public void TestFormat(String note, String expd, String fmt, Object... ary) {
GfoTstr.EqStr(expd, StringUtl.Format(fmt, ary), note);
}
}

View File

@@ -0,0 +1,105 @@
/*
XOWA: the XOWA Offline Wiki Application
Copyright (C) 2012-2021 gnosygnu@gmail.com
XOWA is licensed under the terms of the General Public License (GPL) Version 3,
or alternatively under the terms of the Apache License Version 2.0.
You may use XOWA according to either of these licenses as is most appropriate
for your project on a case-by-case basis.
The terms of each license can be found in the source code repository:
GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
*/
package gplx.objects.strings.unicodes;
import gplx.objects.errs.ErrUtl;
import gplx.tests.GfoTstr;
import org.junit.Test;
public class UstringUtlTest {
private final UstringTstr fxt = new UstringTstr();
@Test public void Empty() {
fxt.Init("");
fxt.TestLen(0, 0);
}
@Test public void Blank() {
fxt.Init("");
fxt.TestLen(0, 0);
}
@Test public void Single() {
fxt.Init("Abc");
fxt.TestLen(3, 3);
fxt.TestGetCode(65, 98, 99);
fxt.TestMapCodeToChar(0, 1, 2, 3);
fxt.TestMapCharToCode(0, 1, 2, 3);
}
@Test public void Multi() {
fxt.Init("a¢€𤭢b");
fxt.TestLen(5, 6);
fxt.TestGetCode(97, 162, 8364, 150370, 98);
fxt.TestMapCodeToChar(0, 1, 2, 3, 5, 6);
fxt.TestMapCharToCode(0, 1, 2, 3, -1, 4, 5);
}
@Test public void IndexOf() {
fxt.TestIndexOf("abc", "b", 0, 1); // basic
fxt.TestIndexOf("ab", "bc", 0, -1); // out-of-bounds
fxt.TestIndexOf("a¢e", "¢", 0, 1); // check UTF-8 strings still match at byte-level
}
@Test public void Substring() {
fxt.TestSubstring("abc", 1, 2, "b"); // basic
fxt.TestSubstring("¢bc", 1, 2, "b"); // check UTF-8 strings don't get lopped off
}
}
class UstringTstr {
private Ustring under;
public void Init(String src) {
this.under = UstringUtl.NewCodepoints(src);
}
public void TestLen(int expdCodes, int expdChars) {
GfoTstr.EqInt(expdCodes, under.LenInData(), "codes");
GfoTstr.EqInt(expdChars, under.LenInChars(), "chars");
}
public void TestGetCode(int... expd) {
int actlLen = under.LenInData();
int[] actl = new int[actlLen];
for (int i = 0; i < actlLen; i++)
actl[i] = under.GetData(i);
GfoTstr.EqAry(expd, actl);
}
public void TestMapCodeToChar(int... expd) {
int actlLen = under.LenInData() + 1;
int[] actl = new int[actlLen];
for (int i = 0; i < actlLen; i++)
actl[i] = under.MapDataToChar(i);
GfoTstr.EqAry(expd, actl);
}
public void TestMapCharToCode(int... expd) {
int actlLen = under.LenInChars() + 1;
int[] actl = new int[actlLen];
for (int i = 0; i < actlLen; i++) {
int val = 0;
try {
val = under.MapCharToData(i);
}
catch (Exception exc) {
val = -1;
ErrUtl.Noop(exc);
}
actl[i] = val;
}
GfoTstr.EqAry(expd, actl);
}
public void TestIndexOf(String srcStr, String findStr, int bgn, int expd) {
Ustring src = UstringUtl.NewCodepoints(srcStr);
Ustring find = UstringUtl.NewCodepoints(findStr);
int actl = src.IndexOf(find, bgn);
GfoTstr.EqInt(expd, actl);
}
public void TestSubstring(String srcStr, int bgn, int end, String expd) {
Ustring src = UstringUtl.NewCodepoints(srcStr);
String actl = src.Substring(bgn, end);
GfoTstr.EqStr(expd, actl);
}
}