blob: a4c65af9298833d3cdd5984268e87fe5cce52b54 [file] [log] [blame]
Jiri Simsa5293dcb2014-05-10 09:56:38 -07001package handlers
2
3import (
Nicolas LaCasse4c0a4b12014-12-12 14:51:20 -08004 "encoding/base64"
5 "encoding/json"
Jiri Simsa5293dcb2014-05-10 09:56:38 -07006 "net/http"
7 "net/http/httptest"
Jiri Simsa5293dcb2014-05-10 09:56:38 -07008 "reflect"
Nicolas LaCasse4c0a4b12014-12-12 14:51:20 -08009 "sort"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070010 "testing"
11
Jiri Simsa6ac95222015-02-23 16:11:49 -080012 "v.io/v23/security"
Cosmos Nicolaouf889c732014-10-16 20:46:54 -070013
Suharsh Sivakumarc0048112015-03-19 11:48:28 -070014 "v.io/x/ref/services/identity"
Asim Shankar4a698282015-03-21 21:59:18 -070015 "v.io/x/ref/test/testutil"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070016)
17
Nicolas LaCasse4c0a4b12014-12-12 14:51:20 -080018func TestBlessingRoot(t *testing.T) {
19 blessingNames := []string{"test-blessing-name-1", "test-blessing-name-2"}
Asim Shankar4a698282015-03-21 21:59:18 -070020 p := testutil.NewPrincipal(blessingNames...)
Nicolas LaCasse4c0a4b12014-12-12 14:51:20 -080021
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 Sivakumarc0048112015-03-19 11:48:28 -070029 var res identity.BlessingRootResponse
Nicolas LaCasse4c0a4b12014-12-12 14:51:20 -080030 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}