blob: 9f0cd474e6c27e0de066112747d0f009a29354c5 [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.console.function.health.check.impl.storage;
import org.apache.eventmesh.dashboard.console.function.health.callback.HealthCheckCallback;
import org.apache.eventmesh.dashboard.console.function.health.check.config.HealthCheckObjectConfig;
import java.util.concurrent.CountDownLatch;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Timeout;
import io.lettuce.core.RedisException;
import lombok.extern.slf4j.Slf4j;
@Slf4j
@Timeout(value = 5)
class RedisCheckTest {
private RedisCheck redisCheck;
@BeforeEach
public void init() {
try {
HealthCheckObjectConfig config = HealthCheckObjectConfig.builder()
.instanceId(1L)
.healthCheckResourceType("storage")
.healthCheckResourceSubType("redis")
.simpleClassName("RedisCheck")
.clusterId(1L)
.connectUrl("127.0.0.1:6379")
.password("")
.build();
redisCheck = new RedisCheck(config);
} catch (RedisException e) {
log.error("RedisCheck failed.", e);
}
}
@Test
public void testDoCheck() throws InterruptedException {
try {
CountDownLatch latch = new CountDownLatch(1);
if (redisCheck == null) {
log.error("RedisCheck is null.");
return;
}
redisCheck.doCheck(new HealthCheckCallback() {
@Override
public void onSuccess() {
latch.countDown();
log.info("{} success", this.getClass().getSimpleName());
}
@Override
public void onFail(Exception e) {
latch.countDown();
log.error("{}, failed for reason {}", this.getClass().getSimpleName(), e);
}
});
latch.await();
} catch (RedisException e) {
log.error("RedisCheck failed.", e);
}
}
}