turbotunnel_test.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package lib
  2. import (
  3. "encoding/binary"
  4. "testing"
  5. "git.torproject.org/pluggable-transports/snowflake.git/common/turbotunnel"
  6. )
  7. func TestClientIDMap(t *testing.T) {
  8. // Convert a uint64 into a ClientID.
  9. id := func(n uint64) turbotunnel.ClientID {
  10. var clientID turbotunnel.ClientID
  11. binary.PutUvarint(clientID[:], n)
  12. return clientID
  13. }
  14. // Does m.Get(key) and checks that the output matches what is expected.
  15. expectGet := func(m *clientIDMap, clientID turbotunnel.ClientID, expectedAddr string, expectedOK bool) {
  16. t.Helper()
  17. addr, ok := m.Get(clientID)
  18. if addr != expectedAddr || ok != expectedOK {
  19. t.Errorf("expected (%+q, %v), got (%+q, %v)", expectedAddr, expectedOK, addr, ok)
  20. }
  21. }
  22. // Checks that the len of m.current is as expected.
  23. expectSize := func(m *clientIDMap, expectedLen int) {
  24. t.Helper()
  25. if len(m.current) != expectedLen {
  26. t.Errorf("expected map len %d, got %d %+v", expectedLen, len(m.current), m.current)
  27. }
  28. }
  29. // Zero-capacity map can't remember anything.
  30. {
  31. m := newClientIDMap(0)
  32. expectSize(m, 0)
  33. expectGet(m, id(0), "", false)
  34. expectGet(m, id(1234), "", false)
  35. m.Set(id(0), "A")
  36. expectSize(m, 0)
  37. expectGet(m, id(0), "", false)
  38. expectGet(m, id(1234), "", false)
  39. m.Set(id(1234), "A")
  40. expectSize(m, 0)
  41. expectGet(m, id(0), "", false)
  42. expectGet(m, id(1234), "", false)
  43. }
  44. {
  45. m := newClientIDMap(1)
  46. expectSize(m, 0)
  47. expectGet(m, id(0), "", false)
  48. expectGet(m, id(1), "", false)
  49. m.Set(id(0), "A")
  50. expectSize(m, 1)
  51. expectGet(m, id(0), "A", true)
  52. expectGet(m, id(1), "", false)
  53. m.Set(id(1), "B") // forgets the (0, "A") entry
  54. expectSize(m, 1)
  55. expectGet(m, id(0), "", false)
  56. expectGet(m, id(1), "B", true)
  57. m.Set(id(1), "C") // forgets the (1, "B") entry
  58. expectSize(m, 1)
  59. expectGet(m, id(0), "", false)
  60. expectGet(m, id(1), "C", true)
  61. }
  62. {
  63. m := newClientIDMap(5)
  64. m.Set(id(0), "A")
  65. m.Set(id(1), "B")
  66. m.Set(id(2), "C")
  67. m.Set(id(0), "D") // shadows the (0, "D") entry
  68. m.Set(id(3), "E")
  69. expectSize(m, 4)
  70. expectGet(m, id(0), "D", true)
  71. expectGet(m, id(1), "B", true)
  72. expectGet(m, id(2), "C", true)
  73. expectGet(m, id(3), "E", true)
  74. expectGet(m, id(4), "", false)
  75. m.Set(id(4), "F") // forgets the (0, "A") entry but should preserve (0, "D")
  76. expectSize(m, 5)
  77. expectGet(m, id(0), "D", true)
  78. expectGet(m, id(1), "B", true)
  79. expectGet(m, id(2), "C", true)
  80. expectGet(m, id(3), "E", true)
  81. expectGet(m, id(4), "F", true)
  82. m.Set(id(5), "G") // forgets the (1, "B") entry
  83. m.Set(id(0), "H") // forgets the (2, "C") entry and shadows (0, "D")
  84. expectSize(m, 4)
  85. expectGet(m, id(0), "H", true)
  86. expectGet(m, id(1), "", false)
  87. expectGet(m, id(2), "", false)
  88. expectGet(m, id(3), "E", true)
  89. expectGet(m, id(4), "F", true)
  90. expectGet(m, id(5), "G", true)
  91. m.Set(id(0), "I") // forgets the (0, "D") entry and shadows (0, "H")
  92. m.Set(id(0), "J") // forgets the (3, "E") entry and shadows (0, "I")
  93. m.Set(id(0), "K") // forgets the (4, "F") entry and shadows (0, "J")
  94. m.Set(id(0), "L") // forgets the (5, "G") entry and shadows (0, "K")
  95. expectSize(m, 1)
  96. expectGet(m, id(0), "L", true)
  97. expectGet(m, id(1), "", false)
  98. expectGet(m, id(2), "", false)
  99. expectGet(m, id(3), "", false)
  100. expectGet(m, id(4), "", false)
  101. expectGet(m, id(5), "", false)
  102. }
  103. }