summaryrefslogtreecommitdiff
path: root/bilibili/room_status_test.go
blob: b287fbe6e5cd12780778740aa70c5a9a4964cc1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package bilibili

import (
	testing2 "github.com/keuin/slbr/common/testing"
	"github.com/keuin/slbr/logging"
	"github.com/keuin/slbr/types"
	"log"
	"testing"
)

func TestBilibili_GetRoomPlayInfo(t *testing.T) {
	// get an online live room for testing
	liveList, err := testing2.GetLiveListForGuestUser()
	if err != nil {
		t.Fatalf("cannot get live list for testing: %v", err)
	}
	lives := liveList.Data.Data
	if len(lives) <= 0 {
		t.Fatalf("no live for guest available")
	}
	roomId := lives[0].Roomid

	logger := log.Default()
	bi := NewBilibili(logging.NewWrappedLogger(logger, "test-logger"))
	resp, err := bi.GetRoomPlayInfo(roomId)
	if err != nil {
		t.Fatalf("GetRoomPlayInfo: %v", err)
	}
	if resp.Code != 0 ||
		resp.Message != "0" ||
		resp.Data.UID <= 0 ||
		resp.Data.RoomID != uint64(roomId) ||
		resp.Data.LiveStatus != types.Streaming {
		t.Fatalf("Invalid GetRoomPlayInfo response: %v", resp)
	}
}