feat: Add CreateKnownSources function and test implementation
Some checks failed
Gitea Build Check / Build (pull_request) Failing after 2m54s
Some checks failed
Gitea Build Check / Build (pull_request) Failing after 2m54s
Signed-off-by: SoXX <soxx@anthrove.art>
This commit is contained in:
parent
d52b8f7f81
commit
9669ed293d
@ -245,3 +245,37 @@ func DeleteSource(ctx context.Context, id models.SourceID) error {
|
||||
utils.HandleEvent(span, localLogger, "Source deleted successfully")
|
||||
return nil
|
||||
}
|
||||
|
||||
func CreateKnownSources(ctx context.Context) ([]models.Source, error) {
|
||||
ctx, span, localLogger := utils.SetupTracing(ctx, tracer, "CreateKnownSources")
|
||||
defer span.End()
|
||||
|
||||
if client == nil {
|
||||
return nil, utils.HandleError(ctx, span, localLogger, &otterError.Database{Reason: otterError.DatabaseIsNotConnected})
|
||||
}
|
||||
|
||||
sources := []models.Source{
|
||||
{
|
||||
DisplayName: "e621",
|
||||
Domain: "e621.net",
|
||||
Icon: "https://e621.net/safari-pinned-tab.svg",
|
||||
},
|
||||
{
|
||||
DisplayName: "Fur Affinity",
|
||||
Domain: "furaffinity.net",
|
||||
Icon: "https://www.furaffinity.net/themes/beta/img/banners/fa_logo.png",
|
||||
},
|
||||
}
|
||||
|
||||
result := client.WithContext(ctx).Model(models.Source{}).CreateInBatches(sources, len(sources))
|
||||
if result.Error != nil {
|
||||
if errors.Is(result.Error, gorm.ErrDuplicatedKey) {
|
||||
return nil, utils.HandleError(ctx, span, localLogger, &otterError.Database{Reason: otterError.DuplicateKey})
|
||||
}
|
||||
return nil, utils.HandleError(ctx, span, localLogger, result.Error)
|
||||
}
|
||||
|
||||
utils.HandleEvent(span, localLogger, "Batch posts created successfully")
|
||||
|
||||
return sources, nil
|
||||
}
|
||||
|
@ -537,6 +537,34 @@ func TestDeleteSource(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestCreateKnownSources(t *testing.T) {
|
||||
// Setup trow away container
|
||||
ctx := context.Background()
|
||||
container, gormDB, err := test.StartPostgresContainer(ctx)
|
||||
if err != nil {
|
||||
logger.Fatalf("Could not start PostgreSQL container: %v", err)
|
||||
}
|
||||
|
||||
client = gormDB
|
||||
|
||||
// Setup open telemetry
|
||||
tracer = otel.Tracer(tracingName)
|
||||
|
||||
hook := otellogrus.NewHook(tracingName)
|
||||
logger.AddHook(hook)
|
||||
|
||||
defer container.Terminate(ctx)
|
||||
|
||||
// -- -- Tests
|
||||
|
||||
t.Run("CreateKnownSources", func(t *testing.T) {
|
||||
err, _ := CreateKnownSources(ctx)
|
||||
if err != nil {
|
||||
t.Errorf("DeleteSource() error = %v", err)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
func checkSourceID(got models.Source, want models.Source) bool {
|
||||
if got.ID != want.ID {
|
||||
return false
|
||||
|
Loading…
x
Reference in New Issue
Block a user