Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 1 | package handlers |
| 2 | |
| 3 | import ( |
Nicolas LaCasse | 4c0a4b1 | 2014-12-12 14:51:20 -0800 | [diff] [blame] | 4 | "encoding/base64" |
| 5 | "encoding/json" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 6 | "net/http" |
| 7 | "net/http/httptest" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 8 | "reflect" |
Nicolas LaCasse | 4c0a4b1 | 2014-12-12 14:51:20 -0800 | [diff] [blame] | 9 | "sort" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 10 | "testing" |
| 11 | |
Jiri Simsa | 6ac9522 | 2015-02-23 16:11:49 -0800 | [diff] [blame] | 12 | "v.io/v23/security" |
Cosmos Nicolaou | f889c73 | 2014-10-16 20:46:54 -0700 | [diff] [blame] | 13 | |
Suharsh Sivakumar | c004811 | 2015-03-19 11:48:28 -0700 | [diff] [blame] | 14 | "v.io/x/ref/services/identity" |
Asim Shankar | 4a69828 | 2015-03-21 21:59:18 -0700 | [diff] [blame^] | 15 | "v.io/x/ref/test/testutil" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 16 | ) |
| 17 | |
Nicolas LaCasse | 4c0a4b1 | 2014-12-12 14:51:20 -0800 | [diff] [blame] | 18 | func TestBlessingRoot(t *testing.T) { |
| 19 | blessingNames := []string{"test-blessing-name-1", "test-blessing-name-2"} |
Asim Shankar | 4a69828 | 2015-03-21 21:59:18 -0700 | [diff] [blame^] | 20 | p := testutil.NewPrincipal(blessingNames...) |
Nicolas LaCasse | 4c0a4b1 | 2014-12-12 14:51:20 -0800 | [diff] [blame] | 21 | |
| 22 | ts := httptest.NewServer(BlessingRoot{p}) |
| 23 | defer ts.Close() |
| 24 | response, err := http.Get(ts.URL) |
| 25 | if err != nil { |
| 26 | t.Fatal(err) |
| 27 | } |
| 28 | dec := json.NewDecoder(response.Body) |
Suharsh Sivakumar | c004811 | 2015-03-19 11:48:28 -0700 | [diff] [blame] | 29 | var res identity.BlessingRootResponse |
Nicolas LaCasse | 4c0a4b1 | 2014-12-12 14:51:20 -0800 | [diff] [blame] | 30 | if err := dec.Decode(&res); err != nil { |
| 31 | t.Fatal(err) |
| 32 | } |
| 33 | |
| 34 | // Check that the names are correct. |
| 35 | sort.Strings(blessingNames) |
| 36 | sort.Strings(res.Names) |
| 37 | if !reflect.DeepEqual(res.Names, blessingNames) { |
| 38 | t.Errorf("Response has incorrect name. Got %v, want %v", res.Names, blessingNames) |
| 39 | } |
| 40 | |
| 41 | // Check that the public key is correct. |
| 42 | gotMarshalled, err := base64.URLEncoding.DecodeString(res.PublicKey) |
| 43 | if err != nil { |
| 44 | t.Fatal(err) |
| 45 | } |
| 46 | got, err := security.UnmarshalPublicKey(gotMarshalled) |
| 47 | if err != nil { |
| 48 | t.Fatal(err) |
| 49 | } |
| 50 | if want := p.PublicKey(); !reflect.DeepEqual(got, want) { |
| 51 | t.Errorf("Response has incorrect public key. Got %v, want %v", got, want) |
| 52 | } |
| 53 | } |