You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org> on 2008/07/12 18:03:26 UTC

[jira] Created: (MNG-3664) Various unit tests from maven-core fail when run from a directory with space in its path

Various unit tests from maven-core fail when run from a directory with space in its path
----------------------------------------------------------------------------------------

                 Key: MNG-3664
                 URL: http://jira.codehaus.org/browse/MNG-3664
             Project: Maven 2
          Issue Type: Bug
          Components: IT Failures
    Affects Versions: 2.1-alpha-1
         Environment: WinXP & Xubuntu, Sun JDK 1.6.0
            Reporter: Benjamin Bentmann
            Priority: Minor
         Attachments: file-urls.patch, org.apache.maven.project.MavenProjectDynamismTest.txt

OK, not an IT failure but I guess unit test failures count, too ;-)

When running the Hudson package from a base directory with a space, say "M:\hud son", the bootstrap job fails with
{noformat}
Tests in error: 
  testBuildFromRepository_StoreProjectByCoordOnlyIfUncached(org.apache.maven.project.workspace.ProjectCachingTest)
  testBuildFromRepository_DontCheckCacheForRELEASEMetaVersion(org.apache.maven.project.workspace.ProjectCachingTest)
  testBuildFromRepository_DontCheckCacheForLATESTMetaVersion(org.apache.maven.project.workspace.ProjectCachingTest)
  testBuildFromFile_StoreByCoordAndFileIfUncached(org.apache.maven.project.workspace.ProjectCachingTest)
  testBuildSectionGroupIdInterpolation(org.apache.maven.project.MavenProjectDynamismTest)
  testRoundTrip(org.apache.maven.project.MavenProjectDynamismTest)
  testShouldPreserveAddedResourceInRestoredState(org.apache.maven.project.MavenProjectDynamismTest)
  testShouldPreserveAddedFilterInRestoredState(org.apache.maven.project.MavenProjectDynamismTest)
  testShouldIncorporateChangedBuildDirectoryViaExpressionsOnNextConcreteCalculation(org.apache.maven.project.MavenProjectDynamismTest)
  testShouldPreserveInitialValuesForPropertiesReferencingBuildPaths(org.apache.maven.project.MavenProjectDynamismTest)
  testShouldAlignCompileSourceRootsInConcreteState(org.apache.maven.project.MavenProjectDynamismTest)
{noformat}
due to test code suffering from [Common Bug #6|http://www.nabble.com/Re%3A-Common-Bugs-p16522914.html], see attached Surefire report.

Applying the attached patch only makes the show go on until maven-core which then fails with
{noformat}
Tests in error: 
  test_addExtension_usingModel_ShouldLoadExtensionComponent(org.apache.maven.extension.DefaultExtensionManagerTest)
  test_addExtension_usingModel_ShouldLoadCustomLifecycleMappingAndArtifactHandler(org.apache.maven.extension.DefaultExtensionManagerTest)
{noformat}
The console output of these tests is
{noformat}
[WARNING] 
 	DEPRECATION: The POM for the artifact 'org.apache.maven.core.test:test-extension:jar' was invalid or not found on any repositories.
 	This may not be supported by future versions of Maven and should be corrected as soon as possible.
 	Error given: POM 'org.apache.maven.core.test:test-extension' not found in repository: Unable to download the artifact from any repository
 
   org.apache.maven.core.test:test-extension:pom:1
 
 from the specified remote repositories:
   central (file:/M:/hud%20son/runtime/jobs/maven-2.1.x-bootstrap/workspace/trunk/maven-core/target/test-classes/org/apache/maven/extension/test-extension-repo/)
  for project org.apache.maven.core.test:test-extension
{noformat}
and suggests that something (maven-artifact?) is not properly decoding the file URL of central back to "M:\hud son\..."

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MNG-3664) Various unit tests from maven-core fail when run from a directory with space in its path

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated MNG-3664:
------------------------------

    Fix Version/s: 2.1-alpha-1

