blob: 1dd5d487577e1264b80f69cf8b10d2cbd37d512c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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
*
* http://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 org.apache.directory.server.dns.io.decoder;
import java.net.InetAddress;
import java.util.Map;
import org.apache.directory.api.util.Strings;
import org.apache.directory.server.dns.store.DnsAttribute;
import org.apache.mina.core.buffer.IoBuffer;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Tests for the A resource record decoder.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class AddressRecordDecoderTest
{
InetAddress address;
IoBuffer inputBuffer;
AddressRecordDecoder decoder;
@Before
public void setUp() throws Exception
{
address = InetAddress.getByName( "127.0.0.1" );
inputBuffer = IoBuffer.allocate( address.getAddress().length );
inputBuffer.put( address.getAddress() );
inputBuffer.flip();
decoder = new AddressRecordDecoder();
}
@Test
public void testDecode() throws Exception
{
Map<String, Object> attributes = decoder.decode( inputBuffer, ( short ) address.getAddress().length );
assertEquals( address, attributes.get( Strings.toLowerCase( DnsAttribute.IP_ADDRESS ) ) );
}
}