Return-Path: X-Original-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 50BCB11B3D for ; Sun, 7 Sep 2014 05:48:35 +0000 (UTC) Received: (qmail 31522 invoked by uid 500); 7 Sep 2014 05:48:29 -0000 Delivered-To: apmail-hadoop-common-issues-archive@hadoop.apache.org Received: (qmail 31487 invoked by uid 500); 7 Sep 2014 05:48:28 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-issues@hadoop.apache.org Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 31476 invoked by uid 99); 7 Sep 2014 05:48:28 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Sep 2014 05:48:28 +0000 Date: Sun, 7 Sep 2014 05:48:28 +0000 (UTC) From: "Xiaoyu Yao (JIRA)" To: common-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HADOOP-11073) Credential Provider related Unit Tests Failure on Windows MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HADOOP-11073?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14124787#comment-14124787 ] Xiaoyu Yao commented on HADOOP-11073: ------------------------------------- There are some additional fixes needed for TestSSLFactory. I will post updated patch. > Credential Provider related Unit Tests Failure on Windows > --------------------------------------------------------- > > Key: HADOOP-11073 > URL: https://issues.apache.org/jira/browse/HADOOP-11073 > Project: Hadoop Common > Issue Type: Test > Components: security > Affects Versions: 2.4.1 > Reporter: Xiaoyu Yao > Assignee: Xiaoyu Yao > Attachments: HADOOP-11073.0.patch, HADOOP-11073.1.patch > > > Reported by: Xiaomara and investigated by [~cnauroth]. > The credential provider related unit tests failed on Windows. The tests try to set up a URI by taking the build test directory and concatenating it with other strings containing the rest of the URI format, i.e.: > {code} > public void testFactory() throws Exception { > Configuration conf = new Configuration(); > conf.set(CredentialProviderFactory.CREDENTIAL_PROVIDER_PATH, > UserProvider.SCHEME_NAME + ":///," + > JavaKeyStoreProvider.SCHEME_NAME + "://file" + tmpDir + "/test.jks"); > {code} > This logic is incorrect on Windows, because the file path separator will be '\', which violates URI syntax. Forward slash is not permitted. > The proper fix is to always do path/URI construction through the org.apache.hadoop.fs.Path class, specifically using the constructors that take explicit parent and child arguments. > The affected unit tests are: > {code} > * TestKeyProviderFactory > * TestLdapGroupsMapping > * TestCredentialProviderFactory > * KeyStoreTestUtil > * TestSSLFactory > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)