/* * Copyright (c) 2006-2009 Chris Smith, Shane Mc Cormack, Gregory Holmes * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.dmdirc.parser.irc; import org.junit.Test; import static org.junit.Assert.*; public class ServerInfoTest { @Test public void testHost() { final ServerInfo si = new ServerInfo("host0", 5, ""); assertEquals("host0", si.getHost()); si.setHost("host1"); assertEquals("host1", si.getHost()); } @Test public void testPort() { final ServerInfo si = new ServerInfo("host0", 5, ""); assertEquals(5, si.getPort()); si.setPort(65530); assertEquals(65530, si.getPort()); } @Test public void testPassword() { final ServerInfo si = new ServerInfo("host0", 5, "pass1"); assertEquals("pass1", si.getPassword()); si.setPassword("pass2"); assertEquals("pass2", si.getPassword()); } @Test public void testSSL() { final ServerInfo si = new ServerInfo("host0", 5, "pass1"); assertFalse(si.getSSL()); si.setSSL(true); assertTrue(si.getSSL()); } @Test public void testUseSocks() { final ServerInfo si = new ServerInfo("host0", 5, "pass1"); assertFalse(si.getUseSocks()); si.setUseSocks(true); assertTrue(si.getUseSocks()); } @Test public void testProxyHost() { final ServerInfo si = new ServerInfo("host0", 5, "pass1"); si.setProxyHost("foo"); assertEquals("foo", si.getProxyHost()); } @Test public void testProxyPort() { final ServerInfo si = new ServerInfo("host0", 5, "pass1"); si.setProxyPort(1024); assertEquals(1024, si.getProxyPort()); } }