blob: 2a6277b859a9e39e9bcaad6e7fa547f34a95c8c8 [file] [log] [blame]
/*
* Copyright 2018-present Open Networking Foundation
*
* 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.onosproject.openstacktelemetry.config;
import com.google.common.collect.ImmutableMap;
import com.google.common.testing.EqualsTester;
import org.junit.Before;
import org.junit.Test;
import org.onosproject.openstacktelemetry.api.config.RestTelemetryConfig;
import java.util.Map;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
public final class DefaultRestTelemetryConfigTest {
private static final String IP_ADDRESS_1 = "10.10.10.1";
private static final String IP_ADDRESS_2 = "20.20.20.1";
private static final int PORT_1 = 80;
private static final int PORT_2 = 8080;
private static final String ENDPOINT_1 = "telemetry";
private static final String ENDPOINT_2 = "configuration";
private static final String METHOD_1 = "POST";
private static final String METHOD_2 = "GET";
private static final String REQUEST_MEDIA_TYPE_1 = "JSON";
private static final String REQUEST_MEDIA_TYPE_2 = "XML";
private static final String RESPONSE_MEDIA_TYPE_1 = "JSON";
private static final String RESPONSE_MEDIA_TYPE_2 = "XML";
private static final Map<String, Object> CONFIG_MAP_1 =
ImmutableMap.of("key1", "value1");
private static final Map<String, Object> CONFIG_MAP_2 =
ImmutableMap.of("key2", "value2");
private RestTelemetryConfig config1;
private RestTelemetryConfig sameAsConfig1;
private RestTelemetryConfig config2;
@Before
public void setup() {
RestTelemetryConfig.Builder builder1 =
new DefaultRestTelemetryConfig.DefaultBuilder();
RestTelemetryConfig.Builder builder2 =
new DefaultRestTelemetryConfig.DefaultBuilder();
RestTelemetryConfig.Builder builder3 =
new DefaultRestTelemetryConfig.DefaultBuilder();
config1 = builder1
.withAddress(IP_ADDRESS_1)
.withPort(PORT_1)
.withEndpoint(ENDPOINT_1)
.withMethod(METHOD_1)
.withRequestMediaType(REQUEST_MEDIA_TYPE_1)
.withResponseMediaType(RESPONSE_MEDIA_TYPE_1)
.withConfigMap(CONFIG_MAP_1)
.build();
sameAsConfig1 = builder2
.withAddress(IP_ADDRESS_1)
.withPort(PORT_1)
.withEndpoint(ENDPOINT_1)
.withMethod(METHOD_1)
.withRequestMediaType(REQUEST_MEDIA_TYPE_1)
.withResponseMediaType(RESPONSE_MEDIA_TYPE_1)
.withConfigMap(CONFIG_MAP_1)
.build();
config2 = builder3
.withAddress(IP_ADDRESS_2)
.withPort(PORT_2)
.withEndpoint(ENDPOINT_2)
.withMethod(METHOD_2)
.withRequestMediaType(REQUEST_MEDIA_TYPE_2)
.withResponseMediaType(RESPONSE_MEDIA_TYPE_2)
.withConfigMap(CONFIG_MAP_2)
.build();
}
@Test
public void testEquality() {
new EqualsTester()
.addEqualityGroup(config1, sameAsConfig1)
.addEqualityGroup(config2).testEquals();
}
@Test
public void testConstruction() {
RestTelemetryConfig config = config1;
assertThat(config.address(), is(IP_ADDRESS_1));
assertThat(config.port(), is(PORT_1));
assertThat(config.endpoint(), is(ENDPOINT_1));
assertThat(config.method(), is(METHOD_1));
assertThat(config.requestMediaType(), is(REQUEST_MEDIA_TYPE_1));
assertThat(config.responseMediaType(), is(RESPONSE_MEDIA_TYPE_1));
assertThat(config.configMap(), is(CONFIG_MAP_1));
}
}