* feat: add plugin system * fix db docker build * fix hammerhead readme, add strava subscription news to docs * fixes and sdk improvements * fix: reduce Meilisearch load, debounce federation sync (#1012) * optimize meili trail index * several fixes --------- Co-authored-by: Flomp <Flomp@users.noreply.github.com> * Bump svelte from 5.55.5 to 5.56.0 in /docs (#1032) Bumps [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) from 5.55.5 to 5.56.0. - [Release notes](https://github.com/sveltejs/svelte/releases) - [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md) - [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.56.0/packages/svelte) --- updated-dependencies: - dependency-name: svelte dependency-version: 5.56.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Flomp <Flomp@users.noreply.github.com> * Release v0.19.2 (#1035) * chore: release v0.19.2 * add changelog --------- Co-authored-by: Flomp <26000991+Flomp@users.noreply.github.com> Co-authored-by: Christian Beutel <> * speed up plugin sync and several small fixes * concepts for security improvements and process stability * improve concept * security concept implemented * remove insecure TLS * worker concept implemented * fixes and cleanup * fixes * docu * mermaid, namings * WASM plugin host improvements, plugin logging * fix db migration * Improve plugin config and category mapping UI * fixes * further fixes * remove manual test sync * fix db migration and strava mapping * type added, UI improvements * fix plugin card toggle clickable area * optimize synch status card layout * plugin type 'trails' instead of 'integration' * session auth validation in UI * fix komoot date and waypoints * improve category mapping * fix send to hammerhead: trail name * plugin setup error handling improved * fix review findings * re-mapping added * rename remote_category --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Flomp <Flomp@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Flomp <26000991+Flomp@users.noreply.github.com>
60 lines
1.7 KiB
Go
60 lines
1.7 KiB
Go
package pluginsystem
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestInstanceStatusForPluginCapabilityError(t *testing.T) {
|
|
now := time.Date(2026, 5, 31, 12, 0, 0, 0, time.UTC)
|
|
retryAfter := 120
|
|
|
|
update := InstanceStatusForError(PluginCapabilityError{Err: &PluginError{
|
|
Code: "rate_limited",
|
|
Message: "try later",
|
|
RetryAfterSeconds: &retryAfter,
|
|
}}, now)
|
|
|
|
if update.Status != "rate_limited" {
|
|
t.Fatalf("expected status rate_limited, got %q", update.Status)
|
|
}
|
|
if update.Code != "rate_limited" || update.Message != "try later" {
|
|
t.Fatalf("unexpected error fields: %#v", update)
|
|
}
|
|
if update.RetryNotBefore == nil || !update.RetryNotBefore.Equal(now.Add(120*time.Second)) {
|
|
t.Fatalf("unexpected retry time: %#v", update.RetryNotBefore)
|
|
}
|
|
}
|
|
|
|
func TestInstanceStatusForPluginCallError(t *testing.T) {
|
|
update := InstanceStatusForError(PluginCallError{
|
|
PluginID: "strava",
|
|
Export: "list_activities_v1",
|
|
PluginError: PluginError{
|
|
Code: "invalid_grant",
|
|
},
|
|
}, time.Now())
|
|
|
|
if update.Status != "needs_reauth" {
|
|
t.Fatalf("expected status needs_reauth, got %q", update.Status)
|
|
}
|
|
if update.Code != "invalid_grant" || update.Message != "invalid_grant" {
|
|
t.Fatalf("unexpected error fields: %#v", update)
|
|
}
|
|
if update.RetryNotBefore != nil {
|
|
t.Fatalf("did not expect retry time: %#v", update.RetryNotBefore)
|
|
}
|
|
}
|
|
|
|
func TestInstanceStatusForGenericError(t *testing.T) {
|
|
update := InstanceStatusForError(errors.New("network unavailable"), time.Now())
|
|
|
|
if update.Status != "error" {
|
|
t.Fatalf("expected status error, got %q", update.Status)
|
|
}
|
|
if update.Code != "provider_unavailable" || update.Message != "network unavailable" {
|
|
t.Fatalf("unexpected error fields: %#v", update)
|
|
}
|
|
}
|