Package net.grinder.engine.agent

Source Code of net.grinder.engine.agent.PropertyBuilderTest

/*
* 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 net.grinder.engine.agent;

import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.greaterThan;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;

import java.io.File;

import net.grinder.common.GrinderProperties;
import net.grinder.util.Directory;
import net.grinder.util.Directory.DirectoryException;
import net.grinder.util.NetworkUtils;

import org.junit.Test;

public class PropertyBuilderTest {
  @Test
  public void testPropertyBuilder() throws DirectoryException {
    System.setProperty("java.library.path", System.getProperty("java.library.path") + File.pathSeparator
        + new File("./native_lib").getAbsolutePath());

    PropertyBuilder createPropertyBuilder = createPropertyBuilder("www.sample.com,:127.0.0.1");
    assertThat(createPropertyBuilder.rebaseHostString("www.sample.com,:127.0.0.1"),
        is("www.sample.com:173.230.129.147,:127.0.0.1"));
    assertThat(createPropertyBuilder.rebaseHostString("www.sample.com:74.125.128.99"),
        is("www.sample.com:74.125.128.99"));
    assertThat(createPropertyBuilder.rebaseHostString("www.google.com").length(), greaterThan(40));
    assertThat(createPropertyBuilder.rebaseHostString(":127.0.0.1"), is(":127.0.0.1"));
  }

  @Test
  public void testDnsServerResolver() throws DirectoryException {
    PropertyBuilder createPropertyBuilder = createPropertyBuilder("www.sample.com,:127.0.0.1");
    StringBuilder builder = new StringBuilder();
    createPropertyBuilder.addDnsIP(builder);
    assertThat(builder.toString(), containsString("ngrinder.dns.ip="));
    assertThat(builder.length(), greaterThan(20));
  }

  @Test
  public void testPropertyBuilderMemSize() throws DirectoryException {
    System.setProperty("java.library.path", System.getProperty("java.library.path") + File.pathSeparator
        + new File("./native_lib").getAbsolutePath());

    PropertyBuilder createPropertyBuilder = createPropertyBuilder("www.sample.com,:127.0.0.1");
    createPropertyBuilder.addProperties("grinder.processes", "10");
    String buildJVMArgument = createPropertyBuilder.buildJVMArgument();
    assertThat(buildJVMArgument, containsString("-Xmx"));
  }

  public PropertyBuilder createPropertyBuilder(String hostString) throws DirectoryException {
    Directory directory = new Directory(new File("."));
    GrinderProperties property = new GrinderProperties();

    return new PropertyBuilder(property, directory, true, hostString, NetworkUtils.getLocalHostName());
  }
}
TOP

Related Classes of net.grinder.engine.agent.PropertyBuilderTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.