diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-21 14:17:30 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-21 14:48:16 +0900 |
| commit | 40b33f9fc7d171124ac5369312fb8b6a956161ca (patch) | |
| tree | a89d517420bd330d224442b0e425606d390b1b40 /cmd | |
| parent | 443a7a30f618c32fea6e564f0fcf0822a0d43538 (diff) | |
internal/rosa: enforce exclusions
This restores unexported artifact behaviour.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/mbf/internal/pkgserver/api.go | 2 | ||||
| -rw-r--r-- | cmd/mbf/internal/pkgserver/api_test.go | 7 | ||||
| -rw-r--r-- | cmd/mbf/main.go | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/cmd/mbf/internal/pkgserver/api.go b/cmd/mbf/internal/pkgserver/api.go index e73b8bbe..125be829 100644 --- a/cmd/mbf/internal/pkgserver/api.go +++ b/cmd/mbf/internal/pkgserver/api.go @@ -30,7 +30,7 @@ var ( // handleInfo writes constant system information. func handleInfo(w http.ResponseWriter, _ *http.Request) { infoPayloadOnce.Do(func() { - infoPayload.Count = int(rosa.Native().Count()) + infoPayload.Count = len(rosa.Native().Collect()) infoPayload.HakureiVersion = info.Version() }) // TODO(mae): cache entire response if no additional fields are planned diff --git a/cmd/mbf/internal/pkgserver/api_test.go b/cmd/mbf/internal/pkgserver/api_test.go index 4c178fb9..3a9945da 100644 --- a/cmd/mbf/internal/pkgserver/api_test.go +++ b/cmd/mbf/internal/pkgserver/api_test.go @@ -31,7 +31,7 @@ func TestAPIInfo(t *testing.T) { checkPayload(t, resp, struct { Count int `json:"count"` HakureiVersion string `json:"hakurei_version"` - }{rosa.Native().Count(), info.Version()}) + }{len(rosa.Native().Collect()), info.Version()}) } func TestAPIGet(t *testing.T) { @@ -92,11 +92,12 @@ func TestAPIGet(t *testing.T) { ) }) + count := len(rosa.Native().Collect()) t.Run("index", func(t *testing.T) { t.Parallel() checkValidate( - t, "limit=1&sort=0&index", 0, rosa.Native().Count()-1, - "index must be an integer between 0 and "+strconv.Itoa(rosa.Native().Count()-1), + t, "limit=1&sort=0&index", 0, count-1, + "index must be an integer between 0 and "+strconv.Itoa(count-1), ) }) diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go index f87d388f..bf057115 100644 --- a/cmd/mbf/main.go +++ b/cmd/mbf/main.go @@ -387,7 +387,7 @@ func main() { } done: - for _, p := range rosa.Native().Collect() { + for _, p := range rosa.Native().CollectAll() { select { case w <- p: break |
