/* * Copyright 2014-2016 CyberVision, Inc. * * Licensed 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.kaaproject.kaa.server.common.nosql.cassandra.dao.model; import nl.jqno.equalsverifier.EqualsVerifier; import nl.jqno.equalsverifier.Warning; import org.junit.Assert; import org.junit.Test; import org.kaaproject.kaa.common.dto.EndpointGroupStateDto; import org.kaaproject.kaa.server.common.nosql.cassandra.dao.model.type.CassandraEndpointGroupState; import java.util.Random; public class CassandraEndpointGroupStateTest { public static final Random RANDOM = new Random(); public static final int LIMIT = 1000000; @Test public void EndpointStateTest() { EndpointGroupStateDto state = new EndpointGroupStateDto(); String groupId = String.valueOf(RANDOM.nextInt(LIMIT)); String filterId = String.valueOf(RANDOM.nextInt(LIMIT)); String configId = String.valueOf(RANDOM.nextInt(LIMIT)); state.setConfigurationId(configId); state.setProfileFilterId(filterId); state.setEndpointGroupId(groupId); CassandraEndpointGroupState stateOne = new CassandraEndpointGroupState(state); CassandraEndpointGroupState stateTwo = new CassandraEndpointGroupState(); stateTwo.setConfigurationId(configId); stateTwo.setProfileFilterId(filterId); stateTwo.setEndpointGroupId(groupId); Assert.assertEquals(stateOne, stateTwo); Assert.assertEquals(stateOne.hashCode(), stateTwo.hashCode()); Assert.assertEquals(stateOne.toDto(), stateTwo.toDto()); Assert.assertEquals(stateOne.toString(), stateTwo.toString()); } @Test public void hashCodeEqualsTest() { EqualsVerifier.forClass(CassandraEndpointGroupState.class).suppress(Warning.NONFINAL_FIELDS).verify(); } }