netsafe_test.go 703 B

1234567891011121314151617181920212223242526272829303132333435
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestArchiveAddNetSafeMd5(t *testing.T) {
  8. var (
  9. c = context.TODO()
  10. nid = int64(0)
  11. md5 = ""
  12. )
  13. convey.Convey("AddNetSafeMd5", t, func(ctx convey.C) {
  14. err := d.AddNetSafeMd5(c, nid, md5)
  15. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  16. ctx.So(err, convey.ShouldNotBeNil)
  17. })
  18. })
  19. }
  20. func TestArchiveNotifyNetSafe(t *testing.T) {
  21. var (
  22. c = context.TODO()
  23. nid = int64(0)
  24. )
  25. convey.Convey("NotifyNetSafe", t, func(ctx convey.C) {
  26. err := d.NotifyNetSafe(c, nid)
  27. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  28. ctx.So(err, convey.ShouldNotBeNil)
  29. })
  30. })
  31. }