mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 06:29:29 +01:00
commit
a0c1fa1843
@ -39,18 +39,25 @@ func Casefold(str string) (string, error) {
|
||||
|
||||
// CasefoldChannel returns a casefolded version of a channel name.
|
||||
func CasefoldChannel(name string) (string, error) {
|
||||
lowered, err := Casefold(name)
|
||||
|
||||
if err != nil {
|
||||
return "", err
|
||||
} else if len(lowered) == 0 {
|
||||
if len(name) == 0 {
|
||||
return "", errStringIsEmpty
|
||||
}
|
||||
|
||||
if lowered[0] != '#' {
|
||||
// don't casefold the preceding #'s
|
||||
var start int
|
||||
for start = 0; start < len(name) && name[start] == '#'; start += 1 {
|
||||
}
|
||||
|
||||
if start == 0 {
|
||||
// no preceding #'s
|
||||
return "", errInvalidCharacter
|
||||
}
|
||||
|
||||
lowered, err := Casefold(name[start:])
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
// space can't be used
|
||||
// , is used as a separator
|
||||
// * is used in mask matching
|
||||
@ -59,7 +66,7 @@ func CasefoldChannel(name string) (string, error) {
|
||||
return "", errInvalidCharacter
|
||||
}
|
||||
|
||||
return lowered, err
|
||||
return name[:start] + lowered, err
|
||||
}
|
||||
|
||||
// CasefoldName returns a casefolded version of a nick/user name.
|
||||
|
@ -40,10 +40,29 @@ func TestCasefoldChannel(t *testing.T) {
|
||||
channel: "#",
|
||||
folded: "#",
|
||||
},
|
||||
{
|
||||
channel: "##",
|
||||
folded: "##",
|
||||
},
|
||||
{
|
||||
channel: "##Ubuntu",
|
||||
folded: "##ubuntu",
|
||||
},
|
||||
{
|
||||
channel: "#中文频道",
|
||||
folded: "#中文频道",
|
||||
},
|
||||
{
|
||||
// Hebrew; it's up to the client to display this right-to-left, including the #
|
||||
channel: "#שלום",
|
||||
folded: "#שלום",
|
||||
},
|
||||
}
|
||||
|
||||
for _, errCase := range []string{
|
||||
"", "#*starpower", "# NASA", "#interro?", "OOF#", "foo",
|
||||
// bidi violation mixing latin and hebrew characters:
|
||||
"#shalomעליכם",
|
||||
} {
|
||||
testCases = append(testCases, channelTest{channel: errCase, err: true})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user