@Test public void testTwoParamConstructor() { try { new AciServerDetails(null, 10); fail("Should have thrown an IllegalArgumentException as host is null."); } catch (final IllegalArgumentException iae) { /* ignore */ } try { new AciServerDetails("localhost", -10); fail("Should have thrown an IllegalArgumentException as the port is out of range."); } catch (final IllegalArgumentException iae) { /* ignore */ } try { new AciServerDetails("localhost", 123456789); fail("Should have thrown an IllegalArgumentException as the port is out of range."); } catch (final IllegalArgumentException iae) { /* ignore */ } // Create one for real... final AciServerDetails details = new AciServerDetails("localhost", 10); // Check everything is null... assertThat(details.getProtocol(), is(equalTo(AciServerDetails.TransportProtocol.HTTP))); assertThat(details.getHost(), is(equalTo("localhost"))); assertThat(details.getPort(), is(10)); assertThat(details.getCharsetName(), is("UTF-8")); assertThat(details.getEncryptionCodec(), is(nullValue())); }
@Test public void testCharsetNameProperty() { // Create an instance... final AciServerDetails details = new AciServerDetails(); assertThat("charsetName property is not null", details.getCharsetName(), is("UTF-8")); // Set the charsetName to something... final String charsetName = "ISO-8859-1"; details.setCharsetName(charsetName); assertThat( "charsetName property is not as expected", details.getCharsetName(), is(equalTo(charsetName))); // Set the charsetName to null and check.... try { details.setCharsetName(null); fail("Should have thrown an IllegalArgumentException as charsetName is null."); } catch (final IllegalArgumentException iae) { // Expected... } // Set the charsetName to an illegal charset name and check.... try { details.setCharsetName("_~@£$"); fail("Should have thrown an IllegalCharsetNameException as charsetName is illegal."); } catch (final IllegalCharsetNameException icne) { // Expected... } // Set the charsetName to an unsupported charset and check.... try { details.setCharsetName("wibble"); fail("Should have thrown an UnsupportedCharsetException as charsetName is unsupported."); } catch (final UnsupportedCharsetException uce) { // Expected... } }
@Test public void testCopyConstructor() { // The codec to use... final TestEncryptionCodec encryptionCodec = new TestEncryptionCodec(); // Create an instance... final AciServerDetails details = new AciServerDetails(); details.setHost("localhost"); details.setPort(12345); details.setEncryptionCodec(encryptionCodec); // Copy... final AciServerDetails newDetails = new AciServerDetails(details); // Check everything was coppied across... assertThat("protocol", newDetails.getProtocol(), is(equalTo(details.getProtocol()))); assertThat("host", newDetails.getHost(), is(equalTo(details.getHost()))); assertThat("port", newDetails.getPort(), is(equalTo(details.getPort()))); assertThat("charsetName", newDetails.getCharsetName(), is(equalTo(details.getCharsetName()))); assertThat( "encryptionCodec", newDetails.getEncryptionCodec(), is(sameInstance(details.getEncryptionCodec()))); }
@Test public void testDefaultConstructor() { // Create an instance... final AciServerDetails details = new AciServerDetails(); // Check everything is null... assertThat( "protocol property is not HTTP", details.getProtocol(), is(equalTo(AciServerDetails.TransportProtocol.HTTP))); assertThat("host property is not null", details.getHost(), is(nullValue())); assertThat("port property is not 0", details.getPort(), is(0)); assertThat("charsetName property is incorrect", details.getCharsetName(), is("UTF-8")); assertThat( "encryptionCodec property is not null", details.getEncryptionCodec(), is(nullValue())); }