Return-Path: X-Original-To: apmail-hc-commits-archive@www.apache.org Delivered-To: apmail-hc-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 922CA18E8B for ; Tue, 22 Dec 2015 12:40:16 +0000 (UTC) Received: (qmail 22648 invoked by uid 500); 22 Dec 2015 12:40:03 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 22604 invoked by uid 500); 22 Dec 2015 12:40:03 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 22595 invoked by uid 99); 22 Dec 2015 12:40:03 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Dec 2015 12:40:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 6FE5BC0F6C for ; Tue, 22 Dec 2015 12:40:03 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.799 X-Spam-Level: * X-Spam-Status: No, score=1.799 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id FzSVkZXEMaJp for ; Tue, 22 Dec 2015 12:40:02 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTP id 75254439AD for ; Tue, 22 Dec 2015 12:40:02 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id D8C18E0428 for ; Tue, 22 Dec 2015 12:40:01 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id B466D3A0296 for ; Tue, 22 Dec 2015 12:40:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1721388 - in /httpcomponents/httpclient/trunk/httpclient-osgi/src: main/java/org/apache/http/osgi/impl/OSGiProxyConfiguration.java test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java Date: Tue, 22 Dec 2015 12:40:01 -0000 To: commits@hc.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151222124001.B466D3A0296@svn01-us-west.apache.org> Author: olegk Date: Tue Dec 22 12:40:01 2015 New Revision: 1721388 URL: http://svn.apache.org/viewvc?rev=1721388&view=rev Log: Fix number or format arguments in OSGiProxyConfiguration The format string requires 6 arguments while 7 are provided. >From the format string it is clear that the first argument has been added by mistake. Contributed by Michiel Eggermont Added: httpcomponents/httpclient/trunk/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java (with props) Modified: httpcomponents/httpclient/trunk/httpclient-osgi/src/main/java/org/apache/http/osgi/impl/OSGiProxyConfiguration.java Modified: httpcomponents/httpclient/trunk/httpclient-osgi/src/main/java/org/apache/http/osgi/impl/OSGiProxyConfiguration.java URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpclient-osgi/src/main/java/org/apache/http/osgi/impl/OSGiProxyConfiguration.java?rev=1721388&r1=1721387&r2=1721388&view=diff ============================================================================== --- httpcomponents/httpclient/trunk/httpclient-osgi/src/main/java/org/apache/http/osgi/impl/OSGiProxyConfiguration.java (original) +++ httpcomponents/httpclient/trunk/httpclient-osgi/src/main/java/org/apache/http/osgi/impl/OSGiProxyConfiguration.java Tue Dec 22 12:40:01 2015 @@ -27,6 +27,7 @@ package org.apache.http.osgi.impl; import static java.lang.String.format; +import static java.util.Arrays.asList; import static org.apache.http.osgi.impl.PropertiesUtils.to; import java.util.Dictionary; @@ -135,7 +136,7 @@ public final class OSGiProxyConfiguratio @Override public String toString() { return format("ProxyConfiguration [enabled=%s, hostname=%s, port=%s, username=%s, password=%s, proxyExceptions=%s]", - proxyExceptions, enabled, hostname, port, username, password, proxyExceptions); + enabled, hostname, port, username, password, asList(proxyExceptions)); } } Added: httpcomponents/httpclient/trunk/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java?rev=1721388&view=auto ============================================================================== --- httpcomponents/httpclient/trunk/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java (added) +++ httpcomponents/httpclient/trunk/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java Tue Dec 22 12:40:01 2015 @@ -0,0 +1,61 @@ +/* + * ==================================================================== + * 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. + * ==================================================================== + * + * This software consists of voluntary contributions made by many + * individuals on behalf of the Apache Software Foundation. For more + * information on the Apache Software Foundation, please see + * . + * + */ +package org.apache.http.osgi.impl; + +import org.junit.Test; + +import java.util.Dictionary; +import java.util.Hashtable; + +import static org.hamcrest.CoreMatchers.containsString; +import static org.junit.Assert.assertThat; + +public class OSGiProxyConfigurationTest { + + @Test + public void testToString() { + + final Dictionary config = new Hashtable<>(); + config.put("proxy.enabled", false); + config.put("proxy.host", "h"); + config.put("proxy.port", 1); + config.put("proxy.username", "u"); + config.put("proxy.password", "p"); + config.put("proxy.exceptions", new String[]{"e"}); + + final OSGiProxyConfiguration configuration = new OSGiProxyConfiguration(); + configuration.update(config); + + final String string = configuration.toString(); + assertThat(string, containsString("enabled=false")); + assertThat(string, containsString("hostname=h")); + assertThat(string, containsString("port=1")); + assertThat(string, containsString("username=u")); + assertThat(string, containsString("password=p")); + assertThat(string, containsString("proxyExceptions=[e]")); + } +} Propchange: httpcomponents/httpclient/trunk/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpcomponents/httpclient/trunk/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: httpcomponents/httpclient/trunk/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/OSGiProxyConfigurationTest.java ------------------------------------------------------------------------------ svn:mime-type = text/plain