blob: b13eb6b03ec5fda69a008039bbb38a33f78f9bb3 [file] [log] [blame]
Jiri Simsad7616c92015-03-24 23:44:30 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Cosmos Nicolaouc818b802015-06-05 15:52:45 -07005package testutil_test
Asim Shankar4a698282015-03-21 21:59:18 -07006
7import (
8 "reflect"
9 "testing"
Cosmos Nicolaouc818b802015-06-05 15:52:45 -070010
11 "v.io/x/ref/test/testutil"
Asim Shankar4a698282015-03-21 21:59:18 -070012)
13
14func TestIDProvider(t *testing.T) {
Cosmos Nicolaouc818b802015-06-05 15:52:45 -070015 idp := testutil.NewIDProvider("foo")
16 p := testutil.NewPrincipal()
Asim Shankar4a698282015-03-21 21:59:18 -070017 if err := idp.Bless(p, "bar"); err != nil {
18 t.Fatal(err)
19 }
20 if err := p.Roots().Recognized(idp.PublicKey(), "foo"); err != nil {
21 t.Error(err)
22 }
23 if err := p.Roots().Recognized(idp.PublicKey(), "foo/bar"); err != nil {
24 t.Error(err)
25 }
26 def := p.BlessingStore().Default()
27 peers := p.BlessingStore().ForPeer("anyone_else")
28 if def.IsZero() {
29 t.Errorf("BlessingStore should have a default blessing")
30 }
31 if !reflect.DeepEqual(peers, def) {
32 t.Errorf("ForPeer(...) returned %v, want %v", peers, def)
33 }
34 // TODO(ashankar): Implement a security.Call and test the string
35 // values as well.
36}