View Javadoc
1   /*
2    *  Licensed to the Apache Software Foundation (ASF) under one
3    *  or more contributor license agreements.  See the NOTICE file
4    *  distributed with this work for additional information
5    *  regarding copyright ownership.  The ASF licenses this file
6    *  to you under the Apache License, Version 2.0 (the
7    *  "License"); you may not use this file except in compliance
8    *  with the License.  You may obtain a copy of the License at
9    *
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *
12   *  Unless required by applicable law or agreed to in writing,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License.
18   *
19   */
20  package org.apache.mina.integration.beans;
21  
22  import static org.junit.Assert.assertEquals;
23  
24  import java.net.InetAddress;
25  import java.net.UnknownHostException;
26  
27  import org.junit.Before;
28  import org.junit.Test;
29  
30  /**
31   * Tests {@link InetAddressEditor}.
32   *
33   * @author <a href="http://mina.apache.org">Apache MINA Project</a>
34   */
35  public class InetAddressEditorTest {
36      InetAddressEditor editor;
37  
38      @Before
39      public void setUp() throws Exception {
40          editor = new InetAddressEditor();
41      }
42  
43      @Test
44      public void testSetAsTextWithHostName() throws Exception {
45          try {
46              InetAddress expected = InetAddress.getByName("www.google.com");
47              editor.setAsText("www.google.com");
48              assertEquals(expected, editor.getValue());
49          } catch (UnknownHostException uhe) {
50              // No DNS. Skip the test.
51          }
52  
53          editor.setAsText("localhost");
54          assertEquals(InetAddress.getByName("localhost"), editor.getValue());
55      }
56  
57      @Test
58      public void testSetAsTextWithIpAddress() throws Exception {
59          editor.setAsText("127.0.0.1");
60          assertEquals(InetAddress.getByName(null), editor.getValue());
61      }
62  }