tstor/plugins/kemono/kemonoapi/client_test.go
2025-03-22 08:49:14 +04:00

25 lines
442 B
Go

package kemonoapi_test
import (
"context"
"fmt"
"testing"
"git.kmsign.ru/royalcat/tstor/plugins/kemono/kemonoapi"
)
func TestScrapCreator(t *testing.T) {
k := kemonoapi.NewClient("https://coomer.su/")
ctx := context.Background()
posts := k.FetchPosts(ctx, "onlyfans", "bigtittygothegg")
for post, err := range posts {
if err != nil {
t.Fatal(err)
}
if post.ID == "" {
t.Fatal(fmt.Errorf("post id is empty"))
}
}
}