add test
This commit is contained in:
parent
83242d96ca
commit
a98b28c817
|
@ -26,7 +26,7 @@ func TestRegisterApp(t *testing.T) {
|
||||||
fmt.Fprintln(w, `<html><head><title>Apps</title></head></html>`)
|
fmt.Fprintln(w, `<html><head><title>Apps</title></head></html>`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
fmt.Fprintln(w, `{"client_id": "foo", "client_secret": "bar"}`)
|
fmt.Fprintln(w, `{"id": 123, "client_id": "foo", "client_secret": "bar"}`)
|
||||||
return
|
return
|
||||||
}))
|
}))
|
||||||
defer ts.Close()
|
defer ts.Close()
|
||||||
|
@ -64,6 +64,9 @@ func TestRegisterApp(t *testing.T) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("should not be fail: %v", err)
|
t.Fatalf("should not be fail: %v", err)
|
||||||
}
|
}
|
||||||
|
if string(app.ID) != "123" {
|
||||||
|
t.Fatalf("want %q but %q", "bar", app.ClientSecret)
|
||||||
|
}
|
||||||
if app.ClientID != "foo" {
|
if app.ClientID != "foo" {
|
||||||
t.Fatalf("want %q but %q", "foo", app.ClientID)
|
t.Fatalf("want %q but %q", "foo", app.ClientID)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user