You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Paul Lussier <pl...@lanminds.com> on 2003/08/27 12:47:15 UTC

problems testing 0.28 for release

Hi Folks, 

For the sake of getting this thing released, I'm asking for help!  I
can't for the life of me figure out what's wrong, nor why I can't run
the 'make davcheck' tests. 

Even running 'basic_tests.py --url http://localhost' as outlined in 
subversion/tests/clients/cmndline/README fails with: 

  svn: Bad URL passed to RA layer 
  svn: illegal URL for repository 
  Errors during initial 'svn import': 
  ACTUAL STDERR: 
  svn: Bad URL passed to RA layer 
  svn: illegal URL for repository 
  EXCEPTION: SystemExit(1), skipping cleanup 
  FAIL:  basic_tests.py 1: basic checkout of a wc 

When doing this, the apache error_log reports: 

  [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not\ 
  fetch resource information.  [500, #0] 
  [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not open\ 
  the SVN filesystem at\ 
/usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp [500, #165005] 
  [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] (2)No such file\
  or directory: Expected version '2' of repository; found no version at\
  all; is\ 
`/usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp'\ 
  a valid repository path?  [500, #165005] 
  [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not fetch\
  resource information.  [500, #0] 
  [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not open\ 
  the SVN filesystem at\ 
/usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp\ [500, #165005] 
  [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] (2)No such file\
  or directory: Expected version '2' of repository; found no version at\
  all; is\
`/usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp'\ 
  a valid repository path?  [500, #165005] 
  [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not fetch\
  resource information.  [403, #0] 
  [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] (2)No such fil\ 
  or directory: The URI does not contain the name of a repository.\ 
  [403, #190001] 


My apache config lines for svn are: 

  <Location /repositories> 
    DAV svn 
    SVNParentPath \ 
/usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories 
  </Location> 
     
  <Location /local_tmp/repos> 
    DAV svn 
    SVNPath \
/usr/local/svndev/suversion-0.28/subversion/tests/clients/cmdline/local_tmp/repos 
  </Location> 

httpd is running as me, and I recursively own everything under
/usr/local/svndev, so I don't think permissions are the problem. 

Can someone please provide me w/ a sanity check?

Thanks,
-- 
Seeya,
Paul

GPG Key fingerprint = 1660 FECC 5D21 D286 F853  E808 BB07 9239 53F1 28EE

	 If you're not having fun, you're not doing it right!


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: problems testing 0.28 for release

Posted by Ben Collins-Sussman <su...@collab.net>.
Paul Lussier <pl...@lanminds.com> writes:


>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not open\ 
>   the SVN filesystem at\ 
> /usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp [500, #165005] 

Why the heck is it trying to open a repository called 'local_tmp'
within your /repositories Location?  It should be trying to open
/local_tmp/repos, not /repositories/local_tmp.


>   <Location /repositories> 
>     DAV svn 
>     SVNParentPath \ 
> /usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories 
>   </Location> 
>      
>   <Location /local_tmp/repos> 
>     DAV svn 
>     SVNPath \
> /usr/local/svndev/suversion-0.28/subversion/tests/clients/cmdline/local_tmp/repos 
>   </Location> 

"suversion-0.28"?  Is that a typo above?

Do you have *any other* Location blocks in your httpd.conf?

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: problems testing 0.28 for release

Posted by "Sergey A. Lipnevich" <se...@optimaltec.com>.
Paul,

I've committed a script, davautocheck.sh, that takes care of everything 
for you, just have apache's httpd in the PATH and run this script. Look 
for it in your working copy.
Thanks!

Sergey.

Paul Lussier wrote:
> Hi Folks, 
> 
> For the sake of getting this thing released, I'm asking for help!  I
> can't for the life of me figure out what's wrong, nor why I can't run
> the 'make davcheck' tests. 
> 
> Even running 'basic_tests.py --url http://localhost' as outlined in 
> subversion/tests/clients/cmndline/README fails with: 
> 
>   svn: Bad URL passed to RA layer 
>   svn: illegal URL for repository 
>   Errors during initial 'svn import': 
>   ACTUAL STDERR: 
>   svn: Bad URL passed to RA layer 
>   svn: illegal URL for repository 
>   EXCEPTION: SystemExit(1), skipping cleanup 
>   FAIL:  basic_tests.py 1: basic checkout of a wc 
> 
> When doing this, the apache error_log reports: 
> 
>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not\ 
>   fetch resource information.  [500, #0] 
>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not open\ 
>   the SVN filesystem at\ 
> /usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp [500, #165005] 
>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] (2)No such file\
>   or directory: Expected version '2' of repository; found no version at\
>   all; is\ 
> `/usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp'\ 
>   a valid repository path?  [500, #165005] 
>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not fetch\
>   resource information.  [500, #0] 
>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not open\ 
>   the SVN filesystem at\ 
> /usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp\ [500, #165005] 
>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] (2)No such file\
>   or directory: Expected version '2' of repository; found no version at\
>   all; is\
> `/usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories/local_tmp'\ 
>   a valid repository path?  [500, #165005] 
>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] Could not fetch\
>   resource information.  [403, #0] 
>   [Wed Aug 27 08:15:58 2003] [error] [client 127.0.0.1] (2)No such fil\ 
>   or directory: The URI does not contain the name of a repository.\ 
>   [403, #190001] 
> 
> 
> My apache config lines for svn are: 
> 
>   <Location /repositories> 
>     DAV svn 
>     SVNParentPath \ 
> /usr/local/svndev/subversion-0.28/subversion/tests/clients/cmdline/repositories 
>   </Location> 
>      
>   <Location /local_tmp/repos> 
>     DAV svn 
>     SVNPath \
> /usr/local/svndev/suversion-0.28/subversion/tests/clients/cmdline/local_tmp/repos 
>   </Location> 
> 
> httpd is running as me, and I recursively own everything under
> /usr/local/svndev, so I don't think permissions are the problem. 
> 
> Can someone please provide me w/ a sanity check?
> 
> Thanks,



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org