Suharsh Sivakumar | 8e898db | 2014-12-17 14:07:21 -0800 | [diff] [blame] | 1 | package oauth |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 2 | |
| 3 | import ( |
| 4 | "strings" |
| 5 | "testing" |
| 6 | ) |
| 7 | |
| 8 | func 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 | } |