blob: d66846d08429a1a38ca85af0e2fb2fea66d6f024 [file] [log] [blame]
/**
*
* Copyright (C) 2009 Cloud Conscious, LLC. <info@cloudconscious.com>
*
* ====================================================================
* Licensed 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 org.jclouds.http;
import java.net.URI;
import java.util.Properties;
import org.jclouds.PropertiesBuilder;
import org.testng.annotations.Test;
/**
* Tests behavior of modules configured in HttpPropertiesBuilder<String>
*
* @author Adrian Cole
*/
@Test(groups = "unit", testName = "rest.HttpPropertiesBuilderTest")
public class HttpPropertiesBuilderTest {
public void testBuilder() {
int httpMaxRetries = 9875;
int poolIoWorkerThreads = 2727;
int poolMaxClientReuse = 3932;
int poolMaxClients = 3382;
int poolMaxSessionFailures = 857;
PropertiesBuilder builder = new PropertiesBuilder(new Properties()) {
@Override
public PropertiesBuilder withCredentials(String account, String key) {
return this;
}
@Override
public PropertiesBuilder withEndpoint(URI endpoint) {
return this;
}
};
builder.withMaxRetries(httpMaxRetries);
builder.limitIoWorkerThreadsTo(poolIoWorkerThreads);
builder.withMaxClientReuse(poolMaxClientReuse);
builder.limitConnectionsPerHostTo(poolMaxClients);
builder.withMaxSessionFailures(poolMaxSessionFailures);
}
}