> Various unit tests from maven-core fail when run from a directory with space in its path
> ----------------------------------------------------------------------------------------
>
>                 Key: MNG-3664
>                 URL: http://jira.codehaus.org/browse/MNG-3664
>             Project: Maven 2
>          Issue Type: Bug
>          Components: IT Failures
>    Affects Versions: 2.1-alpha-1
>         Environment: WinXP & Xubuntu, Sun JDK 1.6.0
>            Reporter: Benjamin Bentmann
>            Priority: Minor
>             Fix For: 2.1-alpha-1
>
>         Attachments: file-urls.patch, org.apache.maven.project.MavenProjectDynamismTest.txt
>
>
> OK, not an IT failure but I guess unit test failures count, too ;-)
> When running the Hudson package from a base directory with a space, say "M:\hud son", the bootstrap job fails with
> {noformat}
> Tests in error: 
>   testBuildFromRepository_StoreProjectByCoordOnlyIfUncached(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromRepository_DontCheckCacheForRELEASEMetaVersion(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromRepository_DontCheckCacheForLATESTMetaVersion(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromFile_StoreByCoordAndFileIfUncached(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildSectionGroupIdInterpolation(org.apache.maven.project.MavenProjectDynamismTest)
>   testRoundTrip(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveAddedResourceInRestoredState(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveAddedFilterInRestoredState(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldIncorporateChangedBuildDirectoryViaExpressionsOnNextConcreteCalculation(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveInitialValuesForPropertiesReferencingBuildPaths(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldAlignCompileSourceRootsInConcreteState(org.apache.maven.project.MavenProjectDynamismTest)
> {noformat}
> due to test code suffering from [Common Bug #6|http://www.nabble.com/Re%3A-Common-Bugs-p16522914.html], see attached Surefire report.
> Applying the attached patch only makes the show go on until maven-core which then fails with
> {noformat}
> Tests in error: 
>   test_addExtension_usingModel_ShouldLoadExtensionComponent(org.apache.maven.extension.DefaultExtensionManagerTest)
>   test_addExtension_usingModel_ShouldLoadCustomLifecycleMappingAndArtifactHandler(org.apache.maven.extension.DefaultExtensionManagerTest)
> {noformat}
> The console output of these tests is
> {noformat}
> [WARNING] 
>  	DEPRECATION: The POM for the artifact 'org.apache.maven.core.test:test-extension:jar' was invalid or not found on any repositories.
>  	This may not be supported by future versions of Maven and should be corrected as soon as possible.
>  	Error given: POM 'org.apache.maven.core.test:test-extension' not found in repository: Unable to download the artifact from any repository
>  
>    org.apache.maven.core.test:test-extension:pom:1
>  
>  from the specified remote repositories:
>    central (file:/M:/hud%20son/runtime/jobs/maven-2.1.x-bootstrap/workspace/trunk/maven-core/target/test-classes/org/apache/maven/extension/test-extension-repo/)
>   for project org.apache.maven.core.test:test-extension
> {noformat}
> and suggests that something (maven-artifact?) is not properly decoding the file URL of central back to "M:\hud son\..."

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MNG-3664) Various unit tests from maven-core fail when run from a directory with space in its path

Posted by "Brian Fox (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brian Fox updated MNG-3664:
---------------------------

    Fix Version/s:     (was: 3.0-alpha-1)
                   3.0-alpha-2

> Various unit tests from maven-core fail when run from a directory with space in its path
> ----------------------------------------------------------------------------------------
>
>                 Key: MNG-3664
>                 URL: http://jira.codehaus.org/browse/MNG-3664
>             Project: Maven 2
>          Issue Type: Bug
>          Components: IT Failures
>    Affects Versions: 3.0-alpha-1
>         Environment: WinXP & Xubuntu, Sun JDK 1.6.0
>            Reporter: Benjamin Bentmann
>            Priority: Minor
>             Fix For: 3.0-alpha-2
>
>         Attachments: file-urls.patch, org.apache.maven.project.MavenProjectDynamismTest.txt
>
>
> OK, not an IT failure but I guess unit test failures count, too ;-)
> When running the Hudson package from a base directory with a space, say "M:\hud son", the bootstrap job fails with
> {noformat}
> Tests in error: 
>   testBuildFromRepository_StoreProjectByCoordOnlyIfUncached(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromRepository_DontCheckCacheForRELEASEMetaVersion(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromRepository_DontCheckCacheForLATESTMetaVersion(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromFile_StoreByCoordAndFileIfUncached(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildSectionGroupIdInterpolation(org.apache.maven.project.MavenProjectDynamismTest)
>   testRoundTrip(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveAddedResourceInRestoredState(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveAddedFilterInRestoredState(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldIncorporateChangedBuildDirectoryViaExpressionsOnNextConcreteCalculation(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveInitialValuesForPropertiesReferencingBuildPaths(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldAlignCompileSourceRootsInConcreteState(org.apache.maven.project.MavenProjectDynamismTest)
> {noformat}
> due to test code suffering from [Common Bug #6|http://www.nabble.com/Re%3A-Common-Bugs-p16522914.html], see attached Surefire report.
> Applying the attached patch only makes the show go on until maven-core which then fails with
> {noformat}
> Tests in error: 
>   test_addExtension_usingModel_ShouldLoadExtensionComponent(org.apache.maven.extension.DefaultExtensionManagerTest)
>   test_addExtension_usingModel_ShouldLoadCustomLifecycleMappingAndArtifactHandler(org.apache.maven.extension.DefaultExtensionManagerTest)
> {noformat}
> The console output of these tests is
> {noformat}
> [WARNING] 
>  	DEPRECATION: The POM for the artifact 'org.apache.maven.core.test:test-extension:jar' was invalid or not found on any repositories.
>  	This may not be supported by future versions of Maven and should be corrected as soon as possible.
>  	Error given: POM 'org.apache.maven.core.test:test-extension' not found in repository: Unable to download the artifact from any repository
>  
>    org.apache.maven.core.test:test-extension:pom:1
>  
>  from the specified remote repositories:
>    central (file:/M:/hud%20son/runtime/jobs/maven-2.1.x-bootstrap/workspace/trunk/maven-core/target/test-classes/org/apache/maven/extension/test-extension-repo/)
>   for project org.apache.maven.core.test:test-extension
> {noformat}
> and suggests that something (maven-artifact?) is not properly decoding the file URL of central back to "M:\hud son\..."

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (MNG-3664) Various unit tests from maven-core fail when run from a directory with space in its path

Posted by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benjamin Bentmann closed MNG-3664.
----------------------------------

         Assignee: Benjamin Bentmann
       Resolution: Fixed
    Fix Version/s:     (was: 3.0-alpha-3)
                   3.0-alpha-1

Fixed in [r720050|http://svn.eu.apache.org/viewvc?view=rev&revision=720050].

> Various unit tests from maven-core fail when run from a directory with space in its path
> ----------------------------------------------------------------------------------------
>
>                 Key: MNG-3664
>                 URL: http://jira.codehaus.org/browse/MNG-3664
>             Project: Maven 2
>          Issue Type: Bug
>          Components: IT Failures
>    Affects Versions: 3.0-alpha-1
>         Environment: WinXP & Xubuntu, Sun JDK 1.6.0
>            Reporter: Benjamin Bentmann
>            Assignee: Benjamin Bentmann
>            Priority: Minor
>             Fix For: 3.0-alpha-1
>
>         Attachments: file-urls.patch, org.apache.maven.project.MavenProjectDynamismTest.txt
>
>
> OK, not an IT failure but I guess unit test failures count, too ;-)
> When running the Hudson package from a base directory with a space, say "M:\hud son", the bootstrap job fails with
> {noformat}
> Tests in error: 
>   testBuildFromRepository_StoreProjectByCoordOnlyIfUncached(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromRepository_DontCheckCacheForRELEASEMetaVersion(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromRepository_DontCheckCacheForLATESTMetaVersion(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildFromFile_StoreByCoordAndFileIfUncached(org.apache.maven.project.workspace.ProjectCachingTest)
>   testBuildSectionGroupIdInterpolation(org.apache.maven.project.MavenProjectDynamismTest)
>   testRoundTrip(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveAddedResourceInRestoredState(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveAddedFilterInRestoredState(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldIncorporateChangedBuildDirectoryViaExpressionsOnNextConcreteCalculation(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldPreserveInitialValuesForPropertiesReferencingBuildPaths(org.apache.maven.project.MavenProjectDynamismTest)
>   testShouldAlignCompileSourceRootsInConcreteState(org.apache.maven.project.MavenProjectDynamismTest)
> {noformat}
> due to test code suffering from [Common Bug #6|http://www.nabble.com/Re%3A-Common-Bugs-p16522914.html], see attached Surefire report.
> Applying the attached patch only makes the show go on until maven-core which then fails with
> {noformat}
> Tests in error: 
>   test_addExtension_usingModel_ShouldLoadExtensionComponent(org.apache.maven.extension.DefaultExtensionManagerTest)
>   test_addExtension_usingModel_ShouldLoadCustomLifecycleMappingAndArtifactHandler(org.apache.maven.extension.DefaultExtensionManagerTest)
> {noformat}
> The console output of these tests is
> {noformat}
> [WARNING] 
>  	DEPRECATION: The POM for the artifact 'org.apache.maven.core.test:test-extension:jar' was invalid or not found on any repositories.
>  	This may not be supported by future versions of Maven and should be corrected as soon as possible.
>  	Error given: POM 'org.apache.maven.core.test:test-extension' not found in repository: Unable to download the artifact from any repository
>  
>    org.apache.maven.core.test:test-extension:pom:1
>  
>  from the specified remote repositories:
>    central (file:/M:/hud%20son/runtime/jobs/maven-2.1.x-bootstrap/workspace/trunk/maven-core/target/test-classes/org/apache/maven/extension/test-extension-repo/)
>   for project org.apache.maven.core.test:test-extension
> {noformat}
> and suggests that something (maven-artifact?) is not properly decoding the file URL of central back to "M:\hud son\..."

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira