dm_test.go 650 B

1234567891011121314151617181920212223242526272829303132333435
  1. package client
  2. import (
  3. "context"
  4. "os"
  5. "testing"
  6. "go-common/app/interface/main/dm2/model"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. var svr *Service
  10. func TestMain(m *testing.M) {
  11. // new rpc client
  12. svr = New(nil)
  13. os.Exit(m.Run())
  14. }
  15. func TestSubjectInfos(t *testing.T) {
  16. var (
  17. tp int32 = 1
  18. oids = []int64{1221, 1491, 1352, 1391, 1291, 10109227}
  19. )
  20. Convey("test dm subject info", t, func() {
  21. arg := &model.ArgOids{Type: tp, Oids: oids, Plat: 1}
  22. res, err := svr.SubjectInfos(context.TODO(), arg)
  23. So(err, ShouldBeNil)
  24. So(res, ShouldNotBeEmpty)
  25. for oid, v := range res {
  26. t.Logf("oid:%d,%+v", oid, v)
  27. }
  28. })
  29. }