2020-03-11 06:50:12 -04:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See LICENSE.txt for license information.
|
|
|
|
|
|
2021-07-13 09:56:20 -04:00
|
|
|
package app
|
2020-03-11 06:50:12 -04:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestPossibleAtMentions(t *testing.T) {
|
2025-05-30 07:58:26 -04:00
|
|
|
mainHelper.Parallel(t)
|
2020-03-11 06:50:12 -04:00
|
|
|
fixture := []struct {
|
|
|
|
|
message string
|
|
|
|
|
expected []string
|
|
|
|
|
}{
|
|
|
|
|
{
|
|
|
|
|
"",
|
|
|
|
|
[]string{},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"@user",
|
|
|
|
|
[]string{"user"},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"@user-with_special.chars @multiple.-_chars",
|
|
|
|
|
[]string{"user-with_special.chars", "multiple.-_chars"},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"@repeated @user @repeated",
|
|
|
|
|
[]string{"repeated", "user"},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"@user1 @user2 @user3",
|
|
|
|
|
[]string{"user1", "user2", "user3"},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"@李",
|
|
|
|
|
[]string{},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"@withfinaldot. @withfinaldash- @withfinalunderscore_",
|
|
|
|
|
[]string{
|
|
|
|
|
"withfinaldot.",
|
|
|
|
|
"withfinaldash-",
|
|
|
|
|
"withfinalunderscore_",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, data := range fixture {
|
2021-07-13 09:56:20 -04:00
|
|
|
actual := possibleAtMentions(data.message)
|
2020-03-11 06:50:12 -04:00
|
|
|
require.ElementsMatch(t, actual, data.expected)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestTrimUsernameSpecialChar(t *testing.T) {
|
2025-05-30 07:58:26 -04:00
|
|
|
mainHelper.Parallel(t)
|
2020-03-11 06:50:12 -04:00
|
|
|
fixture := []struct {
|
|
|
|
|
word string
|
|
|
|
|
expectedString string
|
|
|
|
|
expectedBool bool
|
|
|
|
|
}{
|
|
|
|
|
{"user...", "user..", true},
|
|
|
|
|
{"user..", "user.", true},
|
|
|
|
|
{"user.", "user", true},
|
|
|
|
|
{"user--", "user-", true},
|
|
|
|
|
{"user-", "user", true},
|
|
|
|
|
{"user_.-", "user_.", true},
|
|
|
|
|
{"user_.", "user_", true},
|
|
|
|
|
{"user_", "user", true},
|
|
|
|
|
{"user", "user", false},
|
|
|
|
|
{"user.with-inner_chars", "user.with.inner.chars", false},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, data := range fixture {
|
2021-07-13 09:56:20 -04:00
|
|
|
actualString, actualBool := trimUsernameSpecialChar(data.word)
|
2020-03-11 06:50:12 -04:00
|
|
|
require.Equal(t, actualBool, data.expectedBool)
|
|
|
|
|
if actualBool {
|
|
|
|
|
require.Equal(t, actualString, data.expectedString)
|
|
|
|
|
} else {
|
|
|
|
|
require.Equal(t, actualString, data.word)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|