Source Code Cross Referenced for AAAARecordTest.java in  » Net » dnsjava » org » xbill » DNS » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » dnsjava » org.xbill.DNS 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // -*- Java -*-
002:        //
003:        // Copyright (c) 2005, Matthew J. Rutherford <rutherfo@cs.colorado.edu>
004:        // Copyright (c) 2005, University of Colorado at Boulder
005:        // All rights reserved.
006:        // 
007:        // Redistribution and use in source and binary forms, with or without
008:        // modification, are permitted provided that the following conditions are
009:        // met:
010:        // 
011:        // * Redistributions of source code must retain the above copyright
012:        //   notice, this list of conditions and the following disclaimer.
013:        // 
014:        // * Redistributions in binary form must reproduce the above copyright
015:        //   notice, this list of conditions and the following disclaimer in the
016:        //   documentation and/or other materials provided with the distribution.
017:        // 
018:        // * Neither the name of the University of Colorado at Boulder nor the
019:        //   names of its contributors may be used to endorse or promote
020:        //   products derived from this software without specific prior written
021:        //   permission.
022:        // 
023:        // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
024:        // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
025:        // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
026:        // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
027:        // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
028:        // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
029:        // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
030:        // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
031:        // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
032:        // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
033:        // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
034:        //
035:        package org.xbill.DNS;
036:
037:        import java.io.IOException;
038:        import java.net.InetAddress;
039:        import java.net.UnknownHostException;
040:        import java.util.Arrays;
041:        import junit.framework.TestCase;
042:
043:        public class AAAARecordTest extends TestCase {
044:            Name m_an, m_rn;
045:            InetAddress m_addr;
046:            String m_addr_string;
047:            byte[] m_addr_bytes;
048:            long m_ttl;
049:
050:            protected void setUp() throws TextParseException,
051:                    UnknownHostException {
052:                m_an = Name.fromString("My.Absolute.Name.");
053:                m_rn = Name.fromString("My.Relative.Name");
054:                m_addr_string = "2001:db8:85a3:8d3:1319:8a2e:370:7334";
055:                m_addr = InetAddress.getByName(m_addr_string);
056:                m_addr_bytes = m_addr.getAddress();
057:                m_ttl = 0x13579;
058:            }
059:
060:            public void test_ctor_0arg() throws UnknownHostException {
061:                AAAARecord ar = new AAAARecord();
062:                assertNull(ar.getName());
063:                assertEquals(0, ar.getType());
064:                assertEquals(0, ar.getDClass());
065:                assertEquals(0, ar.getTTL());
066:                assertNull(ar.getAddress());
067:            }
068:
069:            public void test_getObject() {
070:                AAAARecord ar = new AAAARecord();
071:                Record r = ar.getObject();
072:                assertTrue(r instanceof  AAAARecord);
073:            }
074:
075:            public void test_ctor_4arg() {
076:                AAAARecord ar = new AAAARecord(m_an, DClass.IN, m_ttl, m_addr);
077:                assertEquals(m_an, ar.getName());
078:                assertEquals(Type.AAAA, ar.getType());
079:                assertEquals(DClass.IN, ar.getDClass());
080:                assertEquals(m_ttl, ar.getTTL());
081:                assertEquals(m_addr, ar.getAddress());
082:
083:                // a relative name
084:                try {
085:                    new AAAARecord(m_rn, DClass.IN, m_ttl, m_addr);
086:                    fail("RelativeNameException not thrown");
087:                } catch (RelativeNameException e) {
088:                }
089:
090:                // an IPv4 address
091:                try {
092:                    new AAAARecord(m_an, DClass.IN, m_ttl, InetAddress
093:                            .getByName("192.168.0.1"));
094:                    fail("IllegalArgumentException not thrown");
095:                } catch (IllegalArgumentException e) {
096:                } catch (UnknownHostException e) {
097:                    fail(e.getMessage());
098:                }
099:            }
100:
101:            public void test_rrFromWire() throws IOException {
102:                DNSInput di = new DNSInput(m_addr_bytes);
103:                AAAARecord ar = new AAAARecord();
104:
105:                ar.rrFromWire(di);
106:
107:                assertEquals(m_addr, ar.getAddress());
108:            }
109:
110:            public void test_rdataFromString() throws IOException {
111:                Tokenizer t = new Tokenizer(m_addr_string);
112:                AAAARecord ar = new AAAARecord();
113:
114:                ar.rdataFromString(t, null);
115:
116:                assertEquals(m_addr, ar.getAddress());
117:
118:                // invalid address
119:                t = new Tokenizer("193.160.232.1");
120:                ar = new AAAARecord();
121:                try {
122:                    ar.rdataFromString(t, null);
123:                    fail("TextParseException not thrown");
124:                } catch (TextParseException e) {
125:                }
126:            }
127:
128:            public void test_rrToString() {
129:                AAAARecord ar = new AAAARecord(m_an, DClass.IN, m_ttl, m_addr);
130:                assertEquals(m_addr_string, ar.rrToString());
131:            }
132:
133:            public void test_rrToWire() {
134:                AAAARecord ar = new AAAARecord(m_an, DClass.IN, m_ttl, m_addr);
135:
136:                // canonical
137:                DNSOutput dout = new DNSOutput();
138:                ar.rrToWire(dout, null, true);
139:                assertTrue(Arrays.equals(m_addr_bytes, dout.toByteArray()));
140:
141:                // case sensitive
142:                dout = new DNSOutput();
143:                ar.rrToWire(dout, null, false);
144:                assertTrue(Arrays.equals(m_addr_bytes, dout.toByteArray()));
145:            }
146:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.