blob: 2fc17049a4f8fd7b862b5d28aeb989b134cba976 [file] [log] [blame]
Suharsh Sivakumar8e898db2014-12-17 14:07:21 -08001package oauth
Jiri Simsa5293dcb2014-05-10 09:56:38 -07002
3import (
4 "strings"
5 "testing"
6)
7
8func TestClientIDAndSecretFromJSON(t *testing.T) {
9 json := `{"web":{"auth_uri":"https://accounts.google.com/o/oauth2/auth","client_secret":"SECRET","token_uri":"https://accounts.google.com/o/oauth2/token","client_email":"EMAIL","redirect_uris":["http://redirecturl"],"client_id":"ID","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","javascript_origins":["http://javascriptorigins"]}}`
10 id, secret, err := ClientIDAndSecretFromJSON(strings.NewReader(json))
11 if err != nil {
12 t.Error(err)
13 }
14 if id != "ID" {
15 t.Errorf("Got %q want %q", id, "ID")
16 }
17 if secret != "SECRET" {
18 t.Errorf("Got %q want %q", secret, "SECRET")
19 }
20}