blob: 4c8b5b526fcb9f62cfb4e33f64c15522c27e6752 [file] [log] [blame]
Bogdan Capritab646a1c2015-01-30 19:16:37 -08001package impl_test
2
3import (
4 "bytes"
Bogdan Caprita8964d3f2015-02-02 13:47:39 -08005 "encoding/json"
Bogdan Capritab646a1c2015-01-30 19:16:37 -08006 "fmt"
Bogdan Caprita50e21532015-02-06 17:33:27 -08007 "io/ioutil"
Bogdan Capritab646a1c2015-01-30 19:16:37 -08008 "os"
Bogdan Caprita50e21532015-02-06 17:33:27 -08009 "path/filepath"
Bogdan Capritab646a1c2015-01-30 19:16:37 -080010 "reflect"
11 "strings"
12 "testing"
13
14 "v.io/core/veyron2/naming"
gauthamtcb03d132015-02-05 18:05:22 -080015 "v.io/core/veyron2/security"
Bogdan Capritab646a1c2015-01-30 19:16:37 -080016 "v.io/core/veyron2/services/mgmt/application"
Bogdan Caprita8964d3f2015-02-02 13:47:39 -080017 "v.io/core/veyron2/services/mgmt/device"
Bogdan Capritab646a1c2015-01-30 19:16:37 -080018
19 "v.io/core/veyron/tools/mgmt/device/impl"
20)
21
Bogdan Caprita50e21532015-02-06 17:33:27 -080022func createFile(t *testing.T, path string, contents string) {
23 if err := ioutil.WriteFile(path, []byte(contents), 0700); err != nil {
24 t.Fatalf("Failed to create %v: %v", path, err)
25 }
26}
27
Bogdan Capritab646a1c2015-01-30 19:16:37 -080028func TestInstallLocalCommand(t *testing.T) {
29 shutdown := initTest()
30 defer shutdown()
31
32 tape := NewTape()
33 server, endpoint, err := startServer(t, gctx, tape)
34 if err != nil {
35 return
36 }
37 defer stopServer(t, server)
38 // Setup the command-line.
39 cmd := impl.Root()
40 var stdout, stderr bytes.Buffer
41 cmd.Init(nil, &stdout, &stderr)
42 deviceName := naming.JoinAddressName(endpoint.String(), "")
Bogdan Caprita50e21532015-02-06 17:33:27 -080043 const appTitle = "Appo di tutti Appi"
44 binary := os.Args[0]
45 fi, err := os.Stat(binary)
46 if err != nil {
47 t.Fatalf("Failed to stat %v: %v", binary, err)
48 }
49 binarySize := fi.Size()
Bogdan Capritab646a1c2015-01-30 19:16:37 -080050 for i, c := range []struct {
51 args []string
52 stderrSubstr string
53 }{
54 {
Bogdan Caprita8964d3f2015-02-02 13:47:39 -080055 []string{deviceName}, "incorrect number of arguments",
Bogdan Capritab646a1c2015-01-30 19:16:37 -080056 },
57 {
Bogdan Caprita8964d3f2015-02-02 13:47:39 -080058 []string{deviceName, appTitle}, "missing binary",
Bogdan Capritab646a1c2015-01-30 19:16:37 -080059 },
60 {
Bogdan Caprita8964d3f2015-02-02 13:47:39 -080061 []string{deviceName, appTitle, "a=b"}, "missing binary",
Bogdan Capritab646a1c2015-01-30 19:16:37 -080062 },
63 {
Bogdan Caprita8964d3f2015-02-02 13:47:39 -080064 []string{deviceName, appTitle, "foo"}, "binary foo not found",
Bogdan Capritab646a1c2015-01-30 19:16:37 -080065 },
Bogdan Caprita50e21532015-02-06 17:33:27 -080066 {
67 []string{deviceName, appTitle, binary, "PACKAGES", "foo"}, "foo not found",
68 },
Bogdan Capritab646a1c2015-01-30 19:16:37 -080069 } {
Bogdan Caprita8964d3f2015-02-02 13:47:39 -080070 c.args = append([]string{"install-local"}, c.args...)
Bogdan Capritab646a1c2015-01-30 19:16:37 -080071 if err := cmd.Execute(c.args); err == nil {
72 t.Fatalf("test case %d: wrongly failed to receive a non-nil error.", i)
73 } else {
74 fmt.Fprintln(&stderr, "ERROR:", err)
75 if want, got := c.stderrSubstr, stderr.String(); !strings.Contains(got, want) {
76 t.Errorf("test case %d: %q not found in stderr: %q", i, want, got)
77 }
78 }
79 if got, expected := len(tape.Play()), 0; got != expected {
80 t.Errorf("test case %d: invalid call sequence. Got %v, want %v", got, expected)
81 }
82 tape.Rewind()
83 stdout.Reset()
84 stderr.Reset()
85 }
gauthamtcb03d132015-02-05 18:05:22 -080086 emptySig := security.Signature{Purpose: []uint8{}, Hash: "", R: []uint8{}, S: []uint8{}}
87 emptyBlessings := security.WireBlessings{}
Bogdan Caprita8964d3f2015-02-02 13:47:39 -080088 cfg := device.Config{"someflag": "somevalue"}
Bogdan Caprita50e21532015-02-06 17:33:27 -080089
90 testPackagesDir, err := ioutil.TempDir("", "testdir")
91 if err != nil {
92 t.Fatalf("Failed to create temp dir: %v", err)
93 }
94 defer os.RemoveAll(testPackagesDir)
95 pkgFile1 := filepath.Join(testPackagesDir, "file1.txt")
96 createFile(t, pkgFile1, "1234567")
97 pkgFile2 := filepath.Join(testPackagesDir, "file2")
98 createFile(t, pkgFile2, string([]byte{0x01, 0x02, 0x03, 0x04}))
99 pkgDir := filepath.Join(testPackagesDir, "dir")
100 if err := os.Mkdir(pkgDir, 0700); err != nil {
101 t.Fatalf("Failed to create dir: %v", err)
102 }
103 createFile(t, filepath.Join(pkgDir, "f1"), "123")
104 createFile(t, filepath.Join(pkgDir, "f2"), "456")
105 createFile(t, filepath.Join(pkgDir, "f3"), "7890")
106
Bogdan Capritab646a1c2015-01-30 19:16:37 -0800107 for i, c := range []struct {
108 args []string
Bogdan Caprita8964d3f2015-02-02 13:47:39 -0800109 config device.Config
Bogdan Capritab646a1c2015-01-30 19:16:37 -0800110 expectedTape interface{}
111 }{
112 {
Bogdan Caprita8964d3f2015-02-02 13:47:39 -0800113 []string{deviceName, appTitle, binary},
114 nil,
Bogdan Caprita50e21532015-02-06 17:33:27 -0800115 InstallStimulus{
116 "Install",
117 appNameAfterFetch,
118 nil,
119 application.Envelope{
120 Title: appTitle,
121 Binary: binaryNameAfterFetch,
122 Signature: emptySig,
123 Publisher: emptyBlessings,
124 },
125 map[string]int64{"binary": binarySize}},
Bogdan Capritab646a1c2015-01-30 19:16:37 -0800126 },
127 {
Bogdan Caprita8964d3f2015-02-02 13:47:39 -0800128 []string{deviceName, appTitle, binary},
129 cfg,
Bogdan Caprita50e21532015-02-06 17:33:27 -0800130 InstallStimulus{
131 "Install",
132 appNameAfterFetch,
133 cfg,
134 application.Envelope{
135 Title: appTitle,
136 Binary: binaryNameAfterFetch,
137 Signature: emptySig,
138 Publisher: emptyBlessings,
139 },
140 map[string]int64{"binary": binarySize}},
Bogdan Caprita8964d3f2015-02-02 13:47:39 -0800141 },
142 {
143 []string{deviceName, appTitle, "ENV1=V1", "ENV2=V2", binary, "FLAG1=V1", "FLAG2=V2"},
144 nil,
Bogdan Caprita50e21532015-02-06 17:33:27 -0800145 InstallStimulus{
146 "Install",
147 appNameAfterFetch,
148 nil,
149 application.Envelope{
150 Title: appTitle,
151 Binary: binaryNameAfterFetch,
152 Signature: emptySig,
153 Publisher: emptyBlessings,
154 Env: []string{"ENV1=V1", "ENV2=V2"},
155 Args: []string{"FLAG1=V1", "FLAG2=V2"},
156 },
157 map[string]int64{"binary": binarySize}},
158 },
159 {
160 []string{deviceName, appTitle, "ENV=V", binary, "FLAG=V", "PACKAGES", pkgFile1, pkgFile2, pkgDir},
161 nil,
162 InstallStimulus{"Install",
163 appNameAfterFetch,
164 nil,
165 application.Envelope{
166 Title: appTitle,
167 Binary: binaryNameAfterFetch,
168 Signature: emptySig,
169 Publisher: emptyBlessings,
170 Env: []string{"ENV=V"},
171 Args: []string{"FLAG=V"},
172 },
173 map[string]int64{"binary": binarySize, "packages/file1.txt": 7, "packages/file2": 4, "packages/dir": 10}},
Bogdan Capritab646a1c2015-01-30 19:16:37 -0800174 },
175 } {
Bogdan Caprita50e21532015-02-06 17:33:27 -0800176 const appId = "myBestAppID"
Bogdan Capritab646a1c2015-01-30 19:16:37 -0800177 tape.SetResponses([]interface{}{InstallResponse{appId, nil}})
Bogdan Caprita8964d3f2015-02-02 13:47:39 -0800178 if c.config != nil {
179 jsonConfig, err := json.Marshal(c.config)
180 if err != nil {
181 t.Fatalf("test case %d: Marshal(%v) failed: %v", i, c.config, err)
182 }
183 c.args = append([]string{fmt.Sprintf("--config=%s", string(jsonConfig))}, c.args...)
184 }
185 c.args = append([]string{"install-local"}, c.args...)
Bogdan Capritab646a1c2015-01-30 19:16:37 -0800186 if err := cmd.Execute(c.args); err != nil {
187 t.Fatalf("test case %d: %v", i, err)
188 }
189 if expected, got := fmt.Sprintf("Successfully installed: %q", naming.Join(deviceName, appId)), strings.TrimSpace(stdout.String()); got != expected {
190 t.Fatalf("test case %d: Unexpected output from Install. Got %q, expected %q", i, got, expected)
191 }
192 if got, expected := tape.Play(), []interface{}{c.expectedTape}; !reflect.DeepEqual(expected, got) {
193 t.Errorf("test case %d: Invalid call sequence. Got %#v, want %#v", i, got, expected)
194 }
195 tape.Rewind()
196 stdout.Reset()
197 stderr.Reset()
198 }
199}