3d2187d849
Signed-off-by: tison <wander4096@gmail.com>
88 lines
2.4 KiB
Go
88 lines
2.4 KiB
Go
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
package htmltext
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestClearText(t *testing.T) {
|
|
var (
|
|
expected,
|
|
clearedText string
|
|
)
|
|
|
|
// test code clear text
|
|
expected = "hello{code...}"
|
|
clearedText = ClearText("<p>hello<pre>var a = \"good\"</pre></p>")
|
|
assert.Equal(t, expected, clearedText)
|
|
|
|
// test link clear text
|
|
expected = "hello [example.com]"
|
|
clearedText = ClearText("<p>hello <a href=\"http://example.com/\">example.com</a></p>")
|
|
assert.Equal(t, expected, clearedText)
|
|
clearedText = ClearText("<p>hello<a href=\"https://example.com/\">example.com</a></p>")
|
|
assert.Equal(t, expected, clearedText)
|
|
|
|
expected = "hello world"
|
|
clearedText = ClearText("<div> hello</div>\n<div>world</div>")
|
|
assert.Equal(t, expected, clearedText)
|
|
}
|
|
|
|
func TestFetchExcerpt(t *testing.T) {
|
|
var (
|
|
expected,
|
|
text string
|
|
)
|
|
|
|
// test english string
|
|
expected = "hello..."
|
|
text = FetchExcerpt("<p>hello world</p>", "...", 5)
|
|
assert.Equal(t, expected, text)
|
|
|
|
// test mixed string
|
|
expected = "hello你好..."
|
|
text = FetchExcerpt("<p>hello你好world</p>", "...", 7)
|
|
assert.Equal(t, expected, text)
|
|
|
|
// test mixed string with emoticon
|
|
expected = "hello你好😂..."
|
|
text = FetchExcerpt("<p>hello你好😂world</p>", "...", 8)
|
|
assert.Equal(t, expected, text)
|
|
|
|
expected = "hello你好"
|
|
text = FetchExcerpt("<p>hello你好</p>", "...", 8)
|
|
assert.Equal(t, expected, text)
|
|
}
|
|
|
|
func TestUrlTitle(t *testing.T) {
|
|
list := []string{
|
|
"hello你好😂...",
|
|
"这是一个,标题,title",
|
|
}
|
|
for _, title := range list {
|
|
formatTitle := UrlTitle(title)
|
|
fmt.Println(formatTitle)
|
|
}
|
|
}
|