New primitives: - core.ReadAll(reader) — reads all from any reader, closes, returns Result - core.WriteAll(writer, content) — writes to any writer, closes, returns Result - core.CloseStream(v) — closes any value implementing io.Closer Replaced all io.ReadCloser/io.WriteCloser/io.ReadAll type assertions in fs_test.go and data_test.go with Core primitives. "io" import is now zero across all test files. 558 tests, 84.5% coverage. Remaining stdlib imports (all legitimate test infrastructure): testing, fmt, context, time, sync, embed, io/fs, bytes, gzip, base64 Co-Authored-By: Virgil <virgil@lethean.io>
133 lines
2.9 KiB
Go
133 lines
2.9 KiB
Go
package core_test
|
|
|
|
import (
|
|
"embed"
|
|
"testing"
|
|
|
|
. "dappco.re/go/core"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
//go:embed testdata
|
|
var testFS embed.FS
|
|
|
|
// --- Data (Embedded Content Mounts) ---
|
|
|
|
func mountTestData(t *testing.T, c *Core, name string) {
|
|
t.Helper()
|
|
|
|
r := c.Data().New(NewOptions(
|
|
Option{Key: "name", Value: name},
|
|
Option{Key: "source", Value: testFS},
|
|
Option{Key: "path", Value: "testdata"},
|
|
))
|
|
assert.True(t, r.OK)
|
|
}
|
|
|
|
func TestData_New_Good(t *testing.T) {
|
|
c := New()
|
|
r := c.Data().New(NewOptions(
|
|
Option{Key: "name", Value: "test"},
|
|
Option{Key: "source", Value: testFS},
|
|
Option{Key: "path", Value: "testdata"},
|
|
))
|
|
assert.True(t, r.OK)
|
|
assert.NotNil(t, r.Value)
|
|
}
|
|
|
|
func TestData_New_Bad(t *testing.T) {
|
|
c := New()
|
|
|
|
r := c.Data().New(NewOptions(Option{Key: "source", Value: testFS}))
|
|
assert.False(t, r.OK)
|
|
|
|
r = c.Data().New(NewOptions(Option{Key: "name", Value: "test"}))
|
|
assert.False(t, r.OK)
|
|
|
|
r = c.Data().New(NewOptions(Option{Key: "name", Value: "test"}, Option{Key: "source", Value: "not-an-fs"}))
|
|
assert.False(t, r.OK)
|
|
}
|
|
|
|
func TestData_ReadString_Good(t *testing.T) {
|
|
c := New()
|
|
mountTestData(t, c, "app")
|
|
r := c.Data().ReadString("app/test.txt")
|
|
assert.True(t, r.OK)
|
|
assert.Equal(t, "hello from testdata\n", r.Value.(string))
|
|
}
|
|
|
|
func TestData_ReadString_Bad(t *testing.T) {
|
|
c := New()
|
|
r := c.Data().ReadString("nonexistent/file.txt")
|
|
assert.False(t, r.OK)
|
|
}
|
|
|
|
func TestData_ReadFile_Good(t *testing.T) {
|
|
c := New()
|
|
mountTestData(t, c, "app")
|
|
r := c.Data().ReadFile("app/test.txt")
|
|
assert.True(t, r.OK)
|
|
assert.Equal(t, "hello from testdata\n", string(r.Value.([]byte)))
|
|
}
|
|
|
|
func TestData_Get_Good(t *testing.T) {
|
|
c := New()
|
|
mountTestData(t, c, "brain")
|
|
gr := c.Data().Get("brain")
|
|
assert.True(t, gr.OK)
|
|
emb := gr.Value.(*Embed)
|
|
|
|
r := emb.Open("test.txt")
|
|
assert.True(t, r.OK)
|
|
cr := ReadAll(r.Value)
|
|
assert.True(t, cr.OK)
|
|
assert.Equal(t, "hello from testdata\n", cr.Value)
|
|
}
|
|
|
|
func TestData_Get_Bad(t *testing.T) {
|
|
c := New()
|
|
r := c.Data().Get("nonexistent")
|
|
assert.False(t, r.OK)
|
|
}
|
|
|
|
func TestData_Mounts_Good(t *testing.T) {
|
|
c := New()
|
|
mountTestData(t, c, "a")
|
|
mountTestData(t, c, "b")
|
|
mounts := c.Data().Mounts()
|
|
assert.Len(t, mounts, 2)
|
|
}
|
|
|
|
func TestData_List_Good(t *testing.T) {
|
|
c := New()
|
|
mountTestData(t, c, "app")
|
|
r := c.Data().List("app/.")
|
|
assert.True(t, r.OK)
|
|
}
|
|
|
|
func TestData_List_Bad(t *testing.T) {
|
|
c := New()
|
|
r := c.Data().List("nonexistent/path")
|
|
assert.False(t, r.OK)
|
|
}
|
|
|
|
func TestData_ListNames_Good(t *testing.T) {
|
|
c := New()
|
|
mountTestData(t, c, "app")
|
|
r := c.Data().ListNames("app/.")
|
|
assert.True(t, r.OK)
|
|
assert.Contains(t, r.Value.([]string), "test")
|
|
}
|
|
|
|
func TestData_Extract_Good(t *testing.T) {
|
|
c := New()
|
|
mountTestData(t, c, "app")
|
|
r := c.Data().Extract("app/.", t.TempDir(), nil)
|
|
assert.True(t, r.OK)
|
|
}
|
|
|
|
func TestData_Extract_Bad(t *testing.T) {
|
|
c := New()
|
|
r := c.Data().Extract("nonexistent/path", t.TempDir(), nil)
|
|
assert.False(t, r.OK)
|
|
}
|