consumer_test.go 737 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package service
  2. import (
  3. "testing"
  4. "time"
  5. "github.com/Shopify/sarama"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. // TestStartConsume .
  9. func TestStartConsume(t *testing.T) {
  10. Convey("start consume", t, func() {
  11. err := svr.StartConsume()
  12. So(err, ShouldNotBeNil)
  13. })
  14. }
  15. func TestStartHandle(t *testing.T) {
  16. go svr.handleMsg()
  17. }
  18. // TestHandle .
  19. func TestHandle(t *testing.T) {
  20. Convey("handle msg", t, func() {
  21. var l = `a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|1|2|3|4|5|6|7|8`
  22. msg := &sarama.ConsumerMessage{
  23. Value: []byte(l),
  24. }
  25. svr.consumer.messages <- msg
  26. time.Sleep(time.Second)
  27. So(len(svr.consumer.messages), ShouldEqual, 0)
  28. })
  29. }
  30. // TestClose .
  31. func TestClose(t *testing.T) {
  32. svr.Close()
  33. }