blob: fe9d37ec6608c919485bebea78365a5f9aba01e5 [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
*
* http://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 flex.messaging.config;
import flex.messaging.config.ThrottleSettings.Policy;
import flex.messaging.services.messaging.ThrottleManager;
import org.junit.Assert;
import org.junit.Test;
public class ThrottleSettingsTest {
private static final String UNEXPECTED_EXCEPTION_STRING = "Unexpected exception: ";
@Test
public void testSetIncomingClientFrequencyHigherThanDestinationFrequency() {
ThrottleSettings ts = new ThrottleSettings();
ts.setIncomingDestinationFrequency(10);
try {
ts.setIncomingClientFrequency(15);
Assert.fail("ConfigurationException expected");
} catch (ConfigurationException ce) {
// Success.
} catch (Exception e) {
Assert.fail(UNEXPECTED_EXCEPTION_STRING + e);
}
}
@Test
public void testSetIncomingDestinationFrequencyLowerThanClientFrequency() {
ThrottleSettings ts = new ThrottleSettings();
ts.setIncomingClientFrequency(15);
try {
ts.setIncomingDestinationFrequency(10);
Assert.fail("ConfigurationException expected");
} catch (ConfigurationException ce) {
// Success.
} catch (Exception e) {
Assert.fail(UNEXPECTED_EXCEPTION_STRING + e);
}
}
@Test
public void testSetOutgoingClientFrequencyHigherThanDestinationFrequency() {
ThrottleSettings ts = new ThrottleSettings();
ts.setOutgoingDestinationFrequency(10);
try {
ts.setOutgoingClientFrequency(15);
Assert.fail("ConfigurationException expected");
} catch (ConfigurationException ce) {
// Success.
} catch (Exception e) {
Assert.fail(UNEXPECTED_EXCEPTION_STRING + e);
}
}
@Test
public void testSetOutgoingDestinationFrequencyLowerThanClientFrequency() {
ThrottleSettings ts = new ThrottleSettings();
ts.setOutgoingClientFrequency(15);
try {
ts.setOutgoingDestinationFrequency(10);
Assert.fail("ConfigurationException expected");
} catch (ConfigurationException ce) {
// Success.
} catch (Exception e) {
Assert.fail(UNEXPECTED_EXCEPTION_STRING + e);
}
}
@Test
public void testSetIncomingClientFrequencyWithZeroDestinationFrequency() {
ThrottleSettings ts = new ThrottleSettings();
ts.setIncomingDestinationFrequency(0);
ts.setIncomingClientFrequency(10);
Assert.assertEquals(10, ts.getIncomingClientFrequency());
}
@Test
public void testSetIncomingDestinationFrequencyWithZeroClientFrequency() {
ThrottleSettings ts = new ThrottleSettings();
ts.setIncomingClientFrequency(0);
ts.setIncomingDestinationFrequency(10);
Assert.assertEquals(10, ts.getIncomingDestinationFrequency());
}
/**
* Test that an UNKNOWN policy throws ConfigurationException.
*/
@Test
public void testUnknownPolicy() {
try {
ThrottleSettings.parsePolicy("UNKNOWN");
} catch (ConfigurationException ce) {
// Success.
} catch (Exception e) {
Assert.fail(UNEXPECTED_EXCEPTION_STRING + e);
}
}
/**
* Test that outgoing policy of ERROR throws ConfigurationException.
*/
@Test
public void testOutgoingPolicyError() {
ThrottleManager manager = new ThrottleManager();
ThrottleSettings ts = new ThrottleSettings();
ts.setOutboundPolicy(Policy.ERROR);
try {
manager.setThrottleSettings(ts);
} catch (ConfigurationException ce) {
// Success.
} catch (Exception e) {
Assert.fail(UNEXPECTED_EXCEPTION_STRING + e);
}
}
}