Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 1 | package integration_test |
| 2 | |
| 3 | import ( |
| 4 | "bytes" |
| 5 | "fmt" |
| 6 | "io/ioutil" |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 7 | "net/http" |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 8 | "os" |
| 9 | "os/exec" |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 10 | "strings" |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 11 | "syscall" |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 12 | "testing" |
| 13 | |
Jiri Simsa | 764efb7 | 2014-12-25 20:57:03 -0800 | [diff] [blame] | 14 | "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 Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 20 | ) |
| 21 | |
| 22 | func init() { |
| 23 | testutil.Init() |
| 24 | } |
| 25 | |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 26 | func 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 Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 39 | func 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 Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 47 | func compareFiles(t *testing.T, f1, f2 string) { |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 48 | 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 Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 50 | } |
| 51 | } |
| 52 | |
Cosmos Nicolaou | 234642b | 2015-02-04 18:30:52 -0800 | [diff] [blame] | 53 | func deleteFile(env integration.T, clientBin integration.TestBinary, credentials, name, suffix string) { |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 54 | deleteArgs := []string{ |
| 55 | "-veyron.credentials=" + credentials, |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 56 | "-veyron.namespace.root=" + env.RootMT(), |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 57 | "delete", naming.Join(name, suffix), |
| 58 | } |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 59 | clientBin.Start(deleteArgs...).WaitOrDie(nil, nil) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 60 | } |
| 61 | |
Cosmos Nicolaou | 234642b | 2015-02-04 18:30:52 -0800 | [diff] [blame] | 62 | func downloadFile(t *testing.T, env integration.T, clientBin integration.TestBinary, expectError bool, credentials, name, path, suffix string) { |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 63 | downloadArgs := []string{ |
| 64 | "-veyron.credentials=" + credentials, |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 65 | "-veyron.namespace.root=" + env.RootMT(), |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 66 | "download", naming.Join(name, suffix), path, |
| 67 | } |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 68 | 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 Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 71 | } |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 72 | if !expectError && err != nil { |
| 73 | t.Fatalf("%s %q failed: %v", clientBin.Path(), strings.Join(downloadArgs, " "), err) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 74 | } |
| 75 | } |
| 76 | |
| 77 | func downloadURL(t *testing.T, path, rootURL, suffix string) { |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 78 | 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 Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 90 | } |
| 91 | } |
| 92 | |
Cosmos Nicolaou | 234642b | 2015-02-04 18:30:52 -0800 | [diff] [blame] | 93 | func rootURL(t *testing.T, env integration.T, clientBin integration.TestBinary, credentials, name string) string { |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 94 | rootArgs := []string{ |
| 95 | "-veyron.credentials=" + credentials, |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 96 | "-veyron.namespace.root=" + env.RootMT(), |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 97 | "url", name, |
| 98 | } |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 99 | return strings.TrimSpace(clientBin.Start(rootArgs...).Output()) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 100 | } |
| 101 | |
Cosmos Nicolaou | 234642b | 2015-02-04 18:30:52 -0800 | [diff] [blame] | 102 | func uploadFile(t *testing.T, env integration.T, clientBin integration.TestBinary, credentials, name, path, suffix string) { |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 103 | uploadArgs := []string{ |
| 104 | "-veyron.credentials=" + credentials, |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 105 | "-veyron.namespace.root=" + env.RootMT(), |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 106 | "upload", naming.Join(name, suffix), path, |
| 107 | } |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 108 | clientBin.Start(uploadArgs...).WaitOrDie(os.Stdout, os.Stderr) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | func TestHelperProcess(t *testing.T) { |
| 112 | modules.DispatchInTest() |
| 113 | } |
| 114 | |
| 115 | func TestBinaryRepositoryIntegration(t *testing.T) { |
Cosmos Nicolaou | 234642b | 2015-02-04 18:30:52 -0800 | [diff] [blame] | 116 | env := integration.New(t) |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 117 | defer env.Cleanup() |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 118 | |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 119 | // 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 Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 122 | |
| 123 | // Generate credentials. |
Ankur | 77cd9e8 | 2014-12-15 12:59:59 -0800 | [diff] [blame] | 124 | serverCred, serverPrin := security.NewCredentials("server") |
Ankur | d876269 | 2014-12-12 10:50:12 -0800 | [diff] [blame] | 125 | defer os.RemoveAll(serverCred) |
Ankur | 77cd9e8 | 2014-12-15 12:59:59 -0800 | [diff] [blame] | 126 | clientCred, _ := security.ForkCredentials(serverPrin, "client") |
Ankur | d876269 | 2014-12-12 10:50:12 -0800 | [diff] [blame] | 127 | defer os.RemoveAll(clientCred) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 128 | |
| 129 | // Start the build server. |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 130 | 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", |
Ankur | d876269 | 2014-12-12 10:50:12 -0800 | [diff] [blame] | 135 | "-veyron.credentials=" + serverCred, |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 136 | "-veyron.namespace.root=" + env.RootMT(), |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 137 | } |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 138 | |
| 139 | server := binaryRepoBin.Start(args...) |
| 140 | defer server.Kill(syscall.SIGTERM) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 141 | |
| 142 | // Upload a random binary file. |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 143 | binFile := env.TempFile() |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 144 | if _, err := binFile.Write(testutil.RandomBytes(16 * 1000 * 1000)); err != nil { |
| 145 | t.Fatalf("Write() failed: %v", err) |
| 146 | } |
| 147 | binSuffix := "test-binary" |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 148 | uploadFile(t, env, clientBin, clientCred, binaryRepoName, binFile.Name(), binSuffix) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 149 | |
| 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 Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 161 | uploadFile(t, env, clientBin, clientCred, binaryRepoName, tarFile, tarSuffix) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 162 | |
| 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 Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 167 | downloadFile(t, env, clientBin, false, clientCred, binaryRepoName, downloadedBinFile, binSuffix) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 168 | 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 Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 176 | downloadFile(t, env, clientBin, false, clientCred, binaryRepoName, downloadedTarFile, tarSuffix) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 177 | 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 Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 182 | root := rootURL(t, env, clientBin, clientCred, binaryRepoName) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 183 | |
| 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 Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 200 | deleteFile(env, clientBin, clientCred, binaryRepoName, binSuffix) |
| 201 | deleteFile(env, clientBin, clientCred, binaryRepoName, tarSuffix) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 202 | |
| 203 | // Check the files no longer exist. |
James Ring | e78c7da | 2015-01-06 15:59:37 -0800 | [diff] [blame] | 204 | downloadFile(t, env, clientBin, true, clientCred, binaryRepoName, downloadedBinFile, binSuffix) |
| 205 | downloadFile(t, env, clientBin, true, clientCred, binaryRepoName, downloadedTarFile, tarSuffix) |
Jiri Simsa | 432cc2e | 2014-12-08 15:53:38 -0800 | [diff] [blame] | 206 | } |