blob: 04ec8b8d161350314259f7d9d9a587522f244c9e [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.cache;
import java.sql.Timestamp;
import org.apache.eventmesh.dashboard.console.entity.cluster.ClusterEntity;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class ClusterCacheTest {
@Test
public void testInsertAndDelete() {
ClusterEntity clusterEntity = new ClusterEntity();
clusterEntity.setName("cl1");
clusterEntity.setRegistryAddress("registryList");
clusterEntity.setBootstrapServers("server");
clusterEntity.setEventmeshVersion("1.7.0");
clusterEntity.setClientProperties("");
clusterEntity.setJmxProperties("");
clusterEntity.setRegProperties("");
clusterEntity.setDescription("");
clusterEntity.setAuthType(0);
clusterEntity.setRunState(0);
clusterEntity.setStatus(0);
clusterEntity.setStoreType(0);
clusterEntity.setId(0L);
clusterEntity.setClusterId(0L);
ClusterCache.getINSTANCE().addCluster(clusterEntity);
ClusterEntity clusterEntity1 = ClusterCache.getINSTANCE().getClusterById(clusterEntity.getId());
ClusterEntity clusterEntity2 = ClusterCache.getINSTANCE().getClusterByName(clusterEntity.getName());
Assertions.assertEquals(clusterEntity1, clusterEntity2);
Assertions.assertEquals(clusterEntity1.getName(), clusterEntity.getName());
Assertions.assertEquals("registryList", clusterEntity1.getRegistryAddress());
}
}