subject_test.go 830 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/dm2/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestSubjectInfos(t *testing.T) {
  9. var (
  10. c = context.TODO()
  11. tp int32 = 1
  12. oids = []int64{1221, 1231, 2386052}
  13. )
  14. Convey("get dm subject info", t, func() {
  15. res, err := svr.SubjectInfos(c, tp, model.MaskPlatMbl, oids)
  16. So(err, ShouldBeNil)
  17. So(res, ShouldNotBeEmpty)
  18. for _, hit := range res {
  19. t.Logf(":%+v", hit)
  20. }
  21. })
  22. }
  23. func TestSubjects(t *testing.T) {
  24. var (
  25. c = context.TODO()
  26. tp int32 = 1
  27. oids = []int64{1221, 1231, 49859595}
  28. )
  29. Convey("get dm subject info", t, func() {
  30. res, err := svr.subjects(c, tp, oids)
  31. So(err, ShouldBeNil)
  32. So(res, ShouldNotBeEmpty)
  33. for _, hit := range res {
  34. t.Logf(":%+v", hit)
  35. }
  36. })
  37. }