blob: f73e5a4d85d37819e6921ba161d781709675f4c2 [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
*
* https://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.api.dsmlv2.modifyRequest;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
import java.nio.charset.StandardCharsets;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import org.apache.directory.api.dsmlv2.AbstractTest;
import org.apache.directory.api.dsmlv2.DsmlControl;
import org.apache.directory.api.dsmlv2.Dsmlv2Parser;
import org.apache.directory.api.ldap.model.entry.Attribute;
import org.apache.directory.api.ldap.model.entry.Modification;
import org.apache.directory.api.ldap.model.entry.ModificationOperation;
import org.apache.directory.api.ldap.model.exception.LdapException;
import org.apache.directory.api.ldap.model.message.Control;
import org.apache.directory.api.ldap.model.message.ModifyRequest;
import org.apache.directory.api.util.Strings;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
/**
* Tests for the Modify Request parsing
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@Execution( ExecutionMode.CONCURRENT)
public class ModifyRequestTest extends AbstractTest
{
/**
* Test parsing of a request with the (optional) requestID attribute
*/
@Test
public void testRequestWithRequestId()
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput(
ModifyRequestTest.class.getResource( "request_with_requestID_attribute.xml" ).openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
assertEquals( 456, modifyRequest.getMessageId() );
}
/**
* Test parsing of a request with the (optional) requestID attribute below 0
*/
@Test
public void testRequestWithRequestIdBelow0()
{
testParsingFail( ModifyRequestTest.class, "request_with_requestID_below_0.xml" );
}
/**
* Test parsing of a request with a (optional) Control element
*/
@Test
public void testRequestWith1Control()
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_1_control.xml" ).openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Map<String, Control> controls = modifyRequest.getControls();
assertEquals( 1, modifyRequest.getControls().size() );
Control control = controls.get( "1.2.840.113556.1.4.643" );
assertNotNull( control );
assertTrue( control.isCritical() );
assertEquals( "1.2.840.113556.1.4.643", control.getOid() );
assertEquals( "Some text", Strings.utf8ToString( ( ( DsmlControl<?> ) control ).getValue() ) );
}
/**
* Test parsing of a request with a (optional) Control element with Base64 Value
*/
@Test
public void testRequestWith1ControlBase64Value()
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_1_control_base64_value.xml" )
.openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Map<String, Control> controls = modifyRequest.getControls();
assertEquals( 1, modifyRequest.getControls().size() );
Control control = controls.get( "1.2.840.113556.1.4.643" );
assertNotNull( control );
assertTrue( control.isCritical() );
assertEquals( "1.2.840.113556.1.4.643", control.getOid() );
assertEquals( "DSMLv2.0 rocks!!", Strings.utf8ToString( ( ( DsmlControl<?> ) control ).getValue() ) );
}
/**
* Test parsing of a request with a (optional) Control element with empty value
*/
@Test
public void testRequestWith1ControlEmptyValue()
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_1_control_empty_value.xml" )
.openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Map<String, Control> controls = modifyRequest.getControls();
assertEquals( 1, modifyRequest.getControls().size() );
Control control = controls.get( "1.2.840.113556.1.4.643" );
assertNotNull( control );
assertTrue( control.isCritical() );
assertEquals( "1.2.840.113556.1.4.643", control.getOid() );
assertFalse( ( ( DsmlControl<?> ) control ).hasValue() );
}
/**
* Test parsing of a request with 2 (optional) Control elements
*/
@Test
public void testRequestWith2Controls()
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser
.setInput( ModifyRequestTest.class.getResource( "request_with_2_controls.xml" ).openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Map<String, Control> controls = modifyRequest.getControls();
assertEquals( 2, modifyRequest.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() ) );
}
/**
* Test parsing of a request with 3 (optional) Control elements without value
*/
@Test
public void testRequestWith3ControlsWithoutValue()
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_3_controls_without_value.xml" )
.openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Map<String, Control> controls = modifyRequest.getControls();
assertEquals( 3, modifyRequest.getControls().size() );
Control control = controls.get( "1.2.840.113556.1.4.456" );
assertNotNull( control );
assertTrue( control.isCritical() );
assertEquals( "1.2.840.113556.1.4.456", control.getOid() );
assertFalse( ( ( DsmlControl<?> ) control ).hasValue() );
}
/**
* Test parsing of a request without dn attribute
*/
@Test
public void testRequestWithoutDnAttribute()
{
testParsingFail( ModifyRequestTest.class, "request_without_dn_attribute.xml" );
}
/**
* Test parsing of a request with a Modification element
* @throws NamingException
*/
@Test
public void testRequestWith1Modification() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_1_modification.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
assertEquals( ModificationOperation.ADD_ATTRIBUTE, modification.getOperation() );
Attribute attribute = modification.getAttribute();
assertEquals( "directreport", attribute.getId() );
assertEquals( "CN=John Smith, DC=microsoft, DC=com", attribute.get().getString() );
}
/**
* Test parsing of a request with a Modification element and Increment operation
* @throws NamingException
*/
@Test
public void testRequestWith1ModificationIncrement() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_1_modification_increment.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
assertEquals( ModificationOperation.INCREMENT_ATTRIBUTE, modification.getOperation() );
Attribute attribute = modification.getAttribute();
assertEquals( "uidnumber", attribute.getId() );
assertEquals( "CN=John Smith, DC=microsoft, DC=com", attribute.get().getString() );
}
/**
* Test parsing of a request with a Modification element with Base64 Value
* @throws NamingException
*/
@Test
public void testRequestWith1ModificationBase64Value() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_1_modification_base64_value.xml" )
.openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
Attribute attribute = modification.getAttribute();
assertEquals( ModificationOperation.ADD_ATTRIBUTE, modification.getOperation() );
assertEquals( "directreport", attribute.getId() );
String expected = new String( new byte[]
{ 'c', 'n', '=', 'E', 'm', 'm', 'a', 'n', 'u', 'e', 'l', ' ', 'L', ( byte ) 0xc3, ( byte ) 0xa9, 'c', 'h',
'a', 'r', 'n', 'y', ',', ' ', 'o', 'u', '=', 'p', 'e', 'o', 'p', 'l', 'e', ',', ' ', 'd', 'c', '=',
'e', 'x', 'a', 'm', 'p', 'l', 'e', ',', ' ', 'd', 'c', '=', 'c', 'o', 'm' }, StandardCharsets.UTF_8 );
assertEquals( expected, attribute.get().getString() );
}
/**
* Test parsing of a request with 2 Modification elements
* @throws NamingException
*/
@Test
public void testRequestWith2Modifications() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_2_modifications.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 2, modifications.size() );
Iterator<Modification> iter = modifications.iterator();
Modification modification = iter.next();
assertEquals( ModificationOperation.ADD_ATTRIBUTE, modification.getOperation() );
Attribute attribute = modification.getAttribute();
assertEquals( "directreport", attribute.getId() );
assertEquals( "CN=John Smith, DC=microsoft, DC=com", attribute.get().getString() );
modification = iter.next();
attribute = modification.getAttribute();
assertEquals( "sn", attribute.getId() );
assertEquals( ModificationOperation.REPLACE_ATTRIBUTE, modification.getOperation() );
assertEquals( "CN=Steve Jobs, DC=apple, DC=com", attribute.get().getString() );
}
/**
* Test parsing of a request without name attribute to the Modification element
*/
@Test
public void testRequestWithoutNameAttribute()
{
testParsingFail( ModifyRequestTest.class, "request_without_name_attribute.xml" );
}
/**
* Test parsing of a request without operation attribute to the Modification element
*/
@Test
public void testRequestWithoutOperationAttribute()
{
testParsingFail( ModifyRequestTest.class, "request_without_operation_attribute.xml" );
}
/**
* Test parsing of a request with operation attribute to Add value
* @throws NamingException
*/
@Test
public void testRequestWithOperationAdd() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_operation_add.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
assertEquals( ModificationOperation.ADD_ATTRIBUTE, modification.getOperation() );
}
/**
* Test parsing of a request with operation attribute to Delete value
* @throws NamingException
*/
@Test
public void testRequestWithOperationDelete() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_operation_delete.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
assertEquals( ModificationOperation.REMOVE_ATTRIBUTE, modification.getOperation() );
}
/**
* Test parsing of a request with operation attribute to Replace value
* @throws NamingException
*/
@Test
public void testRequestWithOperationReplace() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_operation_replace.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
assertEquals( ModificationOperation.REPLACE_ATTRIBUTE, modification.getOperation() );
}
/**
* Test parsing of a request without operation attribute to the Modification element
*/
@Test
public void testRequestWithOperationError()
{
testParsingFail( ModifyRequestTest.class, "request_with_operation_error.xml" );
}
/**
* Test parsing of a request with a Modification element without Value element
* @throws NamingException
*/
@Test
public void testRequestWithModificationWithoutValue() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_modification_without_value.xml" )
.openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
assertEquals( ModificationOperation.ADD_ATTRIBUTE, modification.getOperation() );
Attribute attribute = modification.getAttribute();
assertEquals( "directreport", attribute.getId() );
assertEquals( 0, attribute.size() );
}
/**
* Test parsing of a request with a Modification element
* @throws NamingException
*/
@Test
public void testRequestWithModificationWith2Values() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_modification_with_2_values.xml" )
.openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
assertEquals( ModificationOperation.ADD_ATTRIBUTE, modification.getOperation() );
Attribute attribute = modification.getAttribute();
assertEquals( "directreport", attribute.getId() );
assertEquals( 2, attribute.size() );
assertTrue( attribute.contains( "CN=John Smith, DC=microsoft, DC=com" ) );
assertTrue( attribute.contains( "CN=Steve Jobs, DC=apple, DC=com" ) );
}
/**
* Test parsing of a request with a Modification element with an empty value
* @throws NamingException
*/
@Test
public void testRequestWithModificationWithEmptyValue() throws LdapException
{
Dsmlv2Parser parser = null;
try
{
parser = newParser();
parser.setInput( ModifyRequestTest.class.getResource( "request_with_modification_with_empty_value.xml" )
.openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
ModifyRequest modifyRequest = ( ModifyRequest ) parser.getBatchRequest().getCurrentRequest();
Collection<Modification> modifications = modifyRequest.getModifications();
assertEquals( 1, modifications.size() );
Modification modification = modifications.iterator().next();
assertEquals( ModificationOperation.ADD_ATTRIBUTE, modification.getOperation() );
Attribute attribute = modification.getAttribute();
assertEquals( "directreport", attribute.getId() );
assertEquals( 1, attribute.size() );
assertEquals( "", attribute.get().getString() );
}
/**
* Test parsing of a request with a needed requestID attribute
*
* DIRSTUDIO-1
*/
@Test
public void testRequestWithNeededRequestId()
{
testParsingFail( ModifyRequestTest.class, "request_with_needed_requestID.xml" );
}
}