2022-05-15 21:48:23 -07:00
|
|
|
package cron_test
|
|
|
|
|
2022-06-08 21:17:08 -07:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
2024-04-23 07:15:38 -07:00
|
|
|
"git.jamestombleson.com/jtom38/newsbot-api/internal/services/cron"
|
2022-06-08 21:17:08 -07:00
|
|
|
)
|
2022-05-15 21:48:23 -07:00
|
|
|
|
|
|
|
func TestInvokeTwitch(t *testing.T) {
|
2022-06-08 21:17:08 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO add database mocks but not sure how to do that yet.
|
|
|
|
func TestCheckReddit(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
2024-04-23 07:15:38 -07:00
|
|
|
c := cron.NewScheduler(ctx)
|
2022-06-30 14:54:58 -07:00
|
|
|
c.CheckReddit()
|
2022-06-08 21:17:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCheckYouTube(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
2024-04-23 07:15:38 -07:00
|
|
|
c := cron.NewScheduler(ctx)
|
2022-06-30 14:54:58 -07:00
|
|
|
c.CheckYoutube()
|
2022-06-08 21:17:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCheckTwitch(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
2024-04-23 07:15:38 -07:00
|
|
|
c := cron.NewScheduler(ctx)
|
2022-06-30 14:54:58 -07:00
|
|
|
err := c.CheckTwitch()
|
2022-06-08 21:17:08 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
2022-05-15 21:48:23 -07:00
|
|
|
}
|