James Tombleson
ff4075383a
* added a route to delete subscriptions based on the ID given * added a new route to find a record based on the name and source * added a route to query Discord Web Hooks by Server and Channel names * tested the endpoints and they seem good to test more * updated some routes for subscriptions and formatted files * removed debug file * fixing some panic calls * swag
151 lines
2.9 KiB
Go
151 lines
2.9 KiB
Go
package input_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/jtom38/newsbot/collector/database"
|
|
"github.com/jtom38/newsbot/collector/services/input"
|
|
)
|
|
|
|
var YouTubeRecord database.Source = database.Source{
|
|
ID: uuid.New(),
|
|
Name: "dadjokes",
|
|
Source: "reddit",
|
|
Site: "reddit",
|
|
Url: "https://youtube.com/gamegrumps",
|
|
}
|
|
|
|
func TestGetPageParser(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
_, err := yc.GetParser(YouTubeRecord.Url)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestGetChannelId(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
parser, err := yc.GetParser(YouTubeRecord.Url)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
_, err = yc.GetChannelId(parser)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestPullFeed(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
parser, err := yc.GetParser(YouTubeRecord.Url)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
_, err = yc.GetChannelId(parser)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
_, err = yc.PullFeed()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestGetAvatarUri(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
res, err := yc.GetAvatarUri()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if res == "" {
|
|
t.Error(input.ErrMissingAuthorImage)
|
|
}
|
|
}
|
|
|
|
func TestGetVideoTags(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
|
|
var videoUri = "https://www.youtube.com/watch?v=k_sQEXOBe68"
|
|
|
|
parser, err := yc.GetParser(videoUri)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
tags, err := yc.GetTags(parser)
|
|
if err == nil && tags == "" {
|
|
t.Error("err was empty but value was missing.")
|
|
}
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestGetChannelTags(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
|
|
parser, err := yc.GetParser(YouTubeRecord.Url)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
tags, err := yc.GetTags(parser)
|
|
if err == nil && tags == "" {
|
|
t.Error("no err but expected value was missing.")
|
|
}
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestGetVideoThumbnail(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
parser, err := yc.GetParser("https://www.youtube.com/watch?v=k_sQEXOBe68")
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
thumb, err := yc.GetVideoThumbnail(parser)
|
|
if err == nil && thumb == "" {
|
|
t.Error("no err but expected result was missing")
|
|
}
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
}
|
|
|
|
func TestCheckSource(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
_, err := yc.GetContent()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestCheckUriCache(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
item := "demo"
|
|
|
|
input.YoutubeUriCache = append(input.YoutubeUriCache, &item)
|
|
res := yc.CheckUriCache(&item)
|
|
if res == false {
|
|
t.Error("expected a value to come back")
|
|
}
|
|
}
|
|
|
|
func TestCheckUriCacheFails(t *testing.T) {
|
|
yc := input.NewYoutubeClient(YouTubeRecord)
|
|
item := "demo1"
|
|
|
|
res := yc.CheckUriCache(&item)
|
|
if res == true {
|
|
t.Error("expected no value to come back")
|
|
}
|
|
|
|
}
|