client_test.go 794 B

123456789101112131415161718192021222324252627282930313233
  1. package client
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "go-common/app/interface/main/history/model"
  7. )
  8. func TestHistory(t *testing.T) {
  9. s := New(nil)
  10. time.Sleep(1 * time.Second)
  11. testProgress(t, s)
  12. testAdd(t, s)
  13. }
  14. // testProgress test progress rpc.
  15. func testProgress(t *testing.T, s *Service) {
  16. if res, err := s.Progress(context.TODO(), &model.ArgPro{Mid: 88888966, Aids: []int64{5463286}}); err != nil {
  17. t.Errorf("Service: Progress err: %v", err)
  18. } else {
  19. t.Logf("Service: zone res: %+v", res)
  20. }
  21. }
  22. // testAdd test add rpc .
  23. func testAdd(t *testing.T, s *Service) {
  24. h := &model.History{Mid: 88888966, Aid: 5463286, TP: -1, Unix: 1494217922}
  25. if err := s.Add(context.TODO(), &model.ArgHistory{Mid: 88888966, History: h}); err != nil {
  26. t.Errorf("Service: Add err: %v", err)
  27. }
  28. }