Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 4673 invoked from network); 9 Sep 2009 22:16:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Sep 2009 22:16:20 -0000 Received: (qmail 16027 invoked by uid 500); 9 Sep 2009 22:16:20 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 15963 invoked by uid 500); 9 Sep 2009 22:16:20 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 15954 invoked by uid 99); 9 Sep 2009 22:16:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Sep 2009 22:16:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Sep 2009 22:16:17 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A5A6C234C498 for ; Wed, 9 Sep 2009 15:15:57 -0700 (PDT) Message-ID: <1478593417.1252534557677.JavaMail.jira@brutus> Date: Wed, 9 Sep 2009 15:15:57 -0700 (PDT) From: "Michael Scheetz (JIRA)" To: notifications@ant.apache.org Subject: [jira] Updated: (IVY-1115) ResolveEngine.getDependencies does not work using extra attributes. In-Reply-To: <2066401860.1251303359395.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/IVY-1115?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Scheetz updated IVY-1115: --------------------------------- Attachment: (was: IVY-1115.tests.svn.patch) > ResolveEngine.getDependencies does not work using extra attributes. > ------------------------------------------------------------------- > > Key: IVY-1115 > URL: https://issues.apache.org/jira/browse/IVY-1115 > Project: Ivy > Issue Type: Bug > Components: Core > Affects Versions: 2.1.0-RC2 > Environment: Ivy SVN version 808087 > Apache Ant version 1.7.0 compiled on December 13 2006 > Reporter: Michael Scheetz > Fix For: 2.1.0-RC2 > > Attachments: IVY-1115.tests.svn.patch > > Original Estimate: 48h > Remaining Estimate: 48h > > I wrote these two tests for 'test/java/org/apache/ivy/core/resolve/ResolveEngineTest.java'. The one using extra attributes to build a dependency list does not return the complete set of dependencies. > public void testBuildDependencyList_ExtraAtt() throws Exception { > System.setProperty("ivy.local.default.root", new File("test/repositories/extra-attributes").getAbsolutePath()); > System.setProperty("ivy.settings.file", "test/repositories/extra-attributes/ivysettings.xml"); > String org = "apache"; > String mod = "mymodule"; > String rev = "1749"; > Map extraAttributes = new HashMap(); > extraAttributes.put("eatt", "task2"); > extraAttributes.put("eatt2", "test"); > > ResolveEngine engine = new ResolveEngine(ivy.getSettings(), > ivy.getEventManager(), ivy.getSortEngine()); > ModuleRevisionId mRevId = ModuleRevisionId.newInstance(org, mod, rev, extraAttributes); > DefaultModuleDescriptor md = DefaultModuleDescriptor.newCallerInstance(mRevId, new String[] {"*"}, true, false); > String resolveId = ResolveOptions.getDefaultResolveId(md); > ResolveOptions options = new ResolveOptions(); > options.setConfs(new String[] {"*"}); > options.setResolveId(resolveId); > ResolveReport report = new ResolveReport(md, options.getResolveId()); > IvyNode[] deps = engine.getDependencies(md, options, report); > assertEquals(2, deps.length); > assertTrue(Arrays.toString(deps).contains("apache#mymodule;1749")); > assertTrue(Arrays.toString(deps).contains("apache#module2;1976")); > } > > public void testBuildDependencyList_MultiDeps() throws Exception { > System.setProperty("ivy.local.default.root", new File("test/repositories/1").getAbsolutePath()); > System.setProperty("ivy.settings.file", "test/repositories/ivysettings-1.xml"); > String org = "org2"; > String mod = "mod2.3"; > String rev = "0.4"; > ResolveEngine engine = new ResolveEngine(ivy.getSettings(), > ivy.getEventManager(), ivy.getSortEngine()); > ModuleRevisionId mRevId = ModuleRevisionId.newInstance(org, mod, rev); > DefaultModuleDescriptor md = DefaultModuleDescriptor.newCallerInstance(mRevId, new String[] {"*"}, true, false); > String resolveId = ResolveOptions.getDefaultResolveId(md); > ResolveOptions options = new ResolveOptions(); > options.setConfs(new String[] {"*"}); > options.setResolveId(resolveId); > ResolveReport report = new ResolveReport(md, options.getResolveId()); > IvyNode[] deps = engine.getDependencies(md, options, report); > assertEquals(4, deps.length); > } > Update: > So far, I have traced the issue down to the VisitNode.loadData(String[], boolean) method. This method returns false when extra attributes are used, even if there are additional dependencies to follow. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.