/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.service.http.api.client.proxy; import static org.mule.test.allure.AllureConstants.HttpFeature.HTTP_SERVICE; import static org.mule.test.allure.AllureConstants.HttpFeature.HttpStory.PROXY_CONFIG_BUILDER; import static org.hamcrest.core.Is.is; import static org.hamcrest.core.IsNull.nullValue; import static org.junit.Assert.assertThat; import org.junit.Test; import ru.yandex.qatools.allure.annotations.Features; import ru.yandex.qatools.allure.annotations.Stories; @Features(HTTP_SERVICE) @Stories(PROXY_CONFIG_BUILDER) public class ProxyConfigBuilderTest extends AbstractProxyConfigTestCase<ProxyConfigBuilder> { private ProxyConfigBuilder proxyConfigBuilder = ProxyConfig.builder(); @Override protected ProxyConfigBuilder getProxyConfigBuilder() { return proxyConfigBuilder; } @Test public void minimalConfig() { ProxyConfig config = proxyConfigBuilder.setHost(HOST).setPort(PORT).build(); assertThat(config.getHost(), is(HOST)); assertThat(config.getPort(), is(PORT)); assertThat(config.getPassword(), nullValue()); assertThat(config.getUsername(), nullValue()); } @Test public void fullConfig() { ProxyConfig config = proxyConfigBuilder.setHost(HOST).setPort(PORT).setUsername(USERNAME).setPassword(PASSWORD).build(); assertThat(config.getHost(), is(HOST)); assertThat(config.getPort(), is(PORT)); assertThat(config.getPassword(), is(PASSWORD)); assertThat(config.getUsername(), is(USERNAME)); } }