Search in sources :

Example 16 with SyncInfoValueDecorator

use of org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator in project directory-ldap-api by apache.

the class SyncInfoValueControlTest method testDecodeSyncInfoValueControlSyncIdSetCookieNoRefreshDeletesUUIDsSet.

/**
 * Test the decoding of a SyncInfoValue control, syncIdSet choice, a cookie
 * no refreshDeletes flag, a UUID set with some values
 */
@Test
public void testDecodeSyncInfoValueControlSyncIdSetCookieNoRefreshDeletesUUIDsSet() throws Exception {
    ByteBuffer bb = ByteBuffer.allocate(0x3F);
    bb.put(new byte[] { // syncInfoValue ::= CHOICE {
    (byte) 0xA3, // syncInfoValue ::= CHOICE {
    0x3D, // syncIdSet [3] SEQUENCE {
    0x04, 0x03, 'a', 'b', // cookie         syncCookie OPTIONAL,
    'c', 0x31, // syncUUIDs SET OF syncUUID
    0x36, 0x04, // syncUUID
    0x10, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, // syncUUID
    0x10, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x04, // syncUUID
    0x10, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03 });
    bb.flip();
    SyncInfoValue decorator = new SyncInfoValueDecorator(codec);
    decorator.setSyncInfoValueType(SynchronizationInfoEnum.SYNC_ID_SET);
    SyncInfoValue syncInfoValue = (SyncInfoValue) ((SyncInfoValueDecorator) decorator).decode(bb.array());
    assertEquals(SynchronizationInfoEnum.SYNC_ID_SET, syncInfoValue.getSyncInfoValueType());
    assertEquals("abc", Strings.utf8ToString(syncInfoValue.getCookie()));
    assertFalse(syncInfoValue.isRefreshDeletes());
    assertEquals(3, syncInfoValue.getSyncUUIDs().size());
    for (int i = 0; i < 3; i++) {
        byte[] uuid = syncInfoValue.getSyncUUIDs().get(i);
        for (int j = 0; j < 16; j++) {
            assertEquals(i + 1, uuid[j]);
        }
    }
    // Check the encoding
    try {
        ByteBuffer encoded = ((SyncInfoValueDecorator) syncInfoValue).encode(ByteBuffer.allocate(((SyncInfoValueDecorator) syncInfoValue).computeLength()));
        assertEquals(Strings.dumpBytes(bb.array()), Strings.dumpBytes(encoded.array()));
    } catch (EncoderException ee) {
        fail();
    }
}
Also used : EncoderException(org.apache.directory.api.asn1.EncoderException) SyncInfoValueDecorator(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator) SyncInfoValue(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValue) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.extras.AbstractCodecServiceTest)

Example 17 with SyncInfoValueDecorator

use of org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator in project directory-ldap-api by apache.

the class SyncInfoValueControlTest method testDecodeSyncInfoValueControlRefreshPresentNoCookieNoRefreshDone.

/**
 * Test the decoding of a SyncInfoValue control, refreshPresent choice,
 * no cookie, no refreshDone
 */
@Test
public void testDecodeSyncInfoValueControlRefreshPresentNoCookieNoRefreshDone() throws Exception {
    ByteBuffer bb = ByteBuffer.allocate(0x02);
    bb.put(new byte[] { // syncInfoValue ::= CHOICE {
    (byte) 0xA2, // syncInfoValue ::= CHOICE {
    0x00 });
    bb.flip();
    SyncInfoValue decorator = new SyncInfoValueDecorator(codec);
    decorator.setSyncInfoValueType(SynchronizationInfoEnum.REFRESH_PRESENT);
    SyncInfoValue syncInfoValue = (SyncInfoValue) ((SyncInfoValueDecorator) decorator).decode(bb.array());
    assertEquals(SynchronizationInfoEnum.REFRESH_PRESENT, syncInfoValue.getSyncInfoValueType());
    assertEquals("", Strings.utf8ToString(syncInfoValue.getCookie()));
    assertTrue(syncInfoValue.isRefreshDone());
    // Check the encoding
    try {
        ByteBuffer encoded = ((SyncInfoValueDecorator) syncInfoValue).encode(ByteBuffer.allocate(((SyncInfoValueDecorator) syncInfoValue).computeLength()));
        assertEquals(Strings.dumpBytes(bb.array()), Strings.dumpBytes(encoded.array()));
    } catch (EncoderException ee) {
        fail();
    }
}
Also used : EncoderException(org.apache.directory.api.asn1.EncoderException) SyncInfoValueDecorator(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator) SyncInfoValue(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValue) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.extras.AbstractCodecServiceTest)

