mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 23:15:28 +08:00
25 lines
960 B
Java
25 lines
960 B
Java
package com;
|
|
|
|
import io.milvus.client.*;
|
|
import org.testng.annotations.Test;
|
|
|
|
public class TestPing {
|
|
@Test(dataProvider = "DefaultConnectArgs", dataProviderClass = MainClass.class)
|
|
public void test_server_status(String host, int port) throws ConnectFailedException {
|
|
System.out.println("Host: "+host+", Port: "+port);
|
|
MilvusClient client = new MilvusGrpcClient();
|
|
ConnectParam connectParam = new ConnectParam.Builder()
|
|
.withHost(host)
|
|
.withPort(port)
|
|
.build();
|
|
client.connect(connectParam);
|
|
Response res = client.getServerStatus();
|
|
assert (res.ok());
|
|
}
|
|
|
|
@Test(dataProvider = "DisConnectInstance", dataProviderClass = MainClass.class)
|
|
public void test_server_status_without_connected(MilvusClient client, String collectionName) throws ConnectFailedException {
|
|
Response res = client.getServerStatus();
|
|
assert (!res.ok());
|
|
}
|
|
} |