Package info.bliki.html.googlecode

Examples of info.bliki.html.googlecode.ToGoogleCode


  public void test14() {
    HTML2WikiConverter conv = new HTML2WikiConverter();
    // invalid nested html test
    conv
        .setInputHTML("<h2>the <a href=\"http://good\">good</a></h2><h3>the <div>bad</div></h3><h2>and <b><i>the</i> ugly</b></h2>");
    String result = conv.toWiki(new ToGoogleCode());
    assertEquals(result, "\n" + "== the good ==\n" + "\n" + "=== the bad ===\n" + "\n" + "== and the ugly ==\n");
  }
View Full Code Here


  public void test15() {
    HTML2WikiConverter conv = new HTML2WikiConverter();
    // invalid nested html test
    conv.setInputHTML("The <a href=\"http://good\">good</a> the <div>bad</div> and <b><i>the</i> ugly</b>");
    String result = conv.toWiki(new ToGoogleCode());
    assertEquals(result, "The [good] the bad and *_the_ ugly*");
  }
 
View Full Code Here

  public static void main(String[] args) {
    try {
      HTML2WikiConverter conv = new HTML2WikiConverter();
      conv.setInputHTML("<b>hello</b> <em>world</em>");
      System.out.print(conv.toWiki(new ToGoogleCode()));

    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here

public class HTML2GoogleCodeTest {

    @Test public void test0() {
        HTML2WikiConverter conv = new HTML2WikiConverter();
        conv.setInputHTML("<b>hello<em>world</em></b>");
        String result = conv.toWiki(new ToGoogleCode());
        assertThat("*hello_world_*").isEqualTo(result);
    }
View Full Code Here

    }

    @Test public void test1() {
        HTML2WikiConverter conv = new HTML2WikiConverter();
        conv.setInputHTML("<ul><li>hello world<ol><li>hello subworld1<ul><li>sub sub test1</li>\n<li>sub sub test2</li></ul></li><li>hello subworld2</li></ol></li><li>second line</li></ul>");
        String result = conv.toWiki(new ToGoogleCode());
        assertThat("\n" +
                "* hello world\n" +
                " # hello subworld1\n" +
                "  * sub sub test1\n" +
                "  * sub sub test2\n" +
View Full Code Here

    @Test public void test2() {
        HTML2WikiConverter conv = new HTML2WikiConverter();
        // invalid nested html test
        conv.setInputHTML("<ul><li>hello world<ol><li>hello subworld</ol><li>second line</ul>");
        String result = conv.toWiki(new ToGoogleCode());
        assertThat("\n" + "* hello world\n" + " # hello subworld\n" + "* second line\n" + "").isEqualTo(result);
    }
View Full Code Here

    @Test public void test3() {
        HTML2WikiConverter conv = new HTML2WikiConverter();
        // invalid nested html test
        conv.setInputHTML("<h2>the good</h2><h3>the bad</h3><h2>and the ugly</h2>");
        String result = conv.toWiki(new ToGoogleCode());
        assertThat("\n" + "== the good ==\n" + "\n" + "=== the bad ===\n" + "\n" + "== and the ugly ==\n").isEqualTo(result);
    }
View Full Code Here

                + "<td>Strauße (Struthionidae)</td>\n" + "</tr>\n" + "\n" + "<tr>\n"
                + "<td><i><a href=\"/wiki/Gattung_%28Biologie%29\" title=\"Gattung (Biologie)\">Gattung</a>:</i></td>\n"
                + "<td>Strauße (<i>Struthio</i>)</td>\n" + "</tr>\n" + "<tr>\n"
                + "<td><i><a href=\"/wiki/Art_%28Biologie%29\" title=\"Art (Biologie)\">Art</a>:</i></td>\n"
                + "<td>Afrikanischer Strauß</td>\n" + "</tr>\n" + "</table>");
        String result = conv.toWiki(new ToGoogleCode());
        assertThat("                         \n" + "||_[Klasse]:_||[Vögel] (Aves)||\n"
                + "||_[Unterklasse]:_||[Urkiefervögel] (Palaeognathae)||\n" + "||_[Ordnung]:_||[Laufvögel] (Struthioniformes)||\n"
                + "||_[Familie]:_||Strauße (Struthionidae)||\n" + "||_[Gattung]:_||Strauße (_Struthio_)||\n"
                + "||_[Art]:_||Afrikanischer Strauß||\n").isEqualTo(result);
    }
View Full Code Here

    }

    @Test public void test6() {
        HTML2WikiConverter conv = new HTML2WikiConverter();
        conv.setInputHTML("<b>hello</b> <em>world</em>");
        String result = conv.toWiki(new ToGoogleCode());
        assertThat("*hello* _world_").isEqualTo(result);
    }
View Full Code Here

    }

    @Test public void test7() {
        HTML2WikiConverter conv = new HTML2WikiConverter();
        conv.setInputHTML("<html><body><table>\n<tr>\n<td>hello world</td>\n</tr></table></body></html>");
        String result = conv.toWiki(new ToGoogleCode());
        assertThat("   \n" + "||hello world||\n").isEqualTo(result);
    }
View Full Code Here

TOP

Related Classes of info.bliki.html.googlecode.ToGoogleCode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.