Example 18 with SyncInfoValueDecorator

use of org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator in project directory-ldap-api by apache.

the class SyncInfoValueControlTest method testDecodeSyncInfoValueControlSyncIdSetNoCookieRefreshDeletesEmptySet.

/**
 * Test the decoding of a SyncInfoValue control, syncIdSet choice, no cookie
 * a refreshDeletes flag, an empty UUID set
 */
@Test
public void testDecodeSyncInfoValueControlSyncIdSetNoCookieRefreshDeletesEmptySet() throws Exception {
    ByteBuffer bb = ByteBuffer.allocate(0x07);
    bb.put(new byte[] { // syncInfoValue ::= CHOICE {
    (byte) 0xA3, // syncInfoValue ::= CHOICE {
    0x05, // syncIdSet [3] SEQUENCE {
    0x01, 0x01, // refreshDeletes BOOLEAN DEFAULT FALSE,
    0x10, 0x31, // syncUUIDs SET OF syncUUID
    0x00 });
    bb.flip();
    SyncInfoValue decorator = new SyncInfoValueDecorator(codec);
    decorator.setSyncInfoValueType(SynchronizationInfoEnum.SYNC_ID_SET);
    SyncInfoValue syncInfoValue = (SyncInfoValue) ((SyncInfoValueDecorator) decorator).decode(bb.array());
    assertEquals(SynchronizationInfoEnum.SYNC_ID_SET, syncInfoValue.getSyncInfoValueType());
    assertEquals("", Strings.utf8ToString(syncInfoValue.getCookie()));
    assertTrue(syncInfoValue.isRefreshDeletes());
    assertEquals(0, syncInfoValue.getSyncUUIDs().size());
    // Check the encoding
    try {
        ByteBuffer buffer = ByteBuffer.allocate(0x07);
        buffer.put(new byte[] { // syncInfoValue ::= CHOICE {
        (byte) 0xA3, // syncInfoValue ::= CHOICE {
        0x05, // syncIdSet [3] SEQUENCE {
        0x01, 0x01, // refreshDeletes BOOLEAN DEFAULT FALSE,
        (byte) 0xFF, 0x31, // syncUUIDs SET OF syncUUID
        0x00 });
        buffer.flip();
        ByteBuffer encoded = ((SyncInfoValueDecorator) syncInfoValue).encode(ByteBuffer.allocate(((SyncInfoValueDecorator) syncInfoValue).computeLength()));
        assertEquals(Strings.dumpBytes(buffer.array()), Strings.dumpBytes(encoded.array()));
    } catch (EncoderException ee) {
        fail();
    }
}
Also used : EncoderException(org.apache.directory.api.asn1.EncoderException) SyncInfoValueDecorator(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator) SyncInfoValue(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValue) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.extras.AbstractCodecServiceTest)

Example 19 with SyncInfoValueDecorator

use of org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator in project directory-ldap-api by apache.

the class SyncInfoValueControlTest method testDecodeSyncInfoValueControlRefreshDeleteNoRefreshDone.

/**
 * Test the decoding of a SyncInfoValue control, refreshDelete choice,
 * no refreshDone
 */
