This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mumbledj/main_test.go

53 lines
1.7 KiB
Go
Raw Normal View History

2015-08-10 01:41:26 +02:00
package main
2015-08-10 01:42:41 +02:00
import (
"github.com/layeh/gumble/gumble"
"os"
2015-08-10 01:42:41 +02:00
"testing"
)
2015-08-10 01:41:26 +02:00
func createClient(uname string) *gumble.Client {
return gumble.NewClient(&gumble.Config{
Username: uname,
Password: os.Getenv("MUMBLE_PASSWORD"),
Address: os.Getenv("MUMBLE_IP") + ":" + os.Getenv("MUMBLE_PORT")})
2015-08-10 01:41:26 +02:00
}
func TestYoutubeSong(t *testing.T) {
2015-08-10 01:57:08 +02:00
dummyClient := createClient("dummy")
dummyClient.Connect()
2015-08-10 01:59:06 +02:00
dummyUser := dj.client.Users.Find("dummy")
2015-08-10 01:41:26 +02:00
// Don't judge, I used the (autogenerated) Top Tracks for United Kingdom playlist
songs := map[string]string{
"http://www.youtube.com/watch?v=QcIy9NiNbmo": "Taylor Swift - Bad Blood ft. Kendrick Lamar",
"https://www.youtube.com/watch?v=vjW8wmF5VWc": "Silentó - Watch Me (Whip/Nae Nae) (Official)",
"http://youtu.be/nsDwItoNlLc": "Tinie Tempah ft. Jess Glynne - Not Letting Go (Official Video)",
"https://youtu.be/hXTAn4ELEwM": "Years & Years - Shine",
"http://youtube.com/watch?v=RgKAFK5djSk": "Wiz Khalifa - See You Again ft. Charlie Puth [Official Video] Furious 7 Soundtrack",
"https://youtube.com/watch?v=qWWSM3wCiKY": "Calvin Harris & Disciples - How Deep Is Your Love (Audio)",
"http://www.youtube.com/v/yzTuBuRdAyA": "The Weeknd - The Hills",
"https://www.youtube.com/v/cNw8A5pwbVI": "Pia Mia - Do It Again ft. Chris Brown, Tyga",
}
for url, title := range songs {
2015-08-10 01:57:08 +02:00
err := add(dummyUser, url)
2015-08-10 01:41:26 +02:00
if err != nil {
t.Error(
"For", url,
"expected", title,
"got", err,
)
} else if dj.queue.CurrentSong().Title() != title {
t.Error(
"For", url,
"expected", title,
"got", dj.queue.CurrentSong().Title(),
)
}
2015-08-10 01:57:08 +02:00
skip(dummyUser, false, false)
2015-08-10 01:41:26 +02:00
}
2015-08-10 01:57:08 +02:00
dummyClient.Disconnect()
2015-08-10 01:41:26 +02:00
}