2013-05-03 18:49:15 -04:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
2013-08-12 13:25:56 -04:00
|
|
|
"reflect"
|
2013-05-03 18:49:15 -04:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type testUi struct {
|
2013-06-14 18:47:06 -04:00
|
|
|
askCalled bool
|
|
|
|
askQuery string
|
2013-06-03 14:30:38 -04:00
|
|
|
errorCalled bool
|
|
|
|
errorMessage string
|
2013-08-11 21:16:00 -04:00
|
|
|
machineCalled bool
|
|
|
|
machineType string
|
|
|
|
machineArgs []string
|
2013-06-03 14:30:38 -04:00
|
|
|
messageCalled bool
|
|
|
|
messageMessage string
|
|
|
|
sayCalled bool
|
|
|
|
sayMessage string
|
2013-05-03 18:49:15 -04:00
|
|
|
}
|
|
|
|
|
2013-06-15 21:24:38 -04:00
|
|
|
func (u *testUi) Ask(query string) (string, error) {
|
2013-06-14 18:17:03 -04:00
|
|
|
u.askCalled = true
|
|
|
|
u.askQuery = query
|
2013-06-15 21:24:38 -04:00
|
|
|
return "foo", nil
|
2013-06-14 18:17:03 -04:00
|
|
|
}
|
|
|
|
|
2013-05-27 18:12:48 -04:00
|
|
|
func (u *testUi) Error(message string) {
|
2013-05-08 18:12:48 -04:00
|
|
|
u.errorCalled = true
|
2013-05-27 18:12:48 -04:00
|
|
|
u.errorMessage = message
|
2013-05-08 18:12:48 -04:00
|
|
|
}
|
|
|
|
|
2013-08-11 21:16:00 -04:00
|
|
|
func (u *testUi) Machine(t string, args ...string) {
|
|
|
|
u.machineCalled = true
|
|
|
|
u.machineType = t
|
|
|
|
u.machineArgs = args
|
|
|
|
}
|
|
|
|
|
2013-06-03 14:30:38 -04:00
|
|
|
func (u *testUi) Message(message string) {
|
|
|
|
u.messageCalled = true
|
|
|
|
u.messageMessage = message
|
|
|
|
}
|
|
|
|
|
2013-05-27 18:12:48 -04:00
|
|
|
func (u *testUi) Say(message string) {
|
2013-05-03 18:49:15 -04:00
|
|
|
u.sayCalled = true
|
2013-05-27 18:12:48 -04:00
|
|
|
u.sayMessage = message
|
2013-05-03 18:49:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestUiRPC(t *testing.T) {
|
|
|
|
// Create the UI to test
|
|
|
|
ui := new(testUi)
|
|
|
|
|
|
|
|
// Start the RPC server
|
2013-12-09 19:22:11 -05:00
|
|
|
client, server := testClientServer(t)
|
|
|
|
defer client.Close()
|
|
|
|
defer server.Close()
|
|
|
|
server.RegisterUi(ui)
|
2013-05-03 18:49:15 -04:00
|
|
|
|
2013-12-09 19:22:11 -05:00
|
|
|
uiClient := client.Ui()
|
2013-05-03 18:49:15 -04:00
|
|
|
|
2013-05-21 14:58:14 -04:00
|
|
|
// Basic error and say tests
|
2013-06-15 21:24:38 -04:00
|
|
|
result, err := uiClient.Ask("query")
|
2013-10-16 23:04:57 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if !ui.askCalled {
|
|
|
|
t.Fatal("should be called")
|
|
|
|
}
|
|
|
|
if ui.askQuery != "query" {
|
|
|
|
t.Fatalf("bad: %s", ui.askQuery)
|
|
|
|
}
|
|
|
|
if result != "foo" {
|
|
|
|
t.Fatalf("bad: %#v", result)
|
|
|
|
}
|
2013-06-14 18:17:03 -04:00
|
|
|
|
2013-05-27 18:12:48 -04:00
|
|
|
uiClient.Error("message")
|
2013-10-16 23:04:57 -04:00
|
|
|
if ui.errorMessage != "message" {
|
|
|
|
t.Fatalf("bad: %#v", ui.errorMessage)
|
|
|
|
}
|
2013-05-08 18:12:48 -04:00
|
|
|
|
2013-06-03 14:30:38 -04:00
|
|
|
uiClient.Message("message")
|
2013-10-16 23:04:57 -04:00
|
|
|
if ui.messageMessage != "message" {
|
|
|
|
t.Fatalf("bad: %#v", ui.errorMessage)
|
|
|
|
}
|
2013-06-03 14:30:38 -04:00
|
|
|
|
2013-05-27 18:12:48 -04:00
|
|
|
uiClient.Say("message")
|
2013-10-16 23:04:57 -04:00
|
|
|
if ui.sayMessage != "message" {
|
|
|
|
t.Fatalf("bad: %#v", ui.errorMessage)
|
|
|
|
}
|
2013-08-12 13:25:56 -04:00
|
|
|
|
|
|
|
uiClient.Machine("foo", "bar", "baz")
|
|
|
|
if !ui.machineCalled {
|
|
|
|
t.Fatal("machine should be called")
|
|
|
|
}
|
|
|
|
|
|
|
|
if ui.machineType != "foo" {
|
|
|
|
t.Fatalf("bad type: %#v", ui.machineType)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := []string{"bar", "baz"}
|
|
|
|
if !reflect.DeepEqual(ui.machineArgs, expected) {
|
|
|
|
t.Fatalf("bad: %#v", ui.machineArgs)
|
|
|
|
}
|
2013-05-03 18:49:15 -04:00
|
|
|
}
|