oauth2_client_test.go 482 B

123456789101112131415161718192021222324
  1. package vip
  2. import (
  3. "net/url"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestVipsign(t *testing.T) {
  8. convey.Convey("sign", t, func(convCtx convey.C) {
  9. var (
  10. params url.Values
  11. path = ""
  12. secret = ""
  13. )
  14. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  15. p1 := sign(params, path, secret)
  16. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  17. convCtx.So(p1, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }