From c72e692be33d5ab2884db6e2f1cf027f150a108a Mon Sep 17 00:00:00 2001 From: Keuin Date: Wed, 7 Sep 2022 10:18:55 +0800 Subject: Bugfix: callGet[T] will panic if the request is unsuccessful --- bilibili/request_test.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bilibili/request_test.go (limited to 'bilibili/request_test.go') diff --git a/bilibili/request_test.go b/bilibili/request_test.go new file mode 100644 index 0000000..68e5c7a --- /dev/null +++ b/bilibili/request_test.go @@ -0,0 +1,14 @@ +package bilibili + +import ( + "testing" +) + +func Test_callGet(t *testing.T) { + // an always-fail request should not panic + bi := NewBilibili() + _, err := callGet[BaseResponse[struct{}]](bi, "https://256.256.256.256") + if err == nil { + t.Fatalf("the artificial request should fail, but it haven't") + } +} -- cgit v1.2.3