/driver-core/src/test/unit/com/mongodb/internal/selector/LatencyMinimizingServerSelectorTest.java

http://github.com/mongodb/mongo-java-driver · Java · 91 lines · 70 code · 6 blank · 15 comment · 0 complexity · 77bf729fd3923c9346e9d5c18d2423e5 MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.internal.selector;
  17. import com.mongodb.ServerAddress;
  18. import com.mongodb.connection.ClusterDescription;
  19. import com.mongodb.connection.ServerDescription;
  20. import com.mongodb.connection.ServerType;
  21. import org.junit.Test;
  22. import java.net.UnknownHostException;
  23. import java.util.Arrays;
  24. import java.util.concurrent.TimeUnit;
  25. import static com.mongodb.connection.ClusterConnectionMode.MULTIPLE;
  26. import static com.mongodb.connection.ClusterType.REPLICA_SET;
  27. import static com.mongodb.connection.ServerConnectionState.CONNECTED;
  28. import static org.junit.Assert.assertEquals;
  29. public class LatencyMinimizingServerSelectorTest {
  30. @Test
  31. public void testLatencyDifferentialMinimization() throws UnknownHostException {
  32. LatencyMinimizingServerSelector selector = new LatencyMinimizingServerSelector(20, TimeUnit.MILLISECONDS);
  33. ServerDescription primary = ServerDescription.builder()
  34. .state(CONNECTED)
  35. .address(new ServerAddress())
  36. .ok(true)
  37. .type(ServerType.REPLICA_SET_PRIMARY)
  38. .roundTripTime(10, TimeUnit.MILLISECONDS)
  39. .build();
  40. ServerDescription secondaryOne = ServerDescription.builder()
  41. .state(CONNECTED)
  42. .address(new ServerAddress("localhost:27018"))
  43. .ok(true)
  44. .type(ServerType.REPLICA_SET_SECONDARY)
  45. .roundTripTime(15, TimeUnit.MILLISECONDS)
  46. .build();
  47. ServerDescription secondaryTwo = ServerDescription.builder()
  48. .state(CONNECTED)
  49. .address(new ServerAddress("localhost:27019"))
  50. .ok(true)
  51. .type(ServerType.REPLICA_SET_SECONDARY)
  52. .roundTripTime(31, TimeUnit.MILLISECONDS)
  53. .build();
  54. ServerDescription secondaryThree = ServerDescription.builder()
  55. .state(CONNECTED)
  56. .address(new ServerAddress("localhost:27020"))
  57. .ok(true)
  58. .type(ServerType.REPLICA_SET_SECONDARY)
  59. .roundTripTime(30, TimeUnit.MILLISECONDS)
  60. .build();
  61. assertEquals(Arrays.asList(primary, secondaryOne, secondaryThree),
  62. selector.select(new ClusterDescription(MULTIPLE, REPLICA_SET,
  63. Arrays.asList(primary, secondaryOne, secondaryTwo, secondaryThree))));
  64. }
  65. @Test
  66. public void testZeroLatencyDifferentialTolerance() throws UnknownHostException {
  67. LatencyMinimizingServerSelector selector = new LatencyMinimizingServerSelector(0, TimeUnit.NANOSECONDS);
  68. ServerDescription primary = ServerDescription.builder()
  69. .state(CONNECTED)
  70. .address(new ServerAddress())
  71. .ok(true)
  72. .type(ServerType.REPLICA_SET_PRIMARY)
  73. .roundTripTime(10, TimeUnit.NANOSECONDS)
  74. .build();
  75. ServerDescription secondaryOne = ServerDescription.builder()
  76. .state(CONNECTED)
  77. .address(new ServerAddress("localhost:27018"))
  78. .ok(true)
  79. .type(ServerType.REPLICA_SET_SECONDARY)
  80. .roundTripTime(11, TimeUnit.NANOSECONDS)
  81. .build();
  82. assertEquals(Arrays.asList(primary), selector.select(new ClusterDescription(MULTIPLE, REPLICA_SET,
  83. Arrays.asList(primary, secondaryOne))));
  84. }
  85. }