tools/principal: convert regtest to v23 test.

Change-Id: I7900478b30ef075628e42f06e61e39d2735f9e11
diff --git a/tools/principal/principal_test.go b/tools/principal/principal_test.go
new file mode 100644
index 0000000..302a698
--- /dev/null
+++ b/tools/principal/principal_test.go
@@ -0,0 +1,48 @@
+package main_test
+
+import (
+	"io/ioutil"
+	"os"
+	"path/filepath"
+	"regexp"
+	"testing"
+
+	"v.io/core/veyron/lib/modules"
+	"v.io/core/veyron/lib/testutil/integration"
+)
+
+//go:generate v23 integration generate
+func TestHelperProcess(t *testing.T) {
+	modules.DispatchInTest()
+}
+
+// redirect redirects the stdout of the given invocation to the file at the
+// given path.
+func redirect(t integration.T, inv integration.Invocation, path string) {
+	if err := ioutil.WriteFile(path, []byte(inv.Output()), 0600); err != nil {
+		t.Fatalf("WriteFile(%q) failed: %v\n", path, err)
+	}
+}
+
+func V23TestBlessSelf(t integration.T) {
+	var (
+		outputDir         = t.TempDir()
+		aliceDir          = filepath.Join(outputDir, "alice")
+		aliceBlessingFile = filepath.Join(outputDir, "aliceself")
+	)
+
+	bin := t.BuildGoPkg("v.io/core/veyron/tools/principal")
+	bin.Start("create", aliceDir, "alice").WaitOrDie(os.Stdout, os.Stderr)
+
+	bin = bin.WithEnv([]string{"VEYRON_CREDENTIALS=" + aliceDir})
+	redirect(t, bin.Start("blessself", "alicereborn"), aliceBlessingFile)
+	got := bin.Start("dumpblessings", aliceBlessingFile).Output()
+	want := `Blessings          : alicereborn
+PublicKey          : ([0-9a-f]{2}:){15}[0-9a-f]{2}
+Certificate chains : 1
+Chain #0 \(1 certificates\). Root certificate public key: ([0-9a-f]{2}:){15}[0-9a-f]{2}
+  Certificate #0: alicereborn with 0 caveats`
+	if regexp.MustCompile(want).FindString(got) == "" {
+		t.Fatalf("wanted something matching \n%s, got \n%s\n", want, got)
+	}
+}