blob: 6140f73e5580282c8ce0647fc594989614a53dcc [file] [log] [blame]
package integration_test
import (
"encoding/json"
"os"
"strings"
"syscall"
"testing"
"v.io/core/veyron/lib/modules"
"v.io/core/veyron/lib/testutil/integration"
libsecurity "v.io/core/veyron/lib/testutil/security"
_ "v.io/core/veyron/profiles"
vsecurity "v.io/core/veyron/security"
"v.io/core/veyron2/naming"
"v.io/core/veyron2/security"
)
var binPkgs = []string{
"v.io/core/veyron/services/mgmt/application/applicationd",
"v.io/core/veyron/tools/application",
}
func helper(t *testing.T, env integration.T, clientBin integration.TestBinary, expectError bool, credentials, cmd string, args ...string) string {
args = append([]string{"-veyron.credentials=" + credentials, "-veyron.namespace.root=" + env.RootMT(), cmd}, args...)
inv := clientBin.Start(args...)
out := inv.Output()
err := inv.Wait(os.Stdout, os.Stderr)
if err != nil && !expectError {
t.Fatalf("%s %q failed: %v\n%v", clientBin.Path(), strings.Join(args, " "), err, out)
}
if err == nil && expectError {
t.Fatalf("%s %q did not fail when it should", clientBin.Path(), strings.Join(args, " "))
}
return strings.TrimSpace(out)
}
func matchEnvelope(t *testing.T, env integration.T, clientBin integration.TestBinary, expectError bool, credentials, name, suffix string) string {
return helper(t, env, clientBin, expectError, credentials, "match", naming.Join(name, suffix), "test-profile")
}
func putEnvelope(t *testing.T, env integration.T, clientBin integration.TestBinary, credentials, name, suffix, envelope string) string {
return helper(t, env, clientBin, false, credentials, "put", naming.Join(name, suffix), "test-profile", envelope)
}
func removeEnvelope(t *testing.T, env integration.T, clientBin integration.TestBinary, credentials, name, suffix string) string {
return helper(t, env, clientBin, false, credentials, "remove", naming.Join(name, suffix), "test-profile")
}
func TestHelperProcess(t *testing.T) {
modules.DispatchInTest()
}
func TestApplicationRepository(t *testing.T) {
env := integration.New(t)
defer env.Cleanup()
// Generate credentials.
serverCred, serverPrin := libsecurity.NewCredentials("server")
defer os.RemoveAll(serverCred)
clientCred, _ := libsecurity.ForkCredentials(serverPrin, "client")
defer os.RemoveAll(clientCred)
// Start the application repository.
appRepoName := "test-app-repo"
appRepoStore := env.TempDir()
args := []string{
"-name=" + appRepoName,
"-store=" + appRepoStore,
"-veyron.tcp.address=127.0.0.1:0",
"-veyron.credentials=" + serverCred,
"-veyron.namespace.root=" + env.RootMT(),
}
serverBin := env.BuildGoPkg("v.io/core/veyron/services/mgmt/application/applicationd")
serverProcess := serverBin.Start(args...)
defer serverProcess.Kill(syscall.SIGTERM)
// Build the client binary.
clientBin := env.BuildGoPkg("v.io/core/veyron/tools/application")
// Generate publisher blessings
principal, err := vsecurity.NewPrincipal()
if err != nil {
t.Fatal(err)
}
blessings, err := principal.BlessSelf("self")
if err != nil {
t.Fatal(err)
}
sig, err := principal.Sign([]byte("binarycontents"))
if err != nil {
t.Fatal(err)
}
sigJSON, err := json.MarshalIndent(sig, " ", " ")
if err != nil {
t.Fatal(err)
}
pubJSON, err := json.MarshalIndent(security.MarshalBlessings(blessings), " ", " ")
if err != nil {
t.Fatal(err)
}
// Create an application envelope.
appRepoSuffix := "test-application/v1"
appEnvelopeFile := env.TempFile()
wantEnvelope := `{
"Title": "title",
"Args": null,
"Binary": "foo",
"Signature": ` + string(sigJSON) + `,
"Publisher": ` + string(pubJSON) + `,
"Env": null,
"Packages": null
}`
if _, err := appEnvelopeFile.Write([]byte(wantEnvelope)); err != nil {
t.Fatalf("Write() failed: %v", err)
}
putEnvelope(t, env, clientBin, clientCred, appRepoName, appRepoSuffix, appEnvelopeFile.Name())
// Match the application envelope.
gotEnvelope := matchEnvelope(t, env, clientBin, false, clientCred, appRepoName, appRepoSuffix)
if gotEnvelope != wantEnvelope {
t.Fatalf("unexpected output: got %v, want %v", gotEnvelope, wantEnvelope)
}
// Remove the application envelope.
removeEnvelope(t, env, clientBin, clientCred, appRepoName, appRepoSuffix)
// Check that the application envelope no longer exists.
matchEnvelope(t, env, clientBin, true, clientCred, appRepoName, appRepoSuffix)
}