click_test.go 766 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/job/main/click/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func Test_Click(t *testing.T) {
  9. Convey("Click", t, func() {
  10. _, err := d.Click(context.TODO(), 1)
  11. So(err, ShouldBeNil)
  12. })
  13. }
  14. func Test_AddClick(t *testing.T) {
  15. Convey("AddClick", t, func() {
  16. _, err := d.AddClick(context.TODO(), 3, 1, 1, 1, 1, 1, 100)
  17. So(err, ShouldBeNil)
  18. })
  19. }
  20. func Test_UpClick(t *testing.T) {
  21. Convey("UpClick", t, func() {
  22. rows, err := d.UpClick(context.TODO(), &model.ClickInfo{Aid: 2, AndroidTV: 22222})
  23. Println(rows, err)
  24. })
  25. }
  26. func Test_UpSpecial(t *testing.T) {
  27. Convey("UpSpecial", t, func() {
  28. _, err := d.UpSpecial(context.TODO(), 1, model.TypeForAndroid, 1)
  29. So(err, ShouldBeNil)
  30. })
  31. }