You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
905 B
28 lines
905 B
package archive |
|
|
|
import ( |
|
"context" |
|
"fmt" |
|
"testing" |
|
|
|
"go-common/library/database/sql" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func getPassAid(db *sql.DB) (aid int64, err error) { |
|
if err = db.QueryRow(context.Background(), "select aid from ugc_archive where deleted = 0 and valid = 1 and result = 1 limit 1").Scan(&aid); err != nil { |
|
fmt.Println(err) |
|
} |
|
return |
|
} |
|
|
|
func TestDao_RelateAids(t *testing.T) { |
|
Convey("TestDao_RelateAids", t, WithDao(func(d *Dao) { |
|
httpMock("GET", d.relateURL).Reply(200).JSON(`{"data":[{"key": "1234", "value": "23999,515522,55,10099960,10099978,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959,10099959"}]}`) |
|
aids, err := d.RelateAids(context.Background(), 333444, "") |
|
So(err, ShouldBeNil) |
|
So(len(aids), ShouldBeGreaterThan, 0) |
|
fmt.Println(aids) |
|
})) |
|
}
|
|
|