New() returns Result, accepts CoreOption functionals. Restores v0.3.3 service registration contract: - WithService(factory func(*Core) Result) — service factory receives Core - WithOptions(Options) — key-value configuration - WithServiceLock() — immutable after construction Services registered in New() form the application conclave with shared IPC access. Each Core instance has its own bus scope. Co-Authored-By: Virgil <virgil@lethean.io>
39 lines
816 B
Go
39 lines
816 B
Go
package core_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "dappco.re/go/core"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// --- App ---
|
|
|
|
func TestApp_Good(t *testing.T) {
|
|
c := New(WithOptions(Options{{Key: "name", Value: "myapp"}})).Value.(*Core)
|
|
assert.Equal(t, "myapp", c.App().Name)
|
|
}
|
|
|
|
func TestApp_Empty_Good(t *testing.T) {
|
|
c := New().Value.(*Core)
|
|
assert.NotNil(t, c.App())
|
|
assert.Equal(t, "", c.App().Name)
|
|
}
|
|
|
|
func TestApp_Runtime_Good(t *testing.T) {
|
|
c := New().Value.(*Core)
|
|
c.App().Runtime = &struct{ Name string }{Name: "wails"}
|
|
assert.NotNil(t, c.App().Runtime)
|
|
}
|
|
|
|
func TestApp_Find_Good(t *testing.T) {
|
|
r := Find("go", "go")
|
|
assert.True(t, r.OK)
|
|
app := r.Value.(*App)
|
|
assert.NotEmpty(t, app.Path)
|
|
}
|
|
|
|
func TestApp_Find_Bad(t *testing.T) {
|
|
r := Find("nonexistent-binary-xyz", "test")
|
|
assert.False(t, r.OK)
|
|
}
|