Some checks are pending
check / check (pull_request) Blocked by required conditions
Add the canonical .golangci.yml (v2 layout, default: all with the standard disable list) and pin golangci-lint v2.12.2 in the Makefile deps target using the v2 module path, replacing the @latest install on the old v1 path. The Dockerfile lint stage already pinned the v2.12.2 alpine image by digest and is unchanged. Fix all issues surfaced by the strict config: - err113: introduce wrapped static sentinel errors - gocognit/funlen/nestif: split ExtractDay, Run, DumpAndCompress, VerifyOutput, and the CLI flag parsing into smaller helpers - noctx: use ExecContext/QueryContext/BeginTx and CommandContext - noinlineerr: replace inline if-err assignments with plain ones - wsl_v5/nlreturn: add required blank lines - lll: wrap long lines and SQL strings - gosec: filepath.Clean on file open/create; bounded uint64 conversion in CheckFreeSpace; named output dir permission constant - mnd: use unix.FADV_* constants and named size constants - revive: add package and exported symbol comments - testpackage/paralleltest: move smoke test to bsdaily_test with t.Parallel() - nonamedreturns: drop non-error named returns The remaining nolint directives (gosec subprocess launches with internal paths, unqueryvet full-row SELECT * copies whose schema is defined by the source database) are each justified inline.
33 lines
884 B
Go
33 lines
884 B
Go
package bsdaily_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.eeqj.de/sneak/bsdaily/internal/bsdaily"
|
|
)
|
|
|
|
// TestCompiles is a minimal smoke test that references the package's exported
|
|
// surface so that `go test` fails if the package stops compiling. It does not
|
|
// touch the filesystem or any of the hard-coded production paths.
|
|
func TestCompiles(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if bsdaily.DBFilename == "" || bsdaily.WALFilename == "" ||
|
|
bsdaily.SHMFilename == "" {
|
|
t.Fatal("expected database filename constants to be set")
|
|
}
|
|
|
|
if bsdaily.SnapshotBase == "" || bsdaily.TmpBase == "" ||
|
|
bsdaily.DailiesBase == "" {
|
|
t.Fatal("expected base path constants to be set")
|
|
}
|
|
|
|
if bsdaily.MinTmpFreeBytes == 0 || bsdaily.MinDailiesFreeBytes == 0 {
|
|
t.Fatal("expected free-space thresholds to be set")
|
|
}
|
|
|
|
if bsdaily.ErrNoPosts == nil {
|
|
t.Fatal("expected ErrNoPosts sentinel to be set")
|
|
}
|
|
}
|