DnsQueryTest.java — netty Source File
Architecture documentation for DnsQueryTest.java, a java file in the netty codebase.
Entity Profile
Relationship Graph
Source Code
/*
* Copyright 2013 The Netty Project
*
* The Netty Project licenses this file to you 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:
*
* https://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.netty.handler.codec.dns;
import io.netty.channel.embedded.EmbeddedChannel;
import io.netty.channel.socket.DatagramPacket;
import io.netty.util.internal.SocketUtils;
import org.junit.jupiter.api.Test;
import java.net.InetSocketAddress;
import java.util.ArrayList;
import java.util.List;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
public class DnsQueryTest {
@Test
public void testEncodeAndDecodeQuery() {
InetSocketAddress addr = SocketUtils.socketAddress("8.8.8.8", 53);
EmbeddedChannel writeChannel = new EmbeddedChannel(new DatagramDnsQueryEncoder());
EmbeddedChannel readChannel = new EmbeddedChannel(new DatagramDnsQueryDecoder());
List<DnsQuery> queries = new ArrayList<DnsQuery>(5);
queries.add(new DatagramDnsQuery(null, addr, 1).setRecord(
DnsSection.QUESTION,
new DefaultDnsQuestion("1.0.0.127.in-addr.arpa", DnsRecordType.PTR)));
queries.add(new DatagramDnsQuery(null, addr, 1).setRecord(
DnsSection.QUESTION,
new DefaultDnsQuestion("www.example.com", DnsRecordType.A)));
queries.add(new DatagramDnsQuery(null, addr, 1).setRecord(
DnsSection.QUESTION,
new DefaultDnsQuestion("example.com", DnsRecordType.AAAA)));
queries.add(new DatagramDnsQuery(null, addr, 1).setRecord(
DnsSection.QUESTION,
new DefaultDnsQuestion("example.com", DnsRecordType.MX)));
queries.add(new DatagramDnsQuery(null, addr, 1).setRecord(
DnsSection.QUESTION,
new DefaultDnsQuestion("example.com", DnsRecordType.CNAME)));
for (DnsQuery query: queries) {
assertEquals(1, query.count(DnsSection.QUESTION));
assertEquals(0, query.count(DnsSection.ANSWER));
assertEquals(0, query.count(DnsSection.AUTHORITY));
assertEquals(0, query.count(DnsSection.ADDITIONAL));
assertTrue(writeChannel.writeOutbound(query));
DatagramPacket packet = writeChannel.readOutbound();
assertTrue(packet.content().isReadable());
assertTrue(readChannel.writeInbound(packet));
DnsQuery decodedDnsQuery = readChannel.readInbound();
assertEquals(query, decodedDnsQuery);
assertTrue(decodedDnsQuery.release());
assertNull(writeChannel.readOutbound());
assertNull(readChannel.readInbound());
}
assertFalse(writeChannel.finish());
assertFalse(readChannel.finish());
}
}
Domain
Subdomains
Classes
Source
Frequently Asked Questions
What does DnsQueryTest.java do?
DnsQueryTest.java is a source file in the netty codebase, written in java. It belongs to the Buffer domain, Allocators subdomain.
Where is DnsQueryTest.java in the architecture?
DnsQueryTest.java is located at codec-dns/src/test/java/io/netty/handler/codec/dns/DnsQueryTest.java (domain: Buffer, subdomain: Allocators, directory: codec-dns/src/test/java/io/netty/handler/codec/dns).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free