mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-22 01:11:40 +00:00
70 lines
2.0 KiB
Java
70 lines
2.0 KiB
Java
/*
|
|
* Copyright (C) Photon Vision.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package net;
|
|
|
|
import static org.junit.jupiter.api.Assertions.fail;
|
|
|
|
import edu.wpi.first.hal.HAL;
|
|
import java.io.IOException;
|
|
import org.junit.jupiter.api.AfterAll;
|
|
import org.junit.jupiter.api.BeforeAll;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.photonvision.jni.PhotonTargetingJniLoader;
|
|
import org.photonvision.jni.TimeSyncClient;
|
|
import org.photonvision.jni.TimeSyncServer;
|
|
import org.photonvision.jni.WpilibLoader;
|
|
|
|
public class TimeSyncTest {
|
|
@BeforeAll
|
|
public static void load_wpilib() throws UnsatisfiedLinkError, IOException {
|
|
WpilibLoader.loadLibraries();
|
|
if (!PhotonTargetingJniLoader.load()) {
|
|
fail();
|
|
}
|
|
|
|
HAL.initialize(1000, 0);
|
|
}
|
|
|
|
@AfterAll
|
|
public static void teardown() {
|
|
HAL.shutdown();
|
|
}
|
|
|
|
@Test
|
|
public void smoketest() throws InterruptedException {
|
|
// NetworkTableInstance.getDefault().stopClient();
|
|
// NetworkTableInstance.getDefault().startServer();
|
|
|
|
var server = new TimeSyncServer(5810);
|
|
|
|
System.err.println("Waiting: PID=" + ProcessHandle.current().pid());
|
|
|
|
server.start();
|
|
|
|
var client = new TimeSyncClient("127.0.0.1", 5810, 0.5);
|
|
|
|
for (int i = 0; i < 5; i++) {
|
|
Thread.sleep(100);
|
|
System.out.println(client.getPingMetadata());
|
|
}
|
|
|
|
server.stop();
|
|
client.stop();
|
|
}
|
|
}
|