blob: d6808c4cd6030a0a65b87e48174ca31e3dab7994 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.eventmesh.dashboard.core.function.SDK.operation;
import org.apache.eventmesh.client.http.consumer.EventMeshHttpConsumer;
import org.apache.eventmesh.common.utils.IPUtils;
import org.apache.eventmesh.common.utils.ThreadUtils;
import org.apache.eventmesh.dashboard.core.function.SDK.config.CreateRuntimeConfig;
import java.util.AbstractMap.SimpleEntry;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Timeout;
import lombok.extern.slf4j.Slf4j;
@Slf4j
@Timeout(value = 5)
public class RuntimeHttpConsumerSDKOperationTest {
private final RuntimeHttpConsumerSDKOperation httpConsumerSDKOperation = new RuntimeHttpConsumerSDKOperation();
@Test
void testCreateClient() {
SimpleEntry<String, EventMeshHttpConsumer> httpConsumerSimpleEntry = null;
try {
final CreateRuntimeConfig runtimeConfig = CreateRuntimeConfig.builder()
.runtimeServerAddress("127.0.0.1:10105")
.consumerGroup("EventMeshTest-consumerGroup")
.env("test")
.idc("idc")
.ip(IPUtils.getLocalAddress())
.sys("1234")
.pid(String.valueOf(ThreadUtils.getPID()))
.username("eventmesh")
.password("123456")
.build();
httpConsumerSimpleEntry = httpConsumerSDKOperation.createClient(runtimeConfig);
Assertions.assertEquals("127.0.0.1:10105", httpConsumerSimpleEntry.getKey());
httpConsumerSimpleEntry.getValue().close();
} catch (Exception e) {
log.error("create runtime GRPC consumer client failed", e);
if (httpConsumerSimpleEntry != null) {
httpConsumerSimpleEntry.getValue().close();
}
}
}
}