jump_test.go 616 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package jump
  2. import (
  3. "testing"
  4. . "github.com/smartystreets/goconvey/convey"
  5. )
  6. type hashStruct struct {
  7. value uint64
  8. exp int32
  9. }
  10. func Test_Hash(t *testing.T) {
  11. Convey("Test_Hash: ", t, func() {
  12. h := hashStruct{
  13. value: uint64(314978625),
  14. exp: int32(18),
  15. }
  16. bucket := 100
  17. v := Hash(h.value, bucket)
  18. So(v, ShouldEqual, h.exp)
  19. })
  20. }
  21. type md5Struct struct {
  22. value string
  23. exp uint64
  24. }
  25. func Test_Md5(t *testing.T) {
  26. Convey("Test_Hash: ", t, func() {
  27. h := md5Struct{
  28. value: "987654321",
  29. exp: uint64(7979946199622949865),
  30. }
  31. v := Md5(h.value)
  32. So(v, ShouldEqual, h.exp)
  33. })
  34. }