mirror of https://github.com/fluffle/goirc
Sort capabilities to make CAP command output predictable
This commit is contained in:
parent
c13154e27e
commit
64da59ef46
|
@ -2,6 +2,7 @@ package client
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -320,6 +321,9 @@ func (conn *Conn) Cap(subcommmand string, capabilities ...string) {
|
||||||
if len(capabilities) == 0 {
|
if len(capabilities) == 0 {
|
||||||
conn.Raw(CAP + " " + subcommmand)
|
conn.Raw(CAP + " " + subcommmand)
|
||||||
} else {
|
} else {
|
||||||
|
// make output predictable for testing
|
||||||
|
sort.Strings(capabilities)
|
||||||
|
|
||||||
for _, cmd := range splitCommand(CAP+" "+subcommmand+" :", capabilities, defaultSplit) {
|
for _, cmd := range splitCommand(CAP+" "+subcommmand+" :", capabilities, defaultSplit) {
|
||||||
conn.Raw(cmd)
|
conn.Raw(cmd)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue