1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
package clitest
import (
"testing"
"src.elv.sh/pkg/cli"
"src.elv.sh/pkg/cli/term"
"src.elv.sh/pkg/cli/tk"
"src.elv.sh/pkg/ui"
)
func TestFixture(t *testing.T) {
f := Setup(
WithSpec(func(spec *cli.AppSpec) {
spec.CodeAreaState.Buffer = tk.CodeBuffer{Content: "test", Dot: 4}
}),
WithTTY(func(tty TTYCtrl) {
tty.SetSize(20, 30) // h = 20, w = 30
}),
)
defer f.Stop()
// Verify that the functions passed to Setup have taken effect.
if f.App.ActiveWidget().(tk.CodeArea).CopyState().Buffer.Content != "test" {
t.Errorf("WithSpec did not work")
}
buf := f.MakeBuffer()
// Verify that the WithTTY function has taken effect.
if buf.Width != 30 {
t.Errorf("WithTTY did not work")
}
f.TestTTY(t, "test", term.DotHere)
f.App.Notify(ui.T("something"))
f.TestTTYNotes(t, "something")
f.App.CommitCode()
if code, err := f.Wait(); code != "test" || err != nil {
t.Errorf("Wait returned %q, %v", code, err)
}
}
|