/* XOWA: the XOWA Offline Wiki Application Copyright (C) 2012-2017 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.xowa.parsers.xndes; import gplx.*; import gplx.xowa.*; import gplx.xowa.parsers.*; import org.junit.*; public class Xop_xnde_wkr__nowiki_tst { private final Xop_fxt fxt = new Xop_fxt(); @After public void term() {fxt.Init_para_n_();} @Test public void Basic() { fxt.Test_parse_page_wiki_str ( "<nowiki>''a''</nowiki>b" , "''a''b" ); } @Test public void Template() { fxt.Init_para_y_(); fxt.Init_defn_add("nowiki_test", "<nowiki>#</nowiki>a"); fxt.Test_parse_page_all_str ( "{{nowiki_test}}" , String_.Concat_lines_nl_skip_last ( "<p>#a" , "</p>" , "" )); fxt.Init_para_n_(); } @Test public void H2() { // PAGE:en.w:HTML fxt.Test_parse_page_all_str ( "a<nowiki><h1>b<h6></nowiki>c" , String_.Concat_lines_nl_skip_last ( "a<h1>b<h6>c" )); } @Test public void Lnke() { // PAGE:en.w:Doomsday_argument; <nowiki>[0, 1]</nowiki> fxt.Test_parse_page_wiki_str("a <nowiki>[0, 1]</nowiki> b", "a [0, 1] b"); // NOTE: not "0" + Byte_.To_str(160) + "1"; depend on browser to translate   } @Test public void Xatrs_val_text() { fxt.Test_parse_page_all_str ( "<div id=<nowiki>a</nowiki>>b</div>" , String_.Concat_lines_nl_skip_last ( "<div id=\"a\">b</div>" )); } @Test public void Xatrs_val_quote() { fxt.Test_parse_page_all_str ( "<div id='a<nowiki>b</nowiki>c'>d</div>" , String_.Concat_lines_nl_skip_last ( "<div id='abc'>d</div>" )); } @Test public void Xatrs_eq() { fxt.Test_parse_page_all_str("<ul id<nowiki>=</nowiki>\"a\" class<nowiki>=</nowiki>\"b\"><li><span class=\"c\">d</li></ul>", String_.Concat_lines_nl_skip_last ( "<ul id=\"a\" class=\"b\">" , "<li><span class=\"c\">d</span></li></ul>" )); } @Test public void Tblw_atr() {// PURPOSE: nowiki breaks token fxt.Test_parse_page_all_str(String_.Concat_lines_nl_skip_last ( "{|style=\"background-color:<nowiki>#</nowiki>FFCC99\"" , "|a" , "|}" ) , String_.Concat_lines_nl_skip_last ( "<table style=\"background-color:#FFCC99\">" , " <tr>" , " <td>a" , " </td>" , " </tr>" , "</table>" , "" )); } @Test public void Prex() { // PURPOSE: nowikis inside pre should be ignored; DATE:2013-03-30 fxt.Test_parse_page_all_str("<pre>a<nowiki><</nowiki>b</pre>" , "<pre>a<b</pre>"); // basic fxt.Test_parse_page_all_str("<pre>a<nowiki><<nowiki>b</pre>" , "<pre>a<nowiki><<nowiki>b</pre>"); // not closed fxt.Test_parse_page_all_str("<pre><nowiki>a<nowiki>b</nowiki>c</nowiki></pre>" , "<pre><nowiki>abc</nowiki></pre>"); // nested; this is wrong, but leave for now; should be a<nowiki>b</nowiki>c } @Test public void Prew() { // PURPOSE: space inside nowiki should be ignored; ru.b:Rubyn DATE:2014-07-03 fxt.Init_para_y_(); fxt.Test_parse_page_all_str(String_.Concat_lines_nl ( " a<nowiki>" , " <b></b></nowiki>" // note that "\s" must remain "\s" so that <pre> continues uninterrupted ), String_.Concat_lines_nl ( "<pre>a" , "<b></b>" , "</pre>" ) ); fxt.Init_para_n_(); } @Test public void Prew_2() { // PURPOSE: prew should continue over nowiki, even if no space DATE:2014-07-03 fxt.Init_para_y_(); fxt.Test_parse_page_all_str(String_.Concat_lines_nl ( " <nowiki>a" , "b</nowiki>" // note that "b" should be in pre b/c it is part of <nowiki> which is pre'd (even though there is no \n\s) ), String_.Concat_lines_nl ( "<pre>a" , "b" , "</pre>" ) ); fxt.Init_para_n_(); } @Test public void Code() { // PURPOSE.fix:HtmlNcr-escaped refs were being ignored; caused by HtmlTidy fix for frwiki templates;DATE:2013-06-27 fxt.Test_parse_page_all_str("<code><nowiki>|:</nowiki></code>", "<code>|:</code>"); } @Test public void Brack_end() { // PURPOSE: check that "]" is escaped; PAGE:en.w:Tall_poppy_syndrome; DATE:2014-07-23 fxt.Test_parse_page_all_str ( "<nowiki>[</nowiki>[[A]]<nowiki>]</nowiki>" , "[<a href=\"/wiki/A\">A</a>]"); // was showing up as [[[A]]] } @Test public void Tblw_tr() { // PURPOSE: dash should be escaped in nowiki PAGE:de.w:Liste_von_Vereinen_und_Vereinigungen_von_Gläubigen_(römisch-katholische_Kirche) DATE:2015-01-08 fxt.Test_parse_page_all_str(String_.Concat_lines_nl_skip_last ( "{|" , "|-" , "|a" , "|<nowiki>-</nowiki>" // do not treat as "|-" , "|}" ), String_.Concat_lines_nl_skip_last ( "<table>" , " <tr>" , " <td>a" , " </td>" , " <td>-" // "|" creates <td>; "-" is rendered literally , " </td>" , " </tr>" , "</table>" , "" )); } }