diff --git a/client/commands.go b/client/commands.go index 164e04e..8ae3fac 100644 --- a/client/commands.go +++ b/client/commands.go @@ -72,7 +72,7 @@ func splitMessage(msg string, splitLen int) (msgs []string) { if idx < 0 { idx = splitLen } - msgs = append(msgs, msg[:idx] + "...") + msgs = append(msgs, msg[:idx]+"...") msg = msg[idx:] } return append(msgs, msg) @@ -105,6 +105,9 @@ func (conn *Conn) Join(channel string, key ...string) { conn.Raw(JOIN + " " + channel + k) } +// JoinKey() sends a JOIN command to the server with a key +func (conn *Conn) JoinWithKey(channel string, key string) { conn.Raw(JOIN + " " + channel + " " + key) } + // Part() sends a PART command to the server with an optional part message func (conn *Conn) Part(channel string, message ...string) { msg := strings.Join(message, " ") diff --git a/client/commands_test.go b/client/commands_test.go index a4d457e..9b5b3a9 100644 --- a/client/commands_test.go +++ b/client/commands_test.go @@ -100,6 +100,9 @@ func TestClientCommands(t *testing.T) { c.Join("#foo bar") s.nc.Expect("JOIN #foo bar") + c.JoinWithKey("#foo", "bar") + s.nc.Expect("JOIN #foo bar") + c.Part("#foo") s.nc.Expect("PART #foo") c.Part("#foo", "Screw you guys...")