Sort capabilities to make CAP command output predictable

This commit is contained in:
Stefano 2022-03-13 13:30:59 +01:00
parent c13154e27e
commit 64da59ef46
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package client
import (
"fmt"
"sort"
"strings"
)
@ -320,6 +321,9 @@ func (conn *Conn) Cap(subcommmand string, capabilities ...string) {
if len(capabilities) == 0 {
conn.Raw(CAP + " " + subcommmand)
} else {
// make output predictable for testing
sort.Strings(capabilities)
for _, cmd := range splitCommand(CAP+" "+subcommmand+" :", capabilities, defaultSplit) {
conn.Raw(cmd)
}