recruit_test.go 784 B

1234567891011121314151617181920212223242526272829303132
  1. package web
  2. import (
  3. "context"
  4. "net/url"
  5. "testing"
  6. "go-common/app/interface/main/web-goblin/model/web"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestWebRecruit(t *testing.T) {
  10. convey.Convey("Recruit", t, func(ctx convey.C) {
  11. var (
  12. c = context.Background()
  13. params = url.Values{}
  14. ru = &web.Params{
  15. Route: "v1/jobs",
  16. }
  17. )
  18. params.Set("mode", "social")
  19. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  20. httpMock("GET", "https://api.mokahr.com/v1/jobs/bilibili").Reply(200).JSON(`{jobs:[], "total": 245}`)
  21. res, err := d.Recruit(c, params, ru)
  22. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  23. ctx.So(err, convey.ShouldBeNil)
  24. ctx.So(res, convey.ShouldNotBeNil)
  25. })
  26. })
  27. })
  28. }