@Test
public void testDecodeSyncInfoValueControlRefreshDeleteNoRefreshDone() throws Exception {
    ByteBuffer bb = ByteBuffer.allocate(0x07);
    bb.put(new byte[] { // syncInfoValue ::= CHOICE {
    (byte) 0xA1, // syncInfoValue ::= CHOICE {
    0x05, // refreshDelete [1] SEQUENCE {
    0x04, 0x03, 'a', 'b', // cookie       syncCookie OPTIONAL,
    'c' });
    bb.flip();
    SyncInfoValue decorator = new SyncInfoValueDecorator(codec);
    decorator.setSyncInfoValueType(SynchronizationInfoEnum.REFRESH_DELETE);
    SyncInfoValue syncInfoValue = (SyncInfoValue) ((SyncInfoValueDecorator) decorator).decode(bb.array());
    assertEquals(SynchronizationInfoEnum.REFRESH_DELETE, syncInfoValue.getSyncInfoValueType());
    assertEquals("abc", Strings.utf8ToString(syncInfoValue.getCookie()));
    assertTrue(syncInfoValue.isRefreshDone());
    // Check the encoding
    try {
        ByteBuffer encoded = ((SyncInfoValueDecorator) syncInfoValue).encode(ByteBuffer.allocate(((SyncInfoValueDecorator) syncInfoValue).computeLength()));
        assertEquals(Strings.dumpBytes(bb.array()), Strings.dumpBytes(encoded.array()));
    } catch (EncoderException ee) {
        fail();
    }
}
Also used : EncoderException(org.apache.directory.api.asn1.EncoderException) SyncInfoValueDecorator(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator) SyncInfoValue(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValue) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.extras.AbstractCodecServiceTest)

Example 20 with SyncInfoValueDecorator

use of org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator in project directory-ldap-api by apache.

the class SyncInfoValueControlTest method testDecodeSyncInfoValueControlRefreshDeleteNoCookieNoRefreshDone.

/**
 * Test the decoding of a SyncInfoValue control, refreshDelete choice,
 * no cookie, no refreshDone
 */
@Test
public void testDecodeSyncInfoValueControlRefreshDeleteNoCookieNoRefreshDone() throws Exception {
    ByteBuffer bb = ByteBuffer.allocate(0x02);
    bb.put(new byte[] { // syncInfoValue ::= CHOICE {
    (byte) 0xA1, // syncInfoValue ::= CHOICE {
    0x00 });
    bb.flip();
    SyncInfoValue decorator = new SyncInfoValueDecorator(codec);
    decorator.setSyncInfoValueType(SynchronizationInfoEnum.REFRESH_DELETE);
    SyncInfoValue syncInfoValue = (SyncInfoValue) ((SyncInfoValueDecorator) decorator).decode(bb.array());
    assertEquals(SynchronizationInfoEnum.REFRESH_DELETE, syncInfoValue.getSyncInfoValueType());
    assertEquals("", Strings.utf8ToString(syncInfoValue.getCookie()));
    assertTrue(syncInfoValue.isRefreshDone());
    // Check the encoding
    try {
        ByteBuffer encoded = ((SyncInfoValueDecorator) syncInfoValue).encode(ByteBuffer.allocate(((SyncInfoValueDecorator) syncInfoValue).computeLength()));
        assertEquals(Strings.dumpBytes(bb.array()), Strings.dumpBytes(encoded.array()));
    } catch (EncoderException ee) {
        fail();
    }
}
Also used : EncoderException(org.apache.directory.api.asn1.EncoderException) SyncInfoValueDecorator(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator) SyncInfoValue(org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValue) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.extras.AbstractCodecServiceTest)

Aggregations

ByteBuffer (java.nio.ByteBuffer)26 AbstractCodecServiceTest (org.apache.directory.api.ldap.extras.AbstractCodecServiceTest)26 SyncInfoValue (org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValue)26 SyncInfoValueDecorator (org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator)26 Test (org.junit.Test)26 EncoderException (org.apache.directory.api.asn1.EncoderException)20 DecoderException (org.apache.directory.api.asn1.DecoderException)6