/protocol-ntp/src/test/java/org/apache/directory/server/ntp/NtpITest.java

https://github.com/apache/directory-server · Java · 108 lines · 56 code · 16 blank · 36 comment · 2 complexity · c0dae59053a051917a66e35a63067b14 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. *
  19. */
  20. package org.apache.directory.server.ntp;
  21. import static org.junit.Assert.assertTrue;
  22. import java.net.InetAddress;
  23. import java.util.concurrent.Executors;
  24. import org.apache.commons.net.ntp.NTPUDPClient;
  25. import org.apache.commons.net.ntp.TimeInfo;
  26. import org.apache.directory.server.protocol.shared.transport.TcpTransport;
  27. import org.apache.directory.server.protocol.shared.transport.UdpTransport;
  28. import org.apache.mina.filter.executor.ExecutorFilter;
  29. import org.apache.mina.util.AvailablePortFinder;
  30. import org.junit.jupiter.api.AfterEach;
  31. import org.junit.jupiter.api.BeforeEach;
  32. import org.junit.jupiter.api.Disabled;
  33. import org.junit.jupiter.api.Test;
  34. /**
  35. * An test testing the Network Time Protocol (NTP).
  36. *
  37. * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  38. */
  39. public class NtpITest
  40. {
  41. private NtpServer ntpConfig;
  42. private int port;
  43. /**
  44. * Set up a partition for EXAMPLE.COM and enable the NTP service. The LDAP service is disabled.
  45. */
  46. @BeforeEach
  47. public void setUp() throws Exception
  48. {
  49. ntpConfig = new NtpServer();
  50. port = AvailablePortFinder.getNextAvailable();
  51. TcpTransport tcpTransport = new TcpTransport( port );
  52. UdpTransport udpTransport = new UdpTransport( port );
  53. ntpConfig.setTransports( tcpTransport, udpTransport );
  54. ntpConfig.getDatagramAcceptor( udpTransport ).getFilterChain().addLast( "executor",
  55. new ExecutorFilter( Executors.newCachedThreadPool() ) );
  56. ntpConfig.getSocketAcceptor( tcpTransport ).getFilterChain().addLast( "executor",
  57. new ExecutorFilter( Executors.newCachedThreadPool() ) );
  58. ntpConfig.setEnabled( true );
  59. ntpConfig.start();
  60. }
  61. /**
  62. * Tests to make sure NTP works when enabled in the server.
  63. *
  64. * @throws Exception if there are errors
  65. */
  66. @Test
  67. @Disabled
  68. // Fails with a timeout !!!
  69. public void testNtp() throws Exception
  70. {
  71. InetAddress host = InetAddress.getByName( null );
  72. NTPUDPClient ntp = new NTPUDPClient();
  73. ntp.setDefaultTimeout( 500000 );
  74. long currentTime = System.currentTimeMillis();
  75. TimeInfo timeInfo = ntp.getTime( host, port );
  76. long returnTime = timeInfo.getReturnTime();
  77. assertTrue( Math.abs( currentTime - returnTime ) < 1000 );
  78. timeInfo.computeDetails();
  79. String offsetMsg = "Expected offset in range (-1000, 1000), but was " + timeInfo.getOffset();
  80. assertTrue( offsetMsg, -1000 < timeInfo.getOffset() && timeInfo.getOffset() < 1000 );
  81. String delayMsg = "Expected delay in range [0, 1000), but was " + timeInfo.getOffset();
  82. assertTrue( delayMsg, 0 <= timeInfo.getDelay() && timeInfo.getDelay() < 1000 );
  83. }
  84. /**
  85. * Tear down.
  86. */
  87. @AfterEach
  88. public void tearDown() throws Exception
  89. {
  90. ntpConfig.stop();
  91. }
  92. }