mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
package ctl
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func TestRBFCheckCommand_Run(t *testing.T) {
|
|
t.Run("OK", func(t *testing.T) {
|
|
var stdout, stderr bytes.Buffer
|
|
cmd := NewRBFCheckCommand(bytes.NewReader(nil), &stdout, &stderr)
|
|
cmd.Path = filepath.Join("testdata", "rbf-check", "ok")
|
|
if err := cmd.Run(context.Background()); err != nil {
|
|
t.Fatal(err)
|
|
} else if got, want := stdout.String(), `ok`+"\n"; got != want {
|
|
t.Fatalf("got:\n%s\n\nwant:\n%s", got, want)
|
|
}
|
|
})
|
|
|
|
t.Run("ErrInvalidPageType", func(t *testing.T) {
|
|
var stdout, stderr bytes.Buffer
|
|
cmd := NewRBFCheckCommand(bytes.NewReader(nil), &stdout, &stderr)
|
|
cmd.Path = filepath.Join("testdata", "rbf-check", "err-invalid-page-type")
|
|
if err := cmd.Run(context.Background()); err == nil || err.Error() != `check failed` {
|
|
t.Fatal(err)
|
|
} else if got, want := stdout.String(), `page not in-use & not free: pgno=4`+"\n"; got != want {
|
|
t.Fatalf("got:\n%s\n\nwant:\n%s", got, want)
|
|
}
|
|
})
|
|
}
|