blob: c1f61df9cc69050ac415e4918ada0b2f7045c700 [file] [log] [blame]
Jiri Simsa432cc2e2014-12-08 15:53:38 -08001package integration_test
2
3import (
4 "bytes"
5 "fmt"
6 "io/ioutil"
James Ringe78c7da2015-01-06 15:59:37 -08007 "net/http"
Jiri Simsa432cc2e2014-12-08 15:53:38 -08008 "os"
9 "os/exec"
Jiri Simsa432cc2e2014-12-08 15:53:38 -080010 "strings"
James Ringe78c7da2015-01-06 15:59:37 -080011 "syscall"
Jiri Simsa432cc2e2014-12-08 15:53:38 -080012 "testing"
13
Jiri Simsa764efb72014-12-25 20:57:03 -080014 "v.io/core/veyron/lib/modules"
15 "v.io/core/veyron/lib/testutil"
16 "v.io/core/veyron/lib/testutil/integration"
17 "v.io/core/veyron/lib/testutil/security"
18 _ "v.io/core/veyron/profiles"
19 "v.io/core/veyron2/naming"
Jiri Simsa432cc2e2014-12-08 15:53:38 -080020)
21
22func init() {
23 testutil.Init()
24}
25
Jiri Simsa432cc2e2014-12-08 15:53:38 -080026func checkFileType(t *testing.T, file, typeString string) {
27 var catOut bytes.Buffer
28 catCmd := exec.Command("cat", file+".__info")
29 catCmd.Stdout = &catOut
30 catCmd.Stderr = &catOut
31 if err := catCmd.Run(); err != nil {
32 t.Fatalf("%q failed: %v\n%v", strings.Join(catCmd.Args, " "), err, catOut.String())
33 }
34 if got, want := strings.TrimSpace(catOut.String()), typeString; got != want {
35 t.Fatalf("unexpect file type: got %v, want %v", got, want)
36 }
37}
38
James Ringe78c7da2015-01-06 15:59:37 -080039func readFileOrDie(t *testing.T, path string) []byte {
40 result, err := ioutil.ReadFile(path)
41 if err != nil {
42 t.Fatalf("ReadFile(%q) failed: %v", path, err)
43 }
44 return result
45}
46
Jiri Simsa432cc2e2014-12-08 15:53:38 -080047func compareFiles(t *testing.T, f1, f2 string) {
James Ringe78c7da2015-01-06 15:59:37 -080048 if !bytes.Equal(readFileOrDie(t, f1), readFileOrDie(t, f2)) {
49 t.Fatalf("the contents of %s and %s differ when they should not", f1, f2)
Jiri Simsa432cc2e2014-12-08 15:53:38 -080050 }
51}
52
Cosmos Nicolaou234642b2015-02-04 18:30:52 -080053func deleteFile(env integration.T, clientBin integration.TestBinary, credentials, name, suffix string) {
Jiri Simsa432cc2e2014-12-08 15:53:38 -080054 deleteArgs := []string{
55 "-veyron.credentials=" + credentials,
James Ringe78c7da2015-01-06 15:59:37 -080056 "-veyron.namespace.root=" + env.RootMT(),
Jiri Simsa432cc2e2014-12-08 15:53:38 -080057 "delete", naming.Join(name, suffix),
58 }
James Ringe78c7da2015-01-06 15:59:37 -080059 clientBin.Start(deleteArgs...).WaitOrDie(nil, nil)
Jiri Simsa432cc2e2014-12-08 15:53:38 -080060}
61
Cosmos Nicolaou234642b2015-02-04 18:30:52 -080062func downloadFile(t *testing.T, env integration.T, clientBin integration.TestBinary, expectError bool, credentials, name, path, suffix string) {
Jiri Simsa432cc2e2014-12-08 15:53:38 -080063 downloadArgs := []string{
64 "-veyron.credentials=" + credentials,
James Ringe78c7da2015-01-06 15:59:37 -080065 "-veyron.namespace.root=" + env.RootMT(),
Jiri Simsa432cc2e2014-12-08 15:53:38 -080066 "download", naming.Join(name, suffix), path,
67 }
James Ringe78c7da2015-01-06 15:59:37 -080068 err := clientBin.Start(downloadArgs...).Wait(os.Stdout, os.Stderr)
69 if expectError && err == nil {
70 t.Fatalf("%s %q did not fail when it should", clientBin.Path(), strings.Join(downloadArgs, " "))
Jiri Simsa432cc2e2014-12-08 15:53:38 -080071 }
James Ringe78c7da2015-01-06 15:59:37 -080072 if !expectError && err != nil {
73 t.Fatalf("%s %q failed: %v", clientBin.Path(), strings.Join(downloadArgs, " "), err)
Jiri Simsa432cc2e2014-12-08 15:53:38 -080074 }
75}
76
77func downloadURL(t *testing.T, path, rootURL, suffix string) {
James Ringe78c7da2015-01-06 15:59:37 -080078 url := fmt.Sprintf("http://%v/%v", rootURL, suffix)
79 resp, err := http.Get(url)
80 if err != nil {
81 t.Fatalf("Get(%q) failed: %v", url, err)
82 }
83 output, err := ioutil.ReadAll(resp.Body)
84 resp.Body.Close()
85 if err != nil {
86 t.Fatalf("ReadAll() failed: %v", err)
87 }
88 if err = ioutil.WriteFile(path, output, 0600); err != nil {
89 t.Fatalf("WriteFile() failed: %v", err)
Jiri Simsa432cc2e2014-12-08 15:53:38 -080090 }
91}
92
Cosmos Nicolaou234642b2015-02-04 18:30:52 -080093func rootURL(t *testing.T, env integration.T, clientBin integration.TestBinary, credentials, name string) string {
Jiri Simsa432cc2e2014-12-08 15:53:38 -080094 rootArgs := []string{
95 "-veyron.credentials=" + credentials,
James Ringe78c7da2015-01-06 15:59:37 -080096 "-veyron.namespace.root=" + env.RootMT(),
Jiri Simsa432cc2e2014-12-08 15:53:38 -080097 "url", name,
98 }
James Ringe78c7da2015-01-06 15:59:37 -080099 return strings.TrimSpace(clientBin.Start(rootArgs...).Output())
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800100}
101
Cosmos Nicolaou234642b2015-02-04 18:30:52 -0800102func uploadFile(t *testing.T, env integration.T, clientBin integration.TestBinary, credentials, name, path, suffix string) {
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800103 uploadArgs := []string{
104 "-veyron.credentials=" + credentials,
James Ringe78c7da2015-01-06 15:59:37 -0800105 "-veyron.namespace.root=" + env.RootMT(),
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800106 "upload", naming.Join(name, suffix), path,
107 }
James Ringe78c7da2015-01-06 15:59:37 -0800108 clientBin.Start(uploadArgs...).WaitOrDie(os.Stdout, os.Stderr)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800109}
110
111func TestHelperProcess(t *testing.T) {
112 modules.DispatchInTest()
113}
114
115func TestBinaryRepositoryIntegration(t *testing.T) {
Cosmos Nicolaou234642b2015-02-04 18:30:52 -0800116 env := integration.New(t)
James Ringe78c7da2015-01-06 15:59:37 -0800117 defer env.Cleanup()
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800118
James Ringe78c7da2015-01-06 15:59:37 -0800119 // Build the required binaries.
120 binaryRepoBin := env.BuildGoPkg("v.io/core/veyron/services/mgmt/binary/binaryd")
121 clientBin := env.BuildGoPkg("v.io/core/veyron/tools/binary")
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800122
123 // Generate credentials.
Ankur77cd9e82014-12-15 12:59:59 -0800124 serverCred, serverPrin := security.NewCredentials("server")
Ankurd8762692014-12-12 10:50:12 -0800125 defer os.RemoveAll(serverCred)
Ankur77cd9e82014-12-15 12:59:59 -0800126 clientCred, _ := security.ForkCredentials(serverPrin, "client")
Ankurd8762692014-12-12 10:50:12 -0800127 defer os.RemoveAll(clientCred)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800128
129 // Start the build server.
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800130 binaryRepoName := "test-binary-repository"
131 args := []string{
132 "-name=" + binaryRepoName,
133 "-http=127.0.0.1:0",
134 "-veyron.tcp.address=127.0.0.1:0",
Ankurd8762692014-12-12 10:50:12 -0800135 "-veyron.credentials=" + serverCred,
James Ringe78c7da2015-01-06 15:59:37 -0800136 "-veyron.namespace.root=" + env.RootMT(),
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800137 }
James Ringe78c7da2015-01-06 15:59:37 -0800138
139 server := binaryRepoBin.Start(args...)
140 defer server.Kill(syscall.SIGTERM)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800141
142 // Upload a random binary file.
James Ringe78c7da2015-01-06 15:59:37 -0800143 binFile := env.TempFile()
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800144 if _, err := binFile.Write(testutil.RandomBytes(16 * 1000 * 1000)); err != nil {
145 t.Fatalf("Write() failed: %v", err)
146 }
147 binSuffix := "test-binary"
James Ringe78c7da2015-01-06 15:59:37 -0800148 uploadFile(t, env, clientBin, clientCred, binaryRepoName, binFile.Name(), binSuffix)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800149
150 // Upload a compressed version of the binary file.
151 tarFile := binFile.Name() + ".tar.gz"
152 var tarOut bytes.Buffer
153 tarCmd := exec.Command("tar", "zcvf", tarFile, binFile.Name())
154 tarCmd.Stdout = &tarOut
155 tarCmd.Stderr = &tarOut
156 if err := tarCmd.Run(); err != nil {
157 t.Fatalf("%q failed: %v\n%v", strings.Join(tarCmd.Args, " "), err, tarOut.String())
158 }
159 defer os.Remove(tarFile)
160 tarSuffix := "test-compressed-file"
James Ringe78c7da2015-01-06 15:59:37 -0800161 uploadFile(t, env, clientBin, clientCred, binaryRepoName, tarFile, tarSuffix)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800162
163 // Download the binary file and check that it matches the
164 // original one and that it has the right file type.
165 downloadedBinFile := binFile.Name() + "-downloaded"
166 defer os.Remove(downloadedBinFile)
James Ringe78c7da2015-01-06 15:59:37 -0800167 downloadFile(t, env, clientBin, false, clientCred, binaryRepoName, downloadedBinFile, binSuffix)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800168 compareFiles(t, binFile.Name(), downloadedBinFile)
169 checkFileType(t, downloadedBinFile, `{"Type":"application/octet-stream","Encoding":""}`)
170
171 // Download the compressed version of the binary file and
172 // check that it matches the original one and that it has the
173 // right file type.
174 downloadedTarFile := binFile.Name() + "-downloaded.tar.gz"
175 defer os.Remove(downloadedTarFile)
James Ringe78c7da2015-01-06 15:59:37 -0800176 downloadFile(t, env, clientBin, false, clientCred, binaryRepoName, downloadedTarFile, tarSuffix)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800177 compareFiles(t, tarFile, downloadedTarFile)
178 checkFileType(t, downloadedTarFile, `{"Type":"application/x-tar","Encoding":"gzip"}`)
179
180 // Fetch the root URL of the HTTP server used by the binary
181 // repository to serve URLs.
James Ringe78c7da2015-01-06 15:59:37 -0800182 root := rootURL(t, env, clientBin, clientCred, binaryRepoName)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800183
184 // Download the binary file using the HTTP protocol and check
185 // that it matches the original one.
186 downloadedBinFileURL := binFile.Name() + "-downloaded-url"
187 defer os.Remove(downloadedBinFileURL)
188 downloadURL(t, downloadedBinFileURL, root, binSuffix)
189 compareFiles(t, downloadedBinFile, downloadedBinFileURL)
190
191 // Download the compressed version of the binary file using
192 // the HTTP protocol and check that it matches the original
193 // one.
194 downloadedTarFileURL := binFile.Name() + "-downloaded-url.tar.gz"
195 defer os.Remove(downloadedTarFileURL)
196 downloadURL(t, downloadedTarFileURL, root, tarSuffix)
197 compareFiles(t, downloadedTarFile, downloadedTarFileURL)
198
199 // Delete the files.
James Ringe78c7da2015-01-06 15:59:37 -0800200 deleteFile(env, clientBin, clientCred, binaryRepoName, binSuffix)
201 deleteFile(env, clientBin, clientCred, binaryRepoName, tarSuffix)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800202
203 // Check the files no longer exist.
James Ringe78c7da2015-01-06 15:59:37 -0800204 downloadFile(t, env, clientBin, true, clientCred, binaryRepoName, downloadedBinFile, binSuffix)
205 downloadFile(t, env, clientBin, true, clientCred, binaryRepoName, downloadedTarFile, tarSuffix)
Jiri Simsa432cc2e2014-12-08 15:53:38 -0800206}