blob: 9df53034037e8221b725cd79dd7ac273aba2d9dd [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.kerberos.shared.messages.value;
import java.nio.ByteBuffer;
import java.util.Arrays;
import org.apache.directory.server.kerberos.shared.messages.value.types.AuthorizationType;
import junit.framework.TestCase;
/**
* Test the AdaNDoR encoding and decoding
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev: 542147 $, $Date: 2007-05-28 10:14:21 +0200 (Mon, 28 May 2007) $
*/
public class AdAndOrTest extends TestCase
{
public void testAdAndOrOROneAuthorizationData() throws Exception
{
AdAndOr aao = new AdAndOr();
AuthorizationData elements = new AuthorizationData();
elements.add( new AuthorizationDataEntry( AuthorizationType.AD_KDC_ISSUED, new byte[]{0x01, 0x02, 0x03, 0x04} ) );
aao.setAuthorizationData( elements );
ByteBuffer encoded = ByteBuffer.allocate( aao.computeLength() );
aao.encode( encoded );
byte[] expectedResult = new byte[]
{
0x30, 0x18,
(byte)0xA0, 0x03,
0x02, 0x01, 0x01,
(byte)0xA1, 0x11,
0x30, 0x0F,
0x30, 0x0d,
(byte)0xA0, 0x03,
0x02, 0x01, 0x04,
(byte)0xA1, 0x06,
0x04, 0x04, 0x01, 0x02, 0x03, 0x04,
};
assertTrue( Arrays.equals( expectedResult, encoded.array() ) );
}
public void testAdAndOrORThreeAD() throws Exception
{
AuthorizationData ad = new AuthorizationData();
ad.add( new AuthorizationDataEntry( AuthorizationType.AD_KDC_ISSUED, new byte[]{0x01, 0x02, 0x03, 0x04} ) );
ad.add( new AuthorizationDataEntry( AuthorizationType.AD_IF_RELEVANT, new byte[]{0x05, 0x06, 0x07, 0x08} ) );
ad.add( new AuthorizationDataEntry( AuthorizationType.AD_MANDATORY_TICKET_EXTENSIONS, new byte[]{0x09, 0x0A, 0x0B, 0x0C} ) );
AdAndOr aao = new AdAndOr();
aao.setORAuthorizationData( ad );
ByteBuffer encoded = ByteBuffer.allocate( aao.computeLength() );
aao.encode( encoded );
byte[] expectedResult = new byte[]
{
0x30, 0x36,
(byte)0xA0, 0x03,
0x02, 0x01, 0x01,
(byte)0xA1, 0x2F,
0x30, 0x2D,
0x30, 0x0d,
(byte)0xA0, 0x03,
0x02, 0x01, 0x04,
(byte)0xA1, 0x06,
0x04, 0x04, 0x01, 0x02, 0x03, 0x04,
0x30, 0x0d,
(byte)0xA0, 0x03,
0x02, 0x01, 0x01,
(byte)0xA1, 0x06,
0x04, 0x04, 0x05, 0x06, 0x07, 0x08,
0x30, 0x0d,
(byte)0xA0, 0x03,
0x02, 0x01, 0x06,
(byte)0xA1, 0x06,
0x04, 0x04, 0x09, 0x0A, 0x0B, 0x0C
};
assertTrue( Arrays.equals( expectedResult, encoded.array() ) );
}
}