/cmd/syncthing/random_test.go

https://gitlab.com/steamdriven80/syncthing · Go · 78 lines · 62 code · 9 blank · 7 comment · 20 complexity · 60dc780af9c6e8d91a84b6feb7e9426a MD5 · raw file

  1. // Copyright (C) 2014 The Syncthing Authors.
  2. //
  3. // This Source Code Form is subject to the terms of the Mozilla Public
  4. // License, v. 2.0. If a copy of the MPL was not distributed with this file,
  5. // You can obtain one at http://mozilla.org/MPL/2.0/.
  6. package main
  7. import (
  8. "sync"
  9. "testing"
  10. )
  11. var predictableRandomTest sync.Once
  12. func TestPredictableRandom(t *testing.T) {
  13. predictableRandomTest.Do(func() {
  14. // predictable random sequence is predictable
  15. e := 3440579354231278675
  16. if v := predictableRandom.Int(); v != e {
  17. t.Errorf("Unexpected random value %d != %d", v, e)
  18. }
  19. })
  20. }
  21. func TestSeedFromBytes(t *testing.T) {
  22. // should always return the same seed for the same bytes
  23. tcs := []struct {
  24. bs []byte
  25. v int64
  26. }{
  27. {[]byte("hello world"), -3639725434188061933},
  28. {[]byte("hello worlx"), -2539100776074091088},
  29. }
  30. for _, tc := range tcs {
  31. if v := seedFromBytes(tc.bs); v != tc.v {
  32. t.Errorf("Unexpected seed value %d != %d", v, tc.v)
  33. }
  34. }
  35. }
  36. func TestRandomString(t *testing.T) {
  37. for _, l := range []int{0, 1, 2, 3, 4, 8, 42} {
  38. s := randomString(l)
  39. if len(s) != l {
  40. t.Errorf("Incorrect length %d != %d", len(s), l)
  41. }
  42. }
  43. strings := make([]string, 1000)
  44. for i := range strings {
  45. strings[i] = randomString(8)
  46. for j := range strings {
  47. if i == j {
  48. continue
  49. }
  50. if strings[i] == strings[j] {
  51. t.Errorf("Repeated random string %q", strings[i])
  52. }
  53. }
  54. }
  55. }
  56. func TestRandomInt64(t *testing.T) {
  57. ints := make([]int64, 1000)
  58. for i := range ints {
  59. ints[i] = randomInt64()
  60. for j := range ints {
  61. if i == j {
  62. continue
  63. }
  64. if ints[i] == ints[j] {
  65. t.Errorf("Repeated random int64 %d", ints[i])
  66. }
  67. }
  68. }
  69. }