/* * Copyright 2016 the original author or authors. * * 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 io.atomix.manager.options; import io.atomix.catalyst.transport.netty.NettyTransport; import io.atomix.catalyst.transport.Transport; import io.atomix.catalyst.util.PropertiesReader; import org.testng.annotations.Test; import java.util.Properties; import static org.testng.Assert.*; /** * Client properties test. * * @author <a href="http://github.com/kuujo>Jordan Halterman</a> */ @Test public class ClientOptionsTest { /** * Tests default client properties. */ public void testPropertyDefaults() { ClientOptions options = new ClientOptions(new Properties()); assertTrue(options.transport() instanceof NettyTransport); assertFalse(options.serializer().isWhitelistRequired()); } /** * Tests reading properties. */ public void testProperties() { Properties properties = new Properties(); properties.setProperty("client.transport", "io.atomix.catalyst.transport.netty.NettyTransport"); properties.setProperty("client.transport.threads", "1"); properties.setProperty("cluster.seed.1", "localhost:5000"); properties.setProperty("cluster.seed.2", "localhost:5001"); properties.setProperty("cluster.seed.3", "localhost:5002"); properties.setProperty("serializer.whitelist", "false"); ClientOptions options = new ClientOptions(properties); Transport transport = options.transport(); assertTrue(transport instanceof NettyTransport); assertEquals(((NettyTransport) transport).properties().threads(), 1); assertFalse(options.serializer().isWhitelistRequired()); } /** * Tests reading properties from a file. */ public void testPropertiesFile() { ClientOptions options = new ClientOptions(PropertiesReader.loadFromClasspath("client-test.properties").properties()); assertTrue(options.transport() instanceof NettyTransport); assertEquals(((NettyTransport) options.transport()).properties().threads(), 1); assertFalse(options.serializer().isWhitelistRequired()); } }