From c43c9458a95552f0a68084a91c631e9e45713a19 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 28 Nov 2019 20:11:39 -0800 Subject: Add rewrite functions: convert_text_link and nl2br --- reader/rewrite/rewriter_test.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'reader/rewrite/rewriter_test.go') diff --git a/reader/rewrite/rewriter_test.go b/reader/rewrite/rewriter_test.go index 0fd49ba..27cf425 100644 --- a/reader/rewrite/rewriter_test.go +++ b/reader/rewrite/rewriter_test.go @@ -156,3 +156,23 @@ func TestRewriteWithUnknownLazyNoScriptImage(t *testing.T) { t.Errorf(`Not expected output: got "%s" instead of "%s"`, output, expected) } } + +func TestNewLineRewriteRule(t *testing.T) { + description := "A\nB\nC" + output := Rewriter("https://example.org/article", description, "nl2br") + expected := `A
B
C` + + if expected != output { + t.Errorf(`Not expected output: got %q instead of %q`, output, expected) + } +} + +func TestConvertTextLinkRewriteRule(t *testing.T) { + description := "Test: http://example.org/a/b" + output := Rewriter("https://example.org/article", description, "convert_text_link") + expected := `Test: http://example.org/a/b` + + if expected != output { + t.Errorf(`Not expected output: got %q instead of %q`, output, expected) + } +} -- cgit v1.2.3