2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-07-29 12:18:22 +01:00
|
|
|
|
|
|
|
package text_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2023-05-09 11:16:10 +01:00
|
|
|
simple = "this is a plain and simple status"
|
|
|
|
simpleExpected = "<p>this is a plain and simple status</p>"
|
|
|
|
simpleExpectedNoParagraph = "this is a plain and simple status"
|
|
|
|
withTag = "here's a simple status that uses hashtag #welcome!"
|
|
|
|
withTagExpected = "<p>here's a simple status that uses hashtag <a href=\"http://localhost:8080/tags/welcome\" class=\"mention hashtag\" rel=\"tag nofollow noreferrer noopener\" target=\"_blank\">#<span>welcome</span></a>!</p>"
|
|
|
|
withTagExpectedNoParagraph = "here's a simple status that uses hashtag <a href=\"http://localhost:8080/tags/welcome\" class=\"mention hashtag\" rel=\"tag nofollow noreferrer noopener\" target=\"_blank\">#<span>welcome</span></a>!"
|
|
|
|
withHTML = "<div>blah this should just be html escaped blah</div>"
|
|
|
|
withHTMLExpected = "<p><div>blah this should just be html escaped blah</div></p>"
|
|
|
|
moreComplex = "Another test @foss_satan@fossbros-anonymous.io\n\n#Hashtag\n\nText\n\n:rainbow:"
|
2023-07-31 14:47:35 +01:00
|
|
|
moreComplexExpected = "<p>Another test <span class=\"h-card\"><a href=\"http://fossbros-anonymous.io/@foss_satan\" class=\"u-url mention\" rel=\"nofollow noreferrer noopener\" target=\"_blank\">@<span>foss_satan</span></a></span><br><br><a href=\"http://localhost:8080/tags/hashtag\" class=\"mention hashtag\" rel=\"tag nofollow noreferrer noopener\" target=\"_blank\">#<span>Hashtag</span></a><br><br>Text<br><br>:rainbow:</p>"
|
2021-07-29 12:18:22 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type PlainTestSuite struct {
|
|
|
|
TextStandardTestSuite
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *PlainTestSuite) TestParseSimple() {
|
2023-02-03 10:58:58 +00:00
|
|
|
formatted := suite.FromPlain(simple)
|
|
|
|
suite.Equal(simpleExpected, formatted.HTML)
|
2021-07-29 12:18:22 +01:00
|
|
|
}
|
|
|
|
|
2023-05-09 11:16:10 +01:00
|
|
|
func (suite *PlainTestSuite) TestParseSimpleNoParagraph() {
|
|
|
|
formatted := suite.FromPlainNoParagraph(simple)
|
|
|
|
suite.Equal(simpleExpectedNoParagraph, formatted.HTML)
|
|
|
|
}
|
|
|
|
|
2021-07-29 12:18:22 +01:00
|
|
|
func (suite *PlainTestSuite) TestParseWithTag() {
|
2023-02-03 10:58:58 +00:00
|
|
|
formatted := suite.FromPlain(withTag)
|
|
|
|
suite.Equal(withTagExpected, formatted.HTML)
|
2022-07-19 14:21:17 +01:00
|
|
|
}
|
|
|
|
|
2023-05-09 11:16:10 +01:00
|
|
|
func (suite *PlainTestSuite) TestParseWithTagNoParagraph() {
|
|
|
|
formatted := suite.FromPlainNoParagraph(withTag)
|
|
|
|
suite.Equal(withTagExpectedNoParagraph, formatted.HTML)
|
|
|
|
}
|
|
|
|
|
2022-07-19 14:21:17 +01:00
|
|
|
func (suite *PlainTestSuite) TestParseWithHTML() {
|
2023-02-03 10:58:58 +00:00
|
|
|
formatted := suite.FromPlain(withHTML)
|
|
|
|
suite.Equal(withHTMLExpected, formatted.HTML)
|
2021-07-29 12:18:22 +01:00
|
|
|
}
|
|
|
|
|
2021-08-11 15:54:54 +01:00
|
|
|
func (suite *PlainTestSuite) TestParseMoreComplex() {
|
2023-02-03 10:58:58 +00:00
|
|
|
formatted := suite.FromPlain(moreComplex)
|
|
|
|
suite.Equal(moreComplexExpected, formatted.HTML)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *PlainTestSuite) TestLinkNoMention() {
|
|
|
|
statusText := `here's a link to a post by zork
|
|
|
|
|
|
|
|
https://example.com/@the_mighty_zork/statuses/01FGVP55XMF2K6316MQRX6PFG1
|
|
|
|
|
|
|
|
that link shouldn't come out formatted as a mention!`
|
|
|
|
|
|
|
|
menchies := suite.FromPlain(statusText).Mentions
|
|
|
|
suite.Empty(menchies)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *PlainTestSuite) TestDeriveMentionsEmpty() {
|
|
|
|
statusText := ``
|
|
|
|
menchies := suite.FromPlain(statusText).Mentions
|
2023-09-29 09:39:56 +01:00
|
|
|
suite.Len(menchies, 0)
|
2023-02-03 10:58:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *PlainTestSuite) TestDeriveHashtagsOK() {
|
|
|
|
statusText := `weeeeeeee #testing123 #also testing
|
|
|
|
|
|
|
|
# testing this one shouldn't work
|
|
|
|
|
|
|
|
#thisshouldwork #dupe #dupe!! #dupe
|
|
|
|
|
|
|
|
here's a link with a fragment: https://example.org/whatever#ahhh
|
|
|
|
here's another link with a fragment: https://example.org/whatever/#ahhh
|
2021-08-11 15:54:54 +01:00
|
|
|
|
2023-09-29 09:39:56 +01:00
|
|
|
(#ThisShouldAlsoWork) #this_should_not_be_split
|
|
|
|
|
|
|
|
#__ <- just underscores, shouldn't work
|
2023-02-03 10:58:58 +00:00
|
|
|
|
|
|
|
#111111 thisalsoshouldn'twork#### ##
|
|
|
|
|
|
|
|
#alimentación, #saúde, #lävistää, #ö, #네
|
2023-07-31 14:47:35 +01:00
|
|
|
#ThisOneIsOneHundredAndOneCharactersLongWhichIsReallyJustWayWayTooLongDefinitelyLongerThanYouWouldNeed...
|
2023-02-03 10:58:58 +00:00
|
|
|
#ThisOneIsThirteyCharactersLong
|
|
|
|
`
|
|
|
|
|
|
|
|
tags := suite.FromPlain(statusText).Tags
|
2023-09-29 09:39:56 +01:00
|
|
|
suite.Len(tags, 13)
|
|
|
|
suite.Equal("testing123", tags[0].Name)
|
|
|
|
suite.Equal("also", tags[1].Name)
|
|
|
|
suite.Equal("thisshouldwork", tags[2].Name)
|
|
|
|
suite.Equal("dupe", tags[3].Name)
|
|
|
|
suite.Equal("ThisShouldAlsoWork", tags[4].Name)
|
|
|
|
suite.Equal("this_should_not_be_split", tags[5].Name)
|
|
|
|
suite.Equal("111111", tags[6].Name)
|
|
|
|
suite.Equal("alimentación", tags[7].Name)
|
|
|
|
suite.Equal("saúde", tags[8].Name)
|
|
|
|
suite.Equal("lävistää", tags[9].Name)
|
|
|
|
suite.Equal("ö", tags[10].Name)
|
|
|
|
suite.Equal("네", tags[11].Name)
|
|
|
|
suite.Equal("ThisOneIsThirteyCharactersLong", tags[12].Name)
|
2023-02-03 10:58:58 +00:00
|
|
|
|
|
|
|
statusText = `#올빼미 hej`
|
|
|
|
tags = suite.FromPlain(statusText).Tags
|
2023-09-29 09:39:56 +01:00
|
|
|
suite.Equal("올빼미", tags[0].Name)
|
2023-02-03 10:58:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *PlainTestSuite) TestDeriveMultiple() {
|
|
|
|
statusText := `Another test @foss_satan@fossbros-anonymous.io
|
|
|
|
|
|
|
|
#Hashtag
|
|
|
|
|
|
|
|
Text`
|
|
|
|
|
|
|
|
f := suite.FromPlain(statusText)
|
|
|
|
|
2023-09-29 09:39:56 +01:00
|
|
|
suite.Len(f.Mentions, 1)
|
|
|
|
suite.Equal("@foss_satan@fossbros-anonymous.io", f.Mentions[0].NameString)
|
2023-02-03 10:58:58 +00:00
|
|
|
|
2023-09-29 09:39:56 +01:00
|
|
|
suite.Len(f.Tags, 1)
|
|
|
|
suite.Equal("hashtag", f.Tags[0].Name)
|
2023-02-03 10:58:58 +00:00
|
|
|
|
2023-09-29 09:39:56 +01:00
|
|
|
suite.Len(f.Emojis, 0)
|
2023-02-03 10:58:58 +00:00
|
|
|
}
|
2021-08-11 15:54:54 +01:00
|
|
|
|
2023-02-03 10:58:58 +00:00
|
|
|
func (suite *PlainTestSuite) TestZalgoHashtag() {
|
|
|
|
statusText := `yo who else loves #praying to #z̸͉̅a̸͚͋l̵͈̊g̸̫͌ỏ̷̪?`
|
|
|
|
f := suite.FromPlain(statusText)
|
2023-09-29 09:39:56 +01:00
|
|
|
suite.Len(f.Tags, 1)
|
|
|
|
suite.Equal("praying", f.Tags[0].Name)
|
2021-08-11 15:54:54 +01:00
|
|
|
}
|
|
|
|
|
2021-07-29 12:18:22 +01:00
|
|
|
func TestPlainTestSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(PlainTestSuite))
|
|
|
|
}
|