operation_test.go 925 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package operation
  2. import (
  3. "context"
  4. "go-common/library/ecode"
  5. "testing"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func Test_WebOperations(t *testing.T) {
  9. Convey("WebOperations", t, WithService(func(s *Service) {
  10. res, err := s.WebOperations(context.TODO())
  11. So(err, ShouldEqual, ecode.NothingFound)
  12. So(res, ShouldBeNil)
  13. }))
  14. Convey("Ping", t, WithService(func(s *Service) {
  15. err := s.Ping(context.TODO())
  16. So(err, ShouldEqual, ecode.NothingFound)
  17. }))
  18. }
  19. func Test_AppBanner(t *testing.T) {
  20. Convey("AppBanner", t, WithService(func(s *Service) {
  21. bns, cbns, err := s.AppBanner(context.TODO())
  22. So(bns, ShouldBeNil)
  23. So(cbns, ShouldBeNil)
  24. So(err, ShouldNotBeNil)
  25. }))
  26. }
  27. func Test_CreatorOperationList(t *testing.T) {
  28. Convey("CreatorOperationList", t, WithService(func(s *Service) {
  29. bns, err := s.CreatorOperationList(context.TODO(), 1, 10)
  30. So(bns, ShouldBeNil)
  31. So(err, ShouldNotBeNil)
  32. }))
  33. }