mirror of
https://github.com/Luzifer/go-latestver.git
synced 2024-11-08 23:20:03 +00:00
45 lines
1 KiB
Go
45 lines
1 KiB
Go
package fetcher
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/Luzifer/go_helpers/v2/fieldcollection"
|
|
)
|
|
|
|
func Test_GitTagFetcher(t *testing.T) {
|
|
attrs := fieldcollection.FieldCollectionFromData(map[string]interface{}{
|
|
"remote": "https://github.com/WordPress/WordPress.git", // This is a huge repo and serves as benchmark too
|
|
})
|
|
|
|
f := Get("git_tag")
|
|
|
|
if err := f.Validate(attrs); err != nil {
|
|
t.Fatalf("validating attributes: %s", err)
|
|
}
|
|
|
|
ver, _, err := f.FetchVersion(context.Background(), attrs)
|
|
if err != nil {
|
|
t.Fatalf("fetching version: %s", err)
|
|
}
|
|
|
|
// Uses tag format: 1.0.0
|
|
if len(ver) < 5 {
|
|
t.Errorf("version has unexpected format: %s != X.X.X", ver)
|
|
}
|
|
|
|
t.Logf("found tag: %s", ver)
|
|
}
|
|
|
|
func Test_GitTagFetcherInvalid(t *testing.T) {
|
|
attrs := fieldcollection.FieldCollectionFromData(map[string]interface{}{
|
|
"remote": "https://example.com/example.git",
|
|
})
|
|
|
|
f := Get("git_tag")
|
|
|
|
_, _, err := f.FetchVersion(context.Background(), attrs)
|
|
if err == nil {
|
|
t.Fatalf("fetching version dit not cause error")
|
|
}
|
|
}
|