Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 1 | package impl_test |
| 2 | |
| 3 | import ( |
| 4 | "bytes" |
| 5 | "fmt" |
| 6 | "strings" |
| 7 | "testing" |
| 8 | |
Jiri Simsa | 519c507 | 2014-09-17 21:37:57 -0700 | [diff] [blame] | 9 | "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 Nicolaou | d6c3c9c | 2014-09-30 15:42:53 -0700 | [diff] [blame^] | 16 | |
| 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 Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 21 | ) |
| 22 | |
| 23 | var ( |
| 24 | // spec is an example profile specification used throughout the test. |
| 25 | spec = profile.Specification{ |
Jiri Simsa | 2f8bc27 | 2014-07-16 12:29:15 -0700 | [diff] [blame] | 26 | Arch: build.AMD64, |
| 27 | Description: "Example profile to test the profile repository implementation.", |
| 28 | Format: build.ELF, |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 29 | Libraries: map[profile.Library]struct{}{profile.Library{Name: "foo", MajorVersion: "1", MinorVersion: "0"}: struct{}{}}, |
| 30 | Label: "example", |
Jiri Simsa | 2f8bc27 | 2014-07-16 12:29:15 -0700 | [diff] [blame] | 31 | OS: build.Linux, |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 32 | } |
| 33 | ) |
| 34 | |
| 35 | type server struct { |
| 36 | suffix string |
| 37 | } |
| 38 | |
Matt Rosencrantz | f5afcaf | 2014-06-02 11:31:22 -0700 | [diff] [blame] | 39 | func (s *server) Label(ipc.ServerContext) (string, error) { |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 40 | 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 Rosencrantz | f5afcaf | 2014-06-02 11:31:22 -0700 | [diff] [blame] | 47 | func (s *server) Description(ipc.ServerContext) (string, error) { |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 48 | 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 Rosencrantz | f5afcaf | 2014-06-02 11:31:22 -0700 | [diff] [blame] | 55 | func (s *server) Specification(ipc.ServerContext) (profile.Specification, error) { |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 56 | 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 Rosencrantz | f5afcaf | 2014-06-02 11:31:22 -0700 | [diff] [blame] | 63 | func (s *server) Put(_ ipc.ServerContext, _ profile.Specification) error { |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 64 | vlog.VI(2).Infof("%v.Put() was called", s.suffix) |
| 65 | return nil |
| 66 | } |
| 67 | |
Matt Rosencrantz | f5afcaf | 2014-06-02 11:31:22 -0700 | [diff] [blame] | 68 | func (s *server) Remove(ipc.ServerContext) error { |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 69 | 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 | |
| 76 | type dispatcher struct { |
| 77 | } |
| 78 | |
| 79 | func NewDispatcher() *dispatcher { |
| 80 | return &dispatcher{} |
| 81 | } |
| 82 | |
Cosmos Nicolaou | 8bfacf2 | 2014-08-19 11:19:36 -0700 | [diff] [blame] | 83 | func (d *dispatcher) Lookup(suffix, method string) (ipc.Invoker, security.Authorizer, error) { |
Jiri Simsa | ddbfebb | 2014-06-20 15:56:06 -0700 | [diff] [blame] | 84 | invoker := ipc.ReflectInvoker(repository.NewServerProfile(&server{suffix: suffix})) |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 85 | return invoker, nil, nil |
| 86 | } |
| 87 | |
| 88 | func 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 Nicolaou | d6c3c9c | 2014-09-30 15:42:53 -0700 | [diff] [blame^] | 95 | endpoint, err := server.ListenX(profiles.LocalListenSpec) |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 96 | if err != nil { |
| 97 | t.Errorf("Listen failed: %v", err) |
| 98 | return nil, nil, err |
| 99 | } |
Cosmos Nicolaou | fdc838b | 2014-06-30 21:44:27 -0700 | [diff] [blame] | 100 | if err := server.Serve("", dispatcher); err != nil { |
| 101 | t.Errorf("Serve failed: %v", err) |
| 102 | return nil, nil, err |
| 103 | } |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 104 | return server, endpoint, nil |
| 105 | } |
| 106 | |
| 107 | func 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 | |
| 113 | func 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 Nicolaou | ef43dc4 | 2014-06-13 14:38:51 -0700 | [diff] [blame] | 124 | exists := naming.JoinAddressName(endpoint.String(), "//exists") |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 125 | |
| 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 Simsa | 1023a34 | 2014-08-20 18:01:22 -0700 | [diff] [blame] | 157 | if expected, got := "Profile added successfully.", strings.TrimSpace(stdout.String()); got != expected { |
Robin Thellend | 9259f3b | 2014-05-21 10:07:24 -0700 | [diff] [blame] | 158 | 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 | } |