blob: 31828119a16d3b1ce5eb89706be19874a1bd7746 [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.kerby.asn1;
import org.apache.kerby.asn1.type.Asn1Flags;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import java.io.IOException;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class Asn1FlagsTest {
public static final int FLAG_0 = 0b00000000000000000000000000000001;
public static final int FLAG_1 = 0b00000000000000000000000000000010;
public static final int FLAG_2 = 0x00000004;
public static final int FLAG_3 = 0x00000008;
public static final int FLAG_4 = 16;
public static final int FLAG_5 = 32;
public enum TestEnum implements EnumType {
FLAG_0(0x00000001),
FLAG_1(0x00000002),
FLAG_2(0x00000004),
FLAG_3(0x00000008),
FLAG_4(0x00000010),
FLAG_5(0x00000020);
private int value;
private TestEnum(int value) {
this.value = value;
}
@Override
public int getValue() {
return value;
}
@Override
public String getName() {
return name();
}
}
@Rule
public ExpectedException thrown = ExpectedException.none();
private Asn1Flags flags;
@Before
public void setUp() {
flags = new Asn1Flags(FLAG_5 | FLAG_3 | FLAG_1);
}
@Test
public void testToValue() throws IOException {
byte[] value = {(byte) 0xDE, (byte) 0xAD, (byte) 0xBE, (byte) 0xEF};
flags.setValue(value);
assertEquals(0b11011110101011011011111011101111, flags.getFlags());
}
@Test
public void testFlags() {
flags = new Asn1Flags();
assertEquals(0b00000000000000000000000000000000, flags.getFlags());
}
@Test
public void testFlagsInt() {
flags = new Asn1Flags(FLAG_4 | FLAG_2 | FLAG_0);
assertEquals(0b00000000000000000000000000010101, flags.getFlags());
}
@Test
public void testSetFlags() {
flags.setFlags(FLAG_4 | FLAG_2 | FLAG_0);
assertEquals(0b00000000000000000000000000010101, flags.getFlags());
}
@Test
public void testGetFlags() {
assertEquals(0b00000000000000000000000000101010, flags.getFlags());
}
@Test
public void testIsFlagSetInt() {
assertTrue(flags.isFlagSet(FLAG_5));
assertFalse(flags.isFlagSet(FLAG_4));
}
@Test
public void testSetFlagInt() {
flags.setFlag(FLAG_4);
assertEquals(0b00000000000000000000000000111010, flags.getFlags());
}
@Test
public void testClearFlagInt() {
flags.clearFlag(FLAG_3);
assertEquals(0b00000000000000000000000000100010, flags.getFlags());
}
@Test
public void testClear() {
flags.clear();
assertEquals(0b00000000000000000000000000000000, flags.getFlags());
}
@Test
public void testIsFlagSetEnum() {
assertTrue(flags.isFlagSet(TestEnum.FLAG_5));
assertFalse(flags.isFlagSet(TestEnum.FLAG_4));
}
@Test
public void testSetFlagEnum() {
flags.setFlag(TestEnum.FLAG_4);
assertEquals(0b00000000000000000000000000111010, flags.getFlags());
}
@Test
public void testSetFlagEnumBoolean() {
flags.setFlag(TestEnum.FLAG_4, true);
assertEquals(0b00000000000000000000000000111010, flags.getFlags());
flags.setFlag(TestEnum.FLAG_4, false);
assertEquals(0b00000000000000000000000000101010, flags.getFlags());
}
@Test
public void testClearFlagEnum() {
flags.clearFlag(TestEnum.FLAG_3);
assertEquals(0b00000000000000000000000000100010, flags.getFlags());
}
}