enable CI
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
blackbeard420 2021-10-27 19:51:18 -04:00
parent 8bbf21bfbb
commit d9a617066f
2 changed files with 28 additions and 6 deletions

10
.drone.yml Normal file
View File

@ -0,0 +1,10 @@
kind: pipeline
type: docker
name: test
steps:
- name: test
image: golang
commands:
- go test -v
- go build

View File

@ -1,24 +1,36 @@
package irc package irc
import ( import (
"fmt"
"log" "log"
"testing" "testing"
"time" "time"
) )
const (
channel = "#warez"
)
func TestSimpleIrc(t *testing.T) { func TestSimpleIrc(t *testing.T) {
con := NewConnection("thc420.xyz:6667", "irc-go", "irc-go", nil, []string{"#freedom", "#test"}) con := NewConnection("irc.ouch.chat:6667", "irc-go", "irc-go", nil, []string{channel})
go con.Run() go con.Run()
time.Sleep(10 * time.Second) time.Sleep(10 * time.Second)
con.SendPrivmsg("#freedom", "\x0356 FUCK YALL BITCHES") log.Printf("%d users in channel %s\n", len(con.userList[channel]), channel)
for _, v := range con.userList["#freedom"] { //con.SendPrivmsg("#warez", fmt.Sprintf("\x0356 FUCK YALL BITCHES %d", len(con.userList["#warez"])))
con.SendPrivmsg("#freedom", fmt.Sprintf("yo %s fuck you", v))
} /*
i := 0
for _, v := range con.userList[channel] {
con.SendPrivmsg(channel, fmt.Sprintf("yo %s fuck you", v))
if i >= 5 {
time.Sleep(1000 * time.Millisecond)
i = 0
}
}
*/
} }
func TestParser(t *testing.T) { func TestParser(t *testing.T) {