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.

53 lines
1.5 KiB

  1. package merkle
  2. import (
  3. "fmt"
  4. "testing"
  5. "github.com/stretchr/testify/assert"
  6. )
  7. type strHasher string
  8. func (str strHasher) Hash() []byte {
  9. return SimpleHashFromBytes([]byte(str))
  10. }
  11. func TestSimpleMap(t *testing.T) {
  12. {
  13. db := NewSimpleMap()
  14. db.Set("key1", strHasher("value1"))
  15. assert.Equal(t, "acdb4f121bc6f25041eb263ab463f1cd79236a32", fmt.Sprintf("%x", db.Hash()), "Hash didn't match")
  16. }
  17. {
  18. db := NewSimpleMap()
  19. db.Set("key1", strHasher("value2"))
  20. assert.Equal(t, "b8cbf5adee8c524e14f531da9b49adbbbd66fffa", fmt.Sprintf("%x", db.Hash()), "Hash didn't match")
  21. }
  22. {
  23. db := NewSimpleMap()
  24. db.Set("key1", strHasher("value1"))
  25. db.Set("key2", strHasher("value2"))
  26. assert.Equal(t, "1708aabc85bbe00242d3db8c299516aa54e48c38", fmt.Sprintf("%x", db.Hash()), "Hash didn't match")
  27. }
  28. {
  29. db := NewSimpleMap()
  30. db.Set("key2", strHasher("value2")) // NOTE: out of order
  31. db.Set("key1", strHasher("value1"))
  32. assert.Equal(t, "1708aabc85bbe00242d3db8c299516aa54e48c38", fmt.Sprintf("%x", db.Hash()), "Hash didn't match")
  33. }
  34. {
  35. db := NewSimpleMap()
  36. db.Set("key1", strHasher("value1"))
  37. db.Set("key2", strHasher("value2"))
  38. db.Set("key3", strHasher("value3"))
  39. assert.Equal(t, "e728afe72ce351eed6aca65c5f78da19b9a6e214", fmt.Sprintf("%x", db.Hash()), "Hash didn't match")
  40. }
  41. {
  42. db := NewSimpleMap()
  43. db.Set("key2", strHasher("value2")) // NOTE: out of order
  44. db.Set("key1", strHasher("value1"))
  45. db.Set("key3", strHasher("value3"))
  46. assert.Equal(t, "e728afe72ce351eed6aca65c5f78da19b9a6e214", fmt.Sprintf("%x", db.Hash()), "Hash didn't match")
  47. }
  48. }