blob: 094a0c30fed10cf7426d9da1d9c76e079ccf4e02 [file] [log] [blame]
Robin Thellend18205cf2014-10-21 13:53:59 -07001package main
Jiri Simsa9d22b7d2014-08-05 14:10:22 -07002
3import (
4 "bytes"
5 "strings"
6 "testing"
7
Matt Rosencrantzc2ed03e2014-11-25 15:40:48 -08008 "veyron.io/veyron/veyron2"
Jiri Simsa519c5072014-09-17 21:37:57 -07009 "veyron.io/veyron/veyron2/ipc"
10 "veyron.io/veyron/veyron2/naming"
11 "veyron.io/veyron/veyron2/rt"
12 "veyron.io/veyron/veyron2/services/mgmt/binary"
13 "veyron.io/veyron/veyron2/services/mgmt/build"
Mike Burrowsc7a5d722014-12-09 08:55:41 -080014 verror "veyron.io/veyron/veyron2/verror2"
Jiri Simsa519c5072014-09-17 21:37:57 -070015 "veyron.io/veyron/veyron2/vlog"
Cosmos Nicolaoud6c3c9c2014-09-30 15:42:53 -070016
17 "veyron.io/veyron/veyron/profiles"
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070018)
19
20type mock struct{}
21
Todd Wang702385a2014-11-07 01:54:08 -080022func (mock) Build(ctx build.BuilderBuildContext, arch build.Architecture, opsys build.OperatingSystem) ([]byte, error) {
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070023 vlog.VI(2).Infof("Build(%v, %v) was called", arch, opsys)
Todd Wang702385a2014-11-07 01:54:08 -080024 iterator := ctx.RecvStream()
Jiri Simsa1bf5bd22014-08-16 13:18:45 -070025 for iterator.Advance() {
26 }
27 if err := iterator.Err(); err != nil {
28 vlog.Errorf("Advance() failed: %v", err)
Mike Burrowsc7a5d722014-12-09 08:55:41 -080029 return nil, verror.Make(verror.Internal, ctx)
Jiri Simsa1bf5bd22014-08-16 13:18:45 -070030 }
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070031 return nil, nil
32}
33
34func (mock) Describe(_ ipc.ServerContext, name string) (binary.Description, error) {
35 vlog.VI(2).Infof("Describe(%v) was called", name)
36 return binary.Description{}, nil
37}
38
39type dispatcher struct{}
40
Matt Rosencrantzc2ed03e2014-11-25 15:40:48 -080041func startServer(runtime veyron2.Runtime, t *testing.T) (ipc.Server, naming.Endpoint) {
42 server, err := runtime.NewServer()
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070043 if err != nil {
44 t.Fatalf("NewServer failed: %v", err)
45 }
Cosmos Nicolaou28dabfc2014-12-15 22:51:07 -080046 endpoints, err := server.Listen(profiles.LocalListenSpec)
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070047 if err != nil {
Cosmos Nicolaoud6c3c9c2014-09-30 15:42:53 -070048 t.Fatalf("Listen(%s) failed: %v", profiles.LocalListenSpec, err)
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070049 }
50 unpublished := ""
Todd Wang702385a2014-11-07 01:54:08 -080051 if err := server.Serve(unpublished, build.BuilderServer(&mock{}), nil); err != nil {
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070052 t.Fatalf("Serve(%v) failed: %v", unpublished, err)
53 }
Cosmos Nicolaou28dabfc2014-12-15 22:51:07 -080054 return server, endpoints[0]
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070055}
56
57func stopServer(t *testing.T, server ipc.Server) {
58 if err := server.Stop(); err != nil {
59 t.Errorf("Stop() failed: %v", err)
60 }
61}
62
63func TestBuildClient(t *testing.T) {
Matt Rosencrantzc2ed03e2014-11-25 15:40:48 -080064 var err error
65 runtime, err = rt.New()
66 if err != nil {
67 t.Fatalf("Unexpected error initializing runtime: %s", err)
68 }
69 server, endpoint := startServer(runtime, t)
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070070 defer stopServer(t, server)
71
Robin Thellend18205cf2014-10-21 13:53:59 -070072 cmd := root()
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070073 var stdout, stderr bytes.Buffer
74 cmd.Init(nil, &stdout, &stderr)
75
76 // Test the 'Build' command.
Jiri Simsa519c5072014-09-17 21:37:57 -070077 if err := cmd.Execute([]string{"build", naming.JoinAddressName(endpoint.String(), ""), "veyron.io/veyron/veyron/tools/build"}); err != nil {
Jiri Simsa9d22b7d2014-08-05 14:10:22 -070078 t.Fatalf("%v", err)
79 }
80 if expected, got := "", strings.TrimSpace(stdout.String()); got != expected {
81 t.Errorf("Unexpected output from build: got %q, expected %q", got, expected)
82 }
83}