use of org.apache.directory.api.ldap.model.message.CompareRequest in project directory-ldap-api by apache.
the class CompareRequestTest method testDecodeCompareRequestSuccess.
/**
* Test the decoding of a full CompareRequest
*/
@Test
public void testDecodeCompareRequestSuccess() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x38);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x36, 0x02, 0x01, // messageID MessageID
0x01, // CHOICE { ..., compareRequest CompareRequest, ...
0x6E, // CompareRequest ::= [APPLICATION 14] SEQUENCE {
0x31, // entry LDAPDN,
0x04, 0x20, 'c', 'n', '=', 't', 'e', 's', 't', 'M', 'o', 'd', 'i', 'f', 'y', ',', 'o', 'u', '=', 'u', 's', 'e', 'r', 's', ',', 'o', 'u', '=', 's', 'y', 's', 't', 'e', 'm', // ava AttributeValueAssertion }
0x30, // AttributeValueAssertion ::= SEQUENCE {
0x0D, // attributeDesc AttributeDescription,
0x04, 0x04, 't', 'e', 's', 't', // assertionValue AssertionValue }
0x04, 0x05, 'v', 'a', 'l', 'u', 'e' });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<CompareRequestDecorator> container = new LdapMessageContainer<CompareRequestDecorator>(codec);
// Decode the CompareRequest PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded CompareRequest PDU
CompareRequest compareRequest = container.getMessage();
assertEquals(1, compareRequest.getMessageId());
assertEquals("cn=testModify,ou=users,ou=system", compareRequest.getName().toString());
assertEquals("test", compareRequest.getAttributeId());
assertEquals("value", compareRequest.getAssertionValue().toString());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(compareRequest);
// Check the length
assertEquals(0x38, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.message.CompareRequest in project directory-ldap-api by apache.
the class CompareRequestTest method testDecodeCompareRequestEmptyAttributeValue.
/**
* Test the decoding of an empty attributeValue ava
*/
@Test
public void testDecodeCompareRequestEmptyAttributeValue() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x33);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x31, 0x02, 0x01, // messageID MessageID
0x01, // CHOICE { ..., compareRequest CompareRequest, ...
0x6E, // CompareRequest ::= [APPLICATION 14] SEQUENCE {
0x2C, // entry LDAPDN,
0x04, 0x20, 'c', 'n', '=', 't', 'e', 's', 't', 'M', 'o', 'd', 'i', 'f', 'y', ',', 'o', 'u', '=', 'u', 's', 'e', 'r', 's', ',', 'o', 'u', '=', 's', 'y', 's', 't', 'e', 'm', // ava AttributeValueAssertion }
0x30, // AttributeValueAssertion ::= SEQUENCE {
0x08, // attributeDesc AttributeDescription,
0x04, 0x04, 't', 'e', 's', 't', // assertionValue AssertionValue }
0x04, 0x00 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<CompareRequestDecorator> container = new LdapMessageContainer<CompareRequestDecorator>(codec);
// Decode the CompareRequest PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded CompareRequest PDU
CompareRequest compareRequest = container.getMessage();
assertEquals(1, compareRequest.getMessageId());
assertEquals("cn=testModify,ou=users,ou=system", compareRequest.getName().toString());
assertEquals("test", compareRequest.getAttributeId());
assertEquals("", compareRequest.getAssertionValue().toString());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(compareRequest);
// Check the length
assertEquals(0x33, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.message.CompareRequest in project directory-ldap-api by apache.
the class CompareRequestTest method testDecodeCompareRequestWithControls.
/**
* Test the decoding of an compare request with controls
*/
@Test
public void testDecodeCompareRequestWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x55);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x53, 0x02, 0x01, // messageID MessageID
0x01, // CHOICE { ..., compareRequest CompareRequest, ...
0x6E, // CompareRequest ::= [APPLICATION 14] SEQUENCE {
0x31, // entry LDAPDN,
0x04, 0x20, 'c', 'n', '=', 't', 'e', 's', 't', 'M', 'o', 'd', 'i', 'f', 'y', ',', 'o', 'u', '=', 'u', 's', 'e', 'r', 's', ',', 'o', 'u', '=', 's', 'y', 's', 't', 'e', 'm', // ava AttributeValueAssertion }
0x30, // AttributeValueAssertion ::= SEQUENCE {
0x0D, // attributeDesc AttributeDescription,
0x04, 0x04, 't', 'e', 's', 't', // assertionValue AssertionValue }
0x04, 0x05, 'v', 'a', 'l', 'u', 'e', (byte) 0xA0, // A control
0x1B, 0x30, 0x19, 0x04, 0x17, 0x32, 0x2E, 0x31, 0x36, 0x2E, 0x38, 0x34, 0x30, 0x2E, 0x31, 0x2E, 0x31, 0x31, 0x33, 0x37, 0x33, 0x30, 0x2E, 0x33, 0x2E, 0x34, 0x2E, 0x32 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<CompareRequestDecorator> container = new LdapMessageContainer<CompareRequestDecorator>(codec);
// Decode the CompareRequest PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Ceck the decoded CompareRequest PDU
CompareRequest compareRequest = container.getMessage();
assertEquals(1, compareRequest.getMessageId());
assertEquals("cn=testModify,ou=users,ou=system", compareRequest.getName().toString());
assertEquals("test", compareRequest.getAttributeId());
assertEquals("value", compareRequest.getAssertionValue().toString());
// Check the Control
Map<String, Control> controls = compareRequest.getControls();
assertEquals(1, controls.size());
@SuppressWarnings("unchecked") CodecControl<Control> control = (org.apache.directory.api.ldap.codec.api.CodecControl<Control>) controls.get("2.16.840.1.113730.3.4.2");
assertEquals("2.16.840.1.113730.3.4.2", control.getOid());
assertEquals("", Strings.dumpBytes((byte[]) control.getValue()));
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(compareRequest);
// Check the length
assertEquals(0x55, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.message.CompareRequest in project directory-ldap-api by apache.
the class CompareRequestTest method testRequestWithDn.
/**
* Test parsing of a request with the dn attribute
*/
@Test
public void testRequestWithDn() {
Dsmlv2Parser parser = null;
try {
parser = newParser();
parser.setInput(CompareRequestTest.class.getResource("request_with_dn_attribute.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
CompareRequest compareRequest = (CompareRequest) parser.getBatchRequest().getCurrentRequest();
assertTrue(compareRequest.getName().equals("cn=Bob Rush,ou=Dev,dc=Example,dc=COM"));
}
use of org.apache.directory.api.ldap.model.message.CompareRequest in project directory-ldap-api by apache.
the class CompareRequestTest method testRequestWith2Controls.
/**
* Test parsing of a request with 2 (optional) Control elements
*/
@Test
public void testRequestWith2Controls() {
Dsmlv2Parser parser = null;
try {
parser = newParser();
parser.setInput(CompareRequestTest.class.getResource("request_with_2_controls.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
CompareRequest compareRequest = (CompareRequest) parser.getBatchRequest().getCurrentRequest();
Map<String, Control> controls = compareRequest.getControls();
assertEquals(2, compareRequest.getControls().size());
Control control = controls.get("1.2.840.113556.1.4.789");
assertNotNull(control);
assertFalse(control.isCritical());
assertEquals("1.2.840.113556.1.4.789", control.getOid());
assertEquals("Some other text", Strings.utf8ToString(((DsmlControl<?>) control).getValue()));
}
Aggregations