Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Report the name of an unreadable directory. #1523

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/alire/alire-index_on_disk.adb
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ package body Alire.Index_On_Disk is
Dir : constant Virtual_File := Create (+Path);
begin
if not Dir.Is_Directory then
Result := Outcome_Failure ("Not a readable directory");
Result := Outcome_Failure ("Not a readable directory: " & Path);
return New_Invalid_Index;
end if;

Expand Down
7 changes: 4 additions & 3 deletions testsuite/tests/index/local-index-not-found/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"""

import os
import os.path
import re

from e3.fs import rm

from drivers.alr import prepare_indexes, run_alr
from drivers.asserts import assert_match


for d in ('no-such-directory',
'file://no-such-directory', ):
rm('alr-config', recursive=True)
Expand All @@ -20,10 +20,11 @@

path_excerpt = os.path.join('alr-config', 'indexes', 'bad_index',
'index.toml')
separator = re.escape(os.path.sep)
assert_match('ERROR: Cannot load metadata from .*{}:'
' Not a readable directory'
' Not a readable directory: .{}{}'
'\n'
.format(re.escape(path_excerpt)),
.format(re.escape(path_excerpt), separator, d),
p.out)

print('SUCCESS')
Loading