dm_test.go 959 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package service
  2. import (
  3. "context"
  4. "fmt"
  5. "testing"
  6. "go-common/app/interface/main/dm2/model"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func BenchmarkDMXML(b *testing.B) {
  10. b.ResetTimer()
  11. b.RunParallel(func(pb *testing.PB) {
  12. for pb.Next() {
  13. _, err := svr.DMXML(context.TODO(), 1, 1221)
  14. if err != nil {
  15. fmt.Println(err)
  16. }
  17. }
  18. })
  19. }
  20. func TestDMDistribution(t *testing.T) {
  21. res, err := svr.DMDistribution(context.TODO(), 1, 1221, 5)
  22. if err != nil {
  23. t.Error(err)
  24. }
  25. t.Log(res)
  26. }
  27. func TestAsyncAddDM(t *testing.T) {
  28. dm := model.DM{
  29. ID: 123,
  30. Content: &model.Content{
  31. ID: 123,
  32. },
  33. }
  34. if err := svr.asyncAddDM(&dm, 1, 1); err != nil {
  35. t.Error(err)
  36. }
  37. }
  38. func TestDMList(t *testing.T) {
  39. var (
  40. oid int64 = 5
  41. dmids = []int64{719149905, 719149906, 719149907}
  42. )
  43. Convey("test dm list", t, func() {
  44. res, err := svr.dmList(context.TODO(), 1, oid, dmids)
  45. So(err, ShouldBeNil)
  46. So(res, ShouldNotBeEmpty)
  47. })
  48. }