3 changed files with 63 additions and 1 deletions
@ -0,0 +1,46 @@ |
|||
package app.servers; |
|||
|
|||
import app.entities.server.Server; |
|||
import com.ibasco.agql.protocols.valve.source.query.SourceQueryClient; |
|||
import org.junit.Test; |
|||
|
|||
import java.io.IOException; |
|||
import java.util.concurrent.*; |
|||
|
|||
public class TestServersA2S { |
|||
SourceQueryClient sourceQueryClient; |
|||
|
|||
|
|||
public void check() throws InterruptedException { |
|||
int count = 1; |
|||
Server server = new Server(); |
|||
server.setAddress("192.168.3.3:27005"); |
|||
|
|||
while (true) { |
|||
try (SourceQueryClient sourceQueryClient = getClient()) { |
|||
int finalCount = count; |
|||
final CountDownLatch latch = new CountDownLatch(1); |
|||
System.out.printf("[%d] Request\n", finalCount); |
|||
sourceQueryClient.getInfo(null).whenComplete((info, error) -> { |
|||
latch.countDown(); |
|||
if (error != null) { |
|||
server.SetDownStatus(); |
|||
return; |
|||
} |
|||
System.out.printf("[%d] Player count: %d\n", finalCount, info.getResult().getNumOfPlayers()); |
|||
}); |
|||
latch.await(); |
|||
count++; |
|||
} catch (CompletionException | IOException err) { |
|||
err.printStackTrace(); |
|||
} |
|||
Thread.sleep(500); |
|||
} |
|||
} |
|||
|
|||
public SourceQueryClient getClient() { |
|||
//if (sourceQueryClient == null) sourceQueryClient = new SourceQueryClient();
|
|||
//return sourceQueryClient;
|
|||
return new SourceQueryClient(); |
|||
} |
|||
} |
Loading…
Reference in new issue