community_test.go 759 B

1234567891011121314151617181920212223242526272829303132333435
  1. package community
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "testing"
  7. "go-common/app/interface/main/app-interface/conf"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. // go test -conf="../../app-interface-example.toml" -v -test.run TestCommunity
  11. func TestCommunity(t *testing.T) {
  12. Convey("TestCommuity", t, func() {
  13. })
  14. err := conf.Init()
  15. if err != nil {
  16. return
  17. }
  18. dao := New(conf.Conf)
  19. community, _, err := dao.Community(context.TODO(), 28009145, "2e3950631afd879592de5e2ee34c7293", "android", 1, 20)
  20. if err != nil {
  21. t.Errorf("dao.Community error(%v)", err)
  22. return
  23. }
  24. result, err := json.Marshal(community)
  25. if err != nil {
  26. t.Errorf("json.Marshal error(%v)", err)
  27. return
  28. }
  29. fmt.Printf("test community (%v) \n", string(result))
  30. }