blob: ce01fe8631664347d65fec1b670b2992676a9b6a [file] [log] [blame]
Robin Thellend9259f3b2014-05-21 10:07:24 -07001package impl_test
2
3import (
4 "bytes"
5 "fmt"
6 "strings"
7 "testing"
8
Jiri Simsa519c5072014-09-17 21:37:57 -07009 "veyron.io/veyron/veyron2"
10 "veyron.io/veyron/veyron2/ipc"
11 "veyron.io/veyron/veyron2/naming"
12 "veyron.io/veyron/veyron2/rt"
13 "veyron.io/veyron/veyron2/security"
14 "veyron.io/veyron/veyron2/services/mgmt/build"
15 "veyron.io/veyron/veyron2/vlog"
Cosmos Nicolaoud6c3c9c2014-09-30 15:42:53 -070016
17 "veyron.io/veyron/veyron/profiles"
18 "veyron.io/veyron/veyron/services/mgmt/profile"
19 "veyron.io/veyron/veyron/services/mgmt/repository"
20 "veyron.io/veyron/veyron/tools/profile/impl"
Robin Thellend9259f3b2014-05-21 10:07:24 -070021)
22
23var (
24 // spec is an example profile specification used throughout the test.
25 spec = profile.Specification{
Jiri Simsa2f8bc272014-07-16 12:29:15 -070026 Arch: build.AMD64,
27 Description: "Example profile to test the profile repository implementation.",
28 Format: build.ELF,
Robin Thellend9259f3b2014-05-21 10:07:24 -070029 Libraries: map[profile.Library]struct{}{profile.Library{Name: "foo", MajorVersion: "1", MinorVersion: "0"}: struct{}{}},
30 Label: "example",
Jiri Simsa2f8bc272014-07-16 12:29:15 -070031 OS: build.Linux,
Robin Thellend9259f3b2014-05-21 10:07:24 -070032 }
33)
34
35type server struct {
36 suffix string
37}
38
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -070039func (s *server) Label(ipc.ServerContext) (string, error) {
Robin Thellend9259f3b2014-05-21 10:07:24 -070040 vlog.VI(2).Infof("%v.Label() was called", s.suffix)
41 if s.suffix != "exists" {
42 return "", fmt.Errorf("profile doesn't exist: %v", s.suffix)
43 }
44 return spec.Label, nil
45}
46
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -070047func (s *server) Description(ipc.ServerContext) (string, error) {
Robin Thellend9259f3b2014-05-21 10:07:24 -070048 vlog.VI(2).Infof("%v.Description() was called", s.suffix)
49 if s.suffix != "exists" {
50 return "", fmt.Errorf("profile doesn't exist: %v", s.suffix)
51 }
52 return spec.Description, nil
53}
54
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -070055func (s *server) Specification(ipc.ServerContext) (profile.Specification, error) {
Robin Thellend9259f3b2014-05-21 10:07:24 -070056 vlog.VI(2).Infof("%v.Specification() was called", s.suffix)
57 if s.suffix != "exists" {
58 return profile.Specification{}, fmt.Errorf("profile doesn't exist: %v", s.suffix)
59 }
60 return spec, nil
61}
62
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -070063func (s *server) Put(_ ipc.ServerContext, _ profile.Specification) error {
Robin Thellend9259f3b2014-05-21 10:07:24 -070064 vlog.VI(2).Infof("%v.Put() was called", s.suffix)
65 return nil
66}
67
Matt Rosencrantzf5afcaf2014-06-02 11:31:22 -070068func (s *server) Remove(ipc.ServerContext) error {
Robin Thellend9259f3b2014-05-21 10:07:24 -070069 vlog.VI(2).Infof("%v.Remove() was called", s.suffix)
70 if s.suffix != "exists" {
71 return fmt.Errorf("profile doesn't exist: %v", s.suffix)
72 }
73 return nil
74}
75
76type dispatcher struct {
77}
78
79func NewDispatcher() *dispatcher {
80 return &dispatcher{}
81}
82
Cosmos Nicolaou8bfacf22014-08-19 11:19:36 -070083func (d *dispatcher) Lookup(suffix, method string) (ipc.Invoker, security.Authorizer, error) {
Jiri Simsaddbfebb2014-06-20 15:56:06 -070084 invoker := ipc.ReflectInvoker(repository.NewServerProfile(&server{suffix: suffix}))
Robin Thellend9259f3b2014-05-21 10:07:24 -070085 return invoker, nil, nil
86}
87
88func startServer(t *testing.T, r veyron2.Runtime) (ipc.Server, naming.Endpoint, error) {
89 dispatcher := NewDispatcher()
90 server, err := r.NewServer()
91 if err != nil {
92 t.Errorf("NewServer failed: %v", err)
93 return nil, nil, err
94 }
Cosmos Nicolaoud6c3c9c2014-09-30 15:42:53 -070095 endpoint, err := server.ListenX(profiles.LocalListenSpec)
Robin Thellend9259f3b2014-05-21 10:07:24 -070096 if err != nil {
97 t.Errorf("Listen failed: %v", err)
98 return nil, nil, err
99 }
Cosmos Nicolaoufdc838b2014-06-30 21:44:27 -0700100 if err := server.Serve("", dispatcher); err != nil {
101 t.Errorf("Serve failed: %v", err)
102 return nil, nil, err
103 }
Robin Thellend9259f3b2014-05-21 10:07:24 -0700104 return server, endpoint, nil
105}
106
107func stopServer(t *testing.T, server ipc.Server) {
108 if err := server.Stop(); err != nil {
109 t.Errorf("server.Stop failed: %v", err)
110 }
111}
112
113func TestProfileClient(t *testing.T) {
114 runtime := rt.Init()
115 server, endpoint, err := startServer(t, runtime)
116 if err != nil {
117 return
118 }
119 defer stopServer(t, server)
120 // Setup the command-line.
121 cmd := impl.Root()
122 var stdout, stderr bytes.Buffer
123 cmd.Init(nil, &stdout, &stderr)
Cosmos Nicolaouef43dc42014-06-13 14:38:51 -0700124 exists := naming.JoinAddressName(endpoint.String(), "//exists")
Robin Thellend9259f3b2014-05-21 10:07:24 -0700125
126 // Test the 'label' command.
127 if err := cmd.Execute([]string{"label", exists}); err != nil {
128 t.Fatalf("%v", err)
129 }
130 if expected, got := spec.Label, strings.TrimSpace(stdout.String()); got != expected {
131 t.Errorf("Got %q, expected %q", got, expected)
132 }
133 stdout.Reset()
134
135 // Test the 'description' command.
136 if err := cmd.Execute([]string{"description", exists}); err != nil {
137 t.Fatalf("%v", err)
138 }
139 if expected, got := spec.Description, strings.TrimSpace(stdout.String()); got != expected {
140 t.Errorf("Got %q, expected %q", got, expected)
141 }
142 stdout.Reset()
143
144 // Test the 'spec' command.
145 if err := cmd.Execute([]string{"spec", exists}); err != nil {
146 t.Fatalf("%v", err)
147 }
148 if expected, got := fmt.Sprintf("%#v", spec), strings.TrimSpace(stdout.String()); got != expected {
149 t.Errorf("Got %q, expected %q", got, expected)
150 }
151 stdout.Reset()
152
153 // Test the 'put' command.
154 if err := cmd.Execute([]string{"put", exists}); err != nil {
155 t.Fatalf("%v", err)
156 }
Jiri Simsa1023a342014-08-20 18:01:22 -0700157 if expected, got := "Profile added successfully.", strings.TrimSpace(stdout.String()); got != expected {
Robin Thellend9259f3b2014-05-21 10:07:24 -0700158 t.Errorf("Got %q, expected %q", got, expected)
159 }
160 stdout.Reset()
161
162 // Test the 'remove' command.
163 if err := cmd.Execute([]string{"remove", exists}); err != nil {
164 t.Fatalf("%v", err)
165 }
166 if expected, got := "Profile removed successfully.", strings.TrimSpace(stdout.String()); got != expected {
167 t.Errorf("Got %q, expected %q", got, expected)
168 }
169 stdout.Reset()
170}