gui/pkg/clipboard/service_test.go
Snider 7b8ed9df6f feat(clipboard): add clipboard core.Service with Platform interface and IPC
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 14:16:54 +00:00

81 lines
1.9 KiB
Go

// pkg/clipboard/service_test.go
package clipboard
import (
"context"
"testing"
"forge.lthn.ai/core/go/pkg/core"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type mockPlatform struct {
text string
ok bool
}
func (m *mockPlatform) Text() (string, bool) { return m.text, m.ok }
func (m *mockPlatform) SetText(text string) bool {
m.text = text
m.ok = text != ""
return true
}
func newTestService(t *testing.T) (*Service, *core.Core) {
t.Helper()
c, err := core.New(
core.WithService(Register(&mockPlatform{text: "hello", ok: true})),
core.WithServiceLock(),
)
require.NoError(t, err)
require.NoError(t, c.ServiceStartup(context.Background(), nil))
svc := core.MustServiceFor[*Service](c, "clipboard")
return svc, c
}
func TestRegister_Good(t *testing.T) {
svc, _ := newTestService(t)
assert.NotNil(t, svc)
}
func TestQueryText_Good(t *testing.T) {
_, c := newTestService(t)
result, handled, err := c.QUERY(QueryText{})
require.NoError(t, err)
assert.True(t, handled)
content := result.(ClipboardContent)
assert.Equal(t, "hello", content.Text)
assert.True(t, content.HasContent)
}
func TestQueryText_Bad(t *testing.T) {
// No clipboard service registered
c, _ := core.New(core.WithServiceLock())
_, handled, _ := c.QUERY(QueryText{})
assert.False(t, handled)
}
func TestTaskSetText_Good(t *testing.T) {
_, c := newTestService(t)
result, handled, err := c.PERFORM(TaskSetText{Text: "world"})
require.NoError(t, err)
assert.True(t, handled)
assert.Equal(t, true, result)
// Verify via query
r, _, _ := c.QUERY(QueryText{})
assert.Equal(t, "world", r.(ClipboardContent).Text)
}
func TestTaskClear_Good(t *testing.T) {
_, c := newTestService(t)
_, handled, err := c.PERFORM(TaskClear{})
require.NoError(t, err)
assert.True(t, handled)
// Verify empty
r, _, _ := c.QUERY(QueryText{})
assert.Equal(t, "", r.(ClipboardContent).Text)
assert.False(t, r.(ClipboardContent).HasContent)
}