本文整理汇总了Java中org.apache.directory.api.ldap.model.message.BindResponse.getLdapResult方法的典型用法代码示例。如果您正苦于以下问题:Java BindResponse.getLdapResult方法的具体用法?Java BindResponse.getLdapResult怎么用?Java BindResponse.getLdapResult使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.directory.api.ldap.model.message.BindResponse
的用法示例。
在下文中一共展示了BindResponse.getLdapResult方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testResponseWithResultCode
import org.apache.directory.api.ldap.model.message.BindResponse; //导入方法依赖的package包/类
/**
* Test parsing of a response with Result Code
*/
@Test
public void testResponseWithResultCode()
{
Dsmlv2ResponseParser parser = null;
try
{
parser = new Dsmlv2ResponseParser( getCodec() );
parser.setInput( AuthResponseTest.class.getResource( "response_with_result_code.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
BindResponse bindResponse = ( BindResponse ) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = bindResponse.getLdapResult();
assertEquals( ResultCodeEnum.PROTOCOL_ERROR, ldapResult.getResultCode() );
}
示例2: testResponseWithErrorMessage
import org.apache.directory.api.ldap.model.message.BindResponse; //导入方法依赖的package包/类
/**
* Test parsing of a response with Error Message
*/
@Test
public void testResponseWithErrorMessage()
{
Dsmlv2ResponseParser parser = null;
try
{
parser = new Dsmlv2ResponseParser( getCodec() );
parser.setInput( AuthResponseTest.class.getResource( "response_with_error_message.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
BindResponse bindResponse = ( BindResponse ) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = bindResponse.getLdapResult();
assertEquals( "Unrecognized extended operation EXTENSION_OID: 1.2.6.1.4.1.18060.1.1.1.100.2", ldapResult
.getDiagnosticMessage() );
}
示例3: testResponseWithEmptyErrorMessage
import org.apache.directory.api.ldap.model.message.BindResponse; //导入方法依赖的package包/类
/**
* Test parsing of a response with Empty Error Message
*/
@Test
public void testResponseWithEmptyErrorMessage()
{
Dsmlv2ResponseParser parser = null;
try
{
parser = new Dsmlv2ResponseParser( getCodec() );
parser.setInput(
AuthResponseTest.class.getResource( "response_with_empty_error_message.xml" ).openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
BindResponse bindResponse = ( BindResponse ) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = bindResponse.getLdapResult();
assertNull( ldapResult.getDiagnosticMessage() );
}
示例4: testResponseWithMatchedDNAttribute
import org.apache.directory.api.ldap.model.message.BindResponse; //导入方法依赖的package包/类
/**
* Test parsing of a response with MatchedDN attribute
*/
@Test
public void testResponseWithMatchedDNAttribute()
{
Dsmlv2ResponseParser parser = null;
try
{
parser = new Dsmlv2ResponseParser( getCodec() );
parser.setInput(
AuthResponseTest.class.getResource( "response_with_matchedDN_attribute.xml" ).openStream(), "UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
BindResponse bindResponse = ( BindResponse ) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = bindResponse.getLdapResult();
assertTrue( ldapResult.getMatchedDn().equals( "cn=Bob Rush,ou=Dev,dc=Example,dc=COM" ) );
}
示例5: testResponseWith1EmptyReferral
import org.apache.directory.api.ldap.model.message.BindResponse; //导入方法依赖的package包/类
/**
* Test parsing of a response with an empty Referral
*/
@Test
public void testResponseWith1EmptyReferral()
{
Dsmlv2ResponseParser parser = null;
try
{
parser = new Dsmlv2ResponseParser( getCodec() );
parser.setInput( AuthResponseTest.class.getResource( "response_with_1_empty_referral.xml" ).openStream(),
"UTF-8" );
parser.parse();
}
catch ( Exception e )
{
fail( e.getMessage() );
}
BindResponse bindResponse = ( BindResponse ) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = bindResponse.getLdapResult();
Collection<String> referrals = ldapResult.getReferral().getLdapUrls();
assertEquals( 0, referrals.size() );
}