/
githubmirror
/
GoFrame
Обзор
Документация
Войти
/
githubmirror
/
GoFrame
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
encoding/ghtml/ghtml_z_unit_test.go
81 строка
2 KB
John Guo
t.Assert(err, nil) -> t.AssertNil(err)
10 мар 2022, 06:36
10 мар 2022, 06:36
546b6b1
Код
Авторство
О чём код?
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved. // // This Source Code Form is subject to the terms of the MIT License. // If a copy of the MIT was not distributed with this file, // You can obtain one at https://github.com/gogf/gf. package ghtml_test import ( "testing" "github.com/gogf/gf/v2/encoding/ghtml" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/test/gtest" ) func Test_StripTags(t *testing.T) { gtest.C(t, func(t *gtest.T) { src := `<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>` dst := `Test paragraph. Other text` t.Assert(ghtml.StripTags(src), dst) }) } func Test_Entities(t *testing.T) { gtest.C(t, func(t *gtest.T) { src := `A 'quote' "is" <b>bold</b>` dst := `A 'quote' "is" <b>bold</b>` t.Assert(ghtml.Entities(src), dst) t.Assert(ghtml.EntitiesDecode(dst), src) }) } func Test_SpecialChars(t *testing.T) { gtest.C(t, func(t *gtest.T) { src := `A 'quote' "is" <b>bold</b>` dst := `A 'quote' "is" <b>bold</b>` t.Assert(ghtml.SpecialChars(src), dst) t.Assert(ghtml.SpecialCharsDecode(dst), src) }) } func Test_SpecialCharsMapOrStruct_Map(t *testing.T) { gtest.C(t, func(t *gtest.T) { a := g.Map{ "Title": "<h1>T</h1>", "Content": "<div>C</div>", } err := ghtml.SpecialCharsMapOrStruct(a) t.AssertNil(err) t.Assert(a["Title"], `<h1>T</h1>`) t.Assert(a["Content"], `<div>C</div>`) }) gtest.C(t, func(t *gtest.T) { a := g.MapStrStr{ "Title": "<h1>T</h1>", "Content": "<div>C</div>", } err := ghtml.SpecialCharsMapOrStruct(a) t.AssertNil(err) t.Assert(a["Title"], `<h1>T</h1>`) t.Assert(a["Content"], `<div>C</div>`) }) } func Test_SpecialCharsMapOrStruct_Struct(t *testing.T) { type A struct { Title string Content string } gtest.C(t, func(t *gtest.T) { a := &A{ Title: "<h1>T</h1>", Content: "<div>C</div>", } err := ghtml.SpecialCharsMapOrStruct(a) t.AssertNil(err) t.Assert(a.Title, `<h1>T</h1>`) t.Assert(a.Content, `<div>C</div>`) }) }