turbotunnel_test.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. package snowflake_server
  2. import (
  3. "encoding/binary"
  4. "net"
  5. "testing"
  6. "gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/v2/common/turbotunnel"
  7. )
  8. func TestClientIDMap(t *testing.T) {
  9. // Convert a uint64 into a ClientID.
  10. id := func(n uint64) turbotunnel.ClientID {
  11. var clientID turbotunnel.ClientID
  12. binary.PutUvarint(clientID[:], n)
  13. return clientID
  14. }
  15. // Does m.Get(key) and checks that the output matches what is expected.
  16. expectGet := func(m *clientIDMap, clientID turbotunnel.ClientID, expectedAddr string, expectedOK bool) {
  17. t.Helper()
  18. addr, ok := m.Get(clientID)
  19. if (ok && addr.String() != expectedAddr) || ok != expectedOK {
  20. t.Errorf("expected (%+q, %v), got (%+q, %v)", expectedAddr, expectedOK, addr, ok)
  21. }
  22. }
  23. // Checks that the len of m.current is as expected.
  24. expectSize := func(m *clientIDMap, expectedLen int) {
  25. t.Helper()
  26. if len(m.current) != expectedLen {
  27. t.Errorf("expected map len %d, got %d %+v", expectedLen, len(m.current), m.current)
  28. }
  29. }
  30. // Convert a string to a net.Addr
  31. ip := func(addr string) net.Addr {
  32. ret, err := net.ResolveIPAddr("ip", addr)
  33. if err != nil {
  34. t.Errorf("received error: %s", err.Error())
  35. }
  36. return ret
  37. }
  38. // Zero-capacity map can't remember anything.
  39. {
  40. m := newClientIDMap(0)
  41. expectSize(m, 0)
  42. expectGet(m, id(0), "", false)
  43. expectGet(m, id(1234), "", false)
  44. m.Set(id(0), ip("1.1.1.1"))
  45. expectSize(m, 0)
  46. expectGet(m, id(0), "", false)
  47. expectGet(m, id(1234), "", false)
  48. m.Set(id(1234), ip("1.1.1.1"))
  49. expectSize(m, 0)
  50. expectGet(m, id(0), "", false)
  51. expectGet(m, id(1234), "", false)
  52. }
  53. {
  54. m := newClientIDMap(1)
  55. expectSize(m, 0)
  56. expectGet(m, id(0), "", false)
  57. expectGet(m, id(1), "", false)
  58. m.Set(id(0), ip("1.1.1.1"))
  59. expectSize(m, 1)
  60. expectGet(m, id(0), "1.1.1.1", true)
  61. expectGet(m, id(1), "", false)
  62. m.Set(id(1), ip("1.1.1.2")) // forgets the (0, "1.1.1.1") entry
  63. expectSize(m, 1)
  64. expectGet(m, id(0), "", false)
  65. expectGet(m, id(1), "1.1.1.2", true)
  66. m.Set(id(1), ip("1.1.1.3")) // forgets the (1, "1.1.1.2") entry
  67. expectSize(m, 1)
  68. expectGet(m, id(0), "", false)
  69. expectGet(m, id(1), "1.1.1.3", true)
  70. }
  71. {
  72. m := newClientIDMap(5)
  73. m.Set(id(0), ip("1.1.1.1"))
  74. m.Set(id(1), ip("1.1.1.2"))
  75. m.Set(id(2), ip("1.1.1.3"))
  76. m.Set(id(0), ip("1.1.1.4")) // shadows the (0, "1.1.1.1") entry
  77. m.Set(id(3), ip("1.1.1.5"))
  78. expectSize(m, 4)
  79. expectGet(m, id(0), "1.1.1.4", true)
  80. expectGet(m, id(1), "1.1.1.2", true)
  81. expectGet(m, id(2), "1.1.1.3", true)
  82. expectGet(m, id(3), "1.1.1.5", true)
  83. expectGet(m, id(4), "", false)
  84. m.Set(id(4), ip("1.1.1.6")) // forgets the (0, "1.1.1.1") entry but should preserve (0, "1.1.1.4")
  85. expectSize(m, 5)
  86. expectGet(m, id(0), "1.1.1.4", true)
  87. expectGet(m, id(1), "1.1.1.2", true)
  88. expectGet(m, id(2), "1.1.1.3", true)
  89. expectGet(m, id(3), "1.1.1.5", true)
  90. expectGet(m, id(4), "1.1.1.6", true)
  91. m.Set(id(5), ip("1.1.1.7")) // forgets the (1, "1.1.1.2") entry
  92. m.Set(id(0), ip("1.1.1.8")) // forgets the (2, "1.1.1.3") entry and shadows (0, "1.1.1.4")
  93. expectSize(m, 4)
  94. expectGet(m, id(0), "1.1.1.8", true)
  95. expectGet(m, id(1), "", false)
  96. expectGet(m, id(2), "", false)
  97. expectGet(m, id(3), "1.1.1.5", true)
  98. expectGet(m, id(4), "1.1.1.6", true)
  99. expectGet(m, id(5), "1.1.1.7", true)
  100. m.Set(id(0), ip("1.1.1.9")) // forgets the (0, "1.1.1.4") entry and shadows (0, "1.1.1.8")
  101. m.Set(id(0), ip("1.1.1.10")) // forgets the (3, "1.1.1.5") entry and shadows (0, "1.1.1.9")
  102. m.Set(id(0), ip("1.1.1.11")) // forgets the (4, "1.1.1.6") entry and shadows (0, "1.1.1.10")
  103. m.Set(id(0), ip("1.1.1.12")) // forgets the (5, "1.1.1.7") entry and shadows (0, "1.1.1.11")
  104. expectSize(m, 1)
  105. expectGet(m, id(0), "1.1.1.12", true)
  106. expectGet(m, id(1), "", false)
  107. expectGet(m, id(2), "", false)
  108. expectGet(m, id(3), "", false)
  109. expectGet(m, id(4), "", false)
  110. expectGet(m, id(5), "", false)
  111. }
  112. }