1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2025-06-13 12:54:14 +00:00

Dev: Fix failing tests after project rebuild [#826]

This commit is contained in:
gnosygnu 2020-12-14 08:53:28 -05:00
parent 4a7bd19056
commit aeef520228
6 changed files with 92 additions and 91 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
*.iml *.iml
**/.idea/**

View File

@ -24,7 +24,9 @@ public class Io_url__tst {
class Io_url__fxt { class Io_url__fxt {
public void Clear() {Io_mgr.Instance.InitEngine_mem();} public void Clear() {Io_mgr.Instance.InitEngine_mem();}
public void Test__New__http_or_null(boolean os_is_wnt, String raw, String expd) { public void Test__New__http_or_null(boolean os_is_wnt, String raw, String expd) {
int curTid = Op_sys.Cur().Tid();
Op_sys.Cur_(os_is_wnt ? Op_sys.Tid_wnt : Op_sys.Tid_lnx); Op_sys.Cur_(os_is_wnt ? Op_sys.Tid_wnt : Op_sys.Tid_lnx);
Gftest.Eq__obj_or_null(expd, Io_url_.New__http_or_null(raw)); Gftest.Eq__obj_or_null(expd, Io_url_.New__http_or_null(raw));
Op_sys.Cur_(curTid);
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
XOWA: the XOWA Offline Wiki Application XOWA: the XOWA Offline Wiki Application
Copyright (C) 2012-2017 gnosygnu@gmail.com Copyright (C) 2012-2020 gnosygnu@gmail.com
XOWA is licensed under the terms of the General Public License (GPL) Version 3, 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. or alternatively under the terms of the Apache License Version 2.0.
@ -13,15 +13,20 @@ 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 GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
*/ */
package gplx.xowa.htmls.core.htmls.tidy; import gplx.*; import gplx.xowa.*; import gplx.xowa.htmls.*; import gplx.xowa.htmls.core.*; import gplx.xowa.htmls.core.htmls.*; package gplx.xowa.htmls.core.htmls.tidy;
import gplx.core.envs.*;
import gplx.core.envs.Op_sys;
import org.junit.Before;
import org.junit.Test;
import org.w3c.tidy.Tidy;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
import org.w3c.tidy.Tidy;
import org.junit.*;
public class Xoh_tidy_wkr_jtidy_tst { public class Xoh_tidy_wkr_jtidy_tst {
@Before public void init() {fxt.Clear();} private Jtidy_fxt fxt = new Jtidy_fxt(); private Jtidy_fxt fxt = new Jtidy_fxt();
@Test public void Image_full() { @Before public void init() {fxt.Clear();}
@Test public void Image_full() {
String nl = Op_sys.Cur().Tid_is_wnt() ? "\r\n" : "\n"; // NOTE: JTidy uses different line-endings based on OS; DATE:2015-05-11 String nl = Op_sys.Cur().Tid_is_wnt() ? "\r\n" : "\n"; // NOTE: JTidy uses different line-endings based on OS; DATE:2015-05-11
fxt.Test_tidy("<a href='http://𐎍𐎁_𐎜'>𐎍𐎁_𐎜</a>", "<a href='http://%F0%90%8E%8D%F0%90%8E%81_%F0%90%8E%9C'>&eth;&#144;&#142;&#141;&eth;&#144;&#142;&#129;_&eth;&#144;&#142;&#156;</a>" + nl); fxt.Test_tidy("<a href='http://𐎍𐎁_𐎜'>𐎍𐎁_𐎜</a>", "<a href='http://%F0%90%8E%8D%F0%90%8E%81_%F0%90%8E%9C'>&eth;&#144;&#142;&#141;&eth;&#144;&#142;&#129;_&eth;&#144;&#142;&#156;</a>" + nl);
} }

View File

@ -13,7 +13,9 @@ 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 GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
*/ */
package gplx.xowa.htmls.core.wkrs.tocs; import gplx.*; import gplx.xowa.*; import gplx.xowa.htmls.*; import gplx.xowa.htmls.core.*; import gplx.xowa.htmls.core.wkrs.*; package gplx.xowa.htmls.core.wkrs.tocs; import gplx.*;
import gplx.core.envs.Op_sys;
import gplx.xowa.*; import gplx.xowa.htmls.*; import gplx.xowa.htmls.core.*; import gplx.xowa.htmls.core.wkrs.*;
import org.junit.*; import gplx.xowa.htmls.core.makes.tests.*; import gplx.xowa.parsers.lnkis.*; import org.junit.*; import gplx.xowa.htmls.core.makes.tests.*; import gplx.xowa.parsers.lnkis.*;
public class Xoh_toc_make__basic__tst { public class Xoh_toc_make__basic__tst {
private final Xoh_make_fxt fxt = new Xoh_make_fxt(); private final Xoh_make_fxt fxt = new Xoh_make_fxt();
@ -51,6 +53,7 @@ public class Xoh_toc_make__basic__tst {
fxt.Test__make(orig, fxt.Page_chkr().Body_(expd)); fxt.Test__make(orig, fxt.Page_chkr().Body_(expd));
} }
@Test public void Disabled_if_drd() { @Test public void Disabled_if_drd() {
int curTid = Op_sys.Cur().Tid();
gplx.core.envs.Op_sys.Cur_(gplx.core.envs.Op_sys.Tid_drd); gplx.core.envs.Op_sys.Cur_(gplx.core.envs.Op_sys.Tid_drd);
String expd = String_.Concat_lines_nl_skip_last String expd = String_.Concat_lines_nl_skip_last
( "abc" ( "abc"
@ -62,5 +65,6 @@ public class Xoh_toc_make__basic__tst {
, "b 1" , "b 1"
); );
fxt.Test__make(orig, fxt.Page_chkr().Body_(expd)); fxt.Test__make(orig, fxt.Page_chkr().Body_(expd));
Op_sys.Cur_(curTid);
} }
} }

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry combineaccessrules="false" kind="src" path="/100_core"/>
<classpathentry combineaccessrules="false" kind="src" path="/140_dbs"/>
<classpathentry combineaccessrules="false" kind="src" path="/150_gfui"/>
<classpathentry combineaccessrules="false" kind="src" path="/400_xowa"/>
<classpathentry kind="lib" path="C:/000/200_dev/110_java/lib/junit.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

BIN
lib/hamcrest-core-1.3.jar Normal file

Binary file not shown.