Jiri Simsa | d7616c9 | 2015-03-24 23:44:30 -0700 | [diff] [blame] | 1 | // 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 Nicolaou | c818b80 | 2015-06-05 15:52:45 -0700 | [diff] [blame] | 5 | package testutil_test |
Asim Shankar | 4a69828 | 2015-03-21 21:59:18 -0700 | [diff] [blame] | 6 | |
| 7 | import ( |
| 8 | "reflect" |
| 9 | "testing" |
Cosmos Nicolaou | c818b80 | 2015-06-05 15:52:45 -0700 | [diff] [blame] | 10 | |
| 11 | "v.io/x/ref/test/testutil" |
Asim Shankar | 4a69828 | 2015-03-21 21:59:18 -0700 | [diff] [blame] | 12 | ) |
| 13 | |
| 14 | func TestIDProvider(t *testing.T) { |
Cosmos Nicolaou | c818b80 | 2015-06-05 15:52:45 -0700 | [diff] [blame] | 15 | idp := testutil.NewIDProvider("foo") |
| 16 | p := testutil.NewPrincipal() |
Asim Shankar | 4a69828 | 2015-03-21 21:59:18 -0700 | [diff] [blame] | 17 | 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 | } |