/*
|
* CDDL HEADER START
|
*
|
* The contents of this file are subject to the terms of the
|
* Common Development and Distribution License, Version 1.0 only
|
* (the "License"). You may not use this file except in compliance
|
* with the License.
|
*
|
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
|
* or http://forgerock.org/license/CDDLv1.0.html.
|
* See the License for the specific language governing permissions
|
* and limitations under the License.
|
*
|
* When distributing Covered Code, include this CDDL HEADER in each
|
* file and include the License file at legal-notices/CDDLv1_0.txt.
|
* If applicable, add the following below this CDDL HEADER, with the
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
* information:
|
* Portions Copyright [yyyy] [name of copyright owner]
|
*
|
* CDDL HEADER END
|
*
|
*
|
* Copyright 2009 Sun Microsystems, Inc.
|
* Portions Copyright 2014-2015 ForgeRock AS
|
*/
|
package org.opends.server.controls;
|
|
import org.forgerock.opendj.io.ASN1;
|
import org.forgerock.opendj.io.ASN1Writer;
|
import org.opends.server.protocols.ldap.LDAPControl;
|
import org.opends.server.protocols.ldap.LDAPReader;
|
import org.opends.server.replication.common.MultiDomainServerState;
|
import org.forgerock.opendj.ldap.ByteStringBuilder;
|
import org.testng.annotations.DataProvider;
|
import org.testng.annotations.Test;
|
|
import static org.opends.server.util.ServerConstants.*;
|
import static org.testng.Assert.*;
|
|
@SuppressWarnings("javadoc")
|
public class ExternalChangelogControlTest extends ControlsTestCase
|
{
|
|
/**
|
* Create values for External Changelog Request Control.
|
*/
|
@DataProvider(name = "eclRequestControl")
|
public Object[][] createECLRequestControlTest()
|
{
|
return new Object[][]
|
{
|
{true, "" },
|
{false, "o=test:;" },
|
{false, "o=test:000001210b6f21e904b100000002;" },
|
{false, "o=test:000001210b6f21e904b100000001;o=test2:000001210b6f21e904b100000002;" },
|
{false, "o=test:000001210b6f21e904b100000001 000001210b6f21e904b200000001;o=test2:000001210b6f21e904b100000002 000001210b6f21e904b200000002;" },
|
};
|
}
|
|
/**
|
* Test ExternalChangelogRequestControl.
|
*/
|
@Test(dataProvider = "eclRequestControl")
|
public void checkECLRequestControlTest(boolean critical, String value)
|
throws Exception
|
{
|
// Test constructor
|
MultiDomainServerState mdss = new MultiDomainServerState(value);
|
ExternalChangelogRequestControl eclrc
|
= new ExternalChangelogRequestControl(critical, mdss);
|
assertNotNull(eclrc);
|
assertEquals(critical, eclrc.isCritical());
|
assertEquals(OID_ECL_COOKIE_EXCHANGE_CONTROL, eclrc.getOID());
|
assertTrue(eclrc.getCookie().equalsTo(mdss));
|
|
// Test encode/decode
|
ByteStringBuilder bsb = new ByteStringBuilder();
|
ASN1Writer writer = ASN1.getWriter(bsb);
|
bsb.clear();
|
eclrc.write(writer);
|
LDAPControl control = LDAPReader.readControl(ASN1.getReader(bsb));
|
eclrc = ExternalChangelogRequestControl.DECODER.decode(control.isCritical(), control.getValue());
|
assertNotNull(eclrc);
|
assertEquals(critical, eclrc.isCritical());
|
assertEquals(OID_ECL_COOKIE_EXCHANGE_CONTROL, eclrc.getOID());
|
assertTrue(eclrc.getCookie().equalsTo(mdss),
|
"Expect:" + value + ", Got:" + eclrc.getCookie());
|
}
|
}
|