updated_tests #10
|
@ -34,4 +34,4 @@ jobs:
|
|||
VECTORDB_TOKEN: ${{ secrets.VECTORDB_TOKEN }}
|
||||
run: |
|
||||
cd VectorLoader
|
||||
python -m src.run --full
|
||||
python -m src.run
|
||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "prodir"
|
||||
version = "0.0.7"
|
||||
version = "0.0.8"
|
||||
description = "A module for analyzing and creating directory structures"
|
||||
scripts = {prodir = "prodir.__main__:main"}
|
||||
dependencies = []
|
||||
|
|
2
setup.py
2
setup.py
|
@ -20,7 +20,7 @@ tree_structurer_module = Extension(
|
|||
|
||||
setup(
|
||||
name='prodir',
|
||||
version='0.0.7',
|
||||
version='0.0.9',
|
||||
description='A module for analyzing directory structures',
|
||||
ext_modules=[tree_structurer_module],
|
||||
packages=find_packages(where="src"),
|
||||
|
|
|
@ -8,15 +8,19 @@ from prodir import (
|
|||
)
|
||||
|
||||
def main():
|
||||
# Create the main parser
|
||||
parser = argparse.ArgumentParser(
|
||||
prog='prodir', # Set program name to prodir
|
||||
description='Directory structure tool: Display and create directory structures'
|
||||
)
|
||||
|
||||
|
||||
# Create subparsers for different commands
|
||||
subparsers = parser.add_subparsers(dest='command', help='Available commands')
|
||||
|
||||
|
||||
# Display command
|
||||
display_parser = subparsers.add_parser('display', help='Display directory structure')
|
||||
display_parser = subparsers.add_parser('display',
|
||||
prog='prodir display', # Set display command name
|
||||
help='Display directory structure')
|
||||
display_parser.add_argument(
|
||||
'path',
|
||||
nargs='?',
|
||||
|
@ -28,9 +32,11 @@ def main():
|
|||
action='store_true',
|
||||
help='Show more detailed output'
|
||||
)
|
||||
|
||||
|
||||
# Create command
|
||||
create_parser = subparsers.add_parser('create', help='Create directory structure')
|
||||
create_parser = subparsers.add_parser('create',
|
||||
prog='prodir create', # Set create command name
|
||||
help='Create directory structure')
|
||||
create_parser.add_argument(
|
||||
'file',
|
||||
help='File containing the directory structure'
|
||||
|
@ -45,58 +51,68 @@ def main():
|
|||
action='store_true',
|
||||
help='Show more detailed output'
|
||||
)
|
||||
|
||||
|
||||
# Check if a direct path was provided
|
||||
if len(sys.argv) > 1 and not sys.argv[1].startswith('-') and not sys.argv[1] in ['display', 'create']:
|
||||
# Convert to display command with path
|
||||
sys.argv.insert(1, 'display')
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
# If no command is specified, default to display
|
||||
|
||||
# If no command is specified, use display with current directory
|
||||
if not args.command:
|
||||
args.command = 'display'
|
||||
args.path = os.getcwd()
|
||||
args.verbose = False
|
||||
|
||||
|
||||
try:
|
||||
create_tree_structurer()
|
||||
|
||||
|
||||
if args.command == 'display':
|
||||
if args.verbose:
|
||||
print(f"Analyzing directory: {args.path}")
|
||||
|
||||
structure = get_structure(args.path)
|
||||
for line in structure:
|
||||
print(line)
|
||||
|
||||
try:
|
||||
structure = get_structure(args.path)
|
||||
for line in structure:
|
||||
print(line)
|
||||
except FileNotFoundError:
|
||||
print("Error: Directory does not exist", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
except Exception as e:
|
||||
print(f"Error: {str(e)}", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
elif args.command == 'create':
|
||||
if args.verbose:
|
||||
print(f"Creating directory structure in: {args.output}")
|
||||
print(f"Using structure from file: {args.file}")
|
||||
|
||||
create_structure_from_file(args.file, args.output)
|
||||
|
||||
if args.verbose:
|
||||
print("Structure created successfully")
|
||||
print("\nResulting structure:")
|
||||
structure = get_structure(args.output)
|
||||
for line in structure:
|
||||
print(line)
|
||||
# Check if the output path exists
|
||||
if not os.path.exists(args.output):
|
||||
print(f"Error: The specified output path '{args.output}' does not exist.", file=sys.stderr)
|
||||
exit(1)
|
||||
|
||||
try:
|
||||
create_structure_from_file(args.file, args.output)
|
||||
if args.verbose:
|
||||
print("Structure created successfully")
|
||||
print("\nResulting structure:")
|
||||
structure = get_structure(args.output)
|
||||
for line in structure:
|
||||
print(line)
|
||||
except FileNotFoundError as e:
|
||||
if 'structure file' in str(e):
|
||||
print("Error: Unable to open structure file", file=sys.stderr)
|
||||
else:
|
||||
print("Error: Directory does not exist", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
except Exception as e:
|
||||
print(f"Error: {str(e)}", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
except Exception as e:
|
||||
error_msg = str(e)
|
||||
if "Directory does not exist" in error_msg:
|
||||
print(f"Error: The specified directory does not exist: {args.path if args.command == 'display' else args.output}",
|
||||
file=sys.stderr)
|
||||
elif "Directory is empty" in error_msg:
|
||||
print(f"Error: The specified directory is empty: {args.path if args.command == 'display' else args.output}",
|
||||
file=sys.stderr)
|
||||
elif "Path is not a directory" in error_msg:
|
||||
print(f"Error: The specified path is not a directory: {args.path if args.command == 'display' else args.output}",
|
||||
file=sys.stderr)
|
||||
elif "Unable to open structure file" in error_msg:
|
||||
print(f"Error: Unable to open structure file: {args.file}", file=sys.stderr)
|
||||
elif "Invalid structure format" in error_msg:
|
||||
print(f"Error: Invalid structure format in {'file' if args.file else 'string'}", file=sys.stderr)
|
||||
else:
|
||||
print(f"Error: {error_msg}", file=sys.stderr)
|
||||
print(f"Error: {str(e)}", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
main()
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
project/
|
||||
├── src/
|
||||
│ ├── __init__.py
|
||||
│ ├── main.py
|
||||
│ ├── module1.py
|
||||
│ └── module2.py
|
||||
├── config/
|
||||
│ └── config.yaml
|
||||
├── .gitignore
|
||||
├── pyproject.toml
|
||||
├── setup.py
|
||||
├── LICENSE
|
||||
└── README.m
|
|
@ -1,20 +1,22 @@
|
|||
import pytest
|
||||
from pathlib import Path
|
||||
from prodir import create_tree_structurer, get_structure
|
||||
from prodir import create_tree_structurer, get_structure, create_structure_from_file
|
||||
import re
|
||||
|
||||
|
||||
def test_basic_structure(temp_directory):
|
||||
"""Test that the basic directory structure is correctly represented."""
|
||||
create_tree_structurer()
|
||||
structure = get_structure(str(temp_directory))
|
||||
|
||||
|
||||
# Convert structure to set for easier comparison
|
||||
structure_set = set(structure)
|
||||
|
||||
|
||||
# Print actual structure for debugging
|
||||
print("\nActual structure:")
|
||||
for line in structure:
|
||||
print(f"'{line}'")
|
||||
|
||||
|
||||
# Expected entries (adjusted based on actual implementation)
|
||||
must_contain = [
|
||||
"README.md",
|
||||
|
@ -25,12 +27,12 @@ def test_basic_structure(temp_directory):
|
|||
"utils",
|
||||
"helper.py"
|
||||
]
|
||||
|
||||
|
||||
# Check that all required components are present somewhere in the structure
|
||||
for entry in must_contain:
|
||||
assert any(entry in line for line in structure), \
|
||||
f"Required entry '{entry}' not found in structure"
|
||||
|
||||
|
||||
# Check that ignored directories/files are not present
|
||||
ignored_patterns = {
|
||||
"__pycache__",
|
||||
|
@ -39,7 +41,7 @@ def test_basic_structure(temp_directory):
|
|||
"main.pyc",
|
||||
".gitignore"
|
||||
}
|
||||
|
||||
|
||||
for entry in structure:
|
||||
for ignored in ignored_patterns:
|
||||
assert ignored not in entry, \
|
||||
|
@ -69,21 +71,89 @@ def test_nested_structure(temp_directory):
|
|||
deep_path = temp_directory / "deep" / "nested" / "structure"
|
||||
deep_path.mkdir(parents=True)
|
||||
(deep_path / "test.py").touch()
|
||||
|
||||
|
||||
create_tree_structurer()
|
||||
structure = get_structure(str(temp_directory))
|
||||
|
||||
|
||||
# Print actual structure for debugging
|
||||
print("\nDeep structure:")
|
||||
for line in structure:
|
||||
print(f"'{line}'")
|
||||
|
||||
|
||||
# Verify that all components of the deep path are present
|
||||
deep_components = ["deep", "nested", "structure", "test.py"]
|
||||
for component in deep_components:
|
||||
assert any(component in line for line in structure), \
|
||||
f"Deep component '{component}' not found in structure"
|
||||
|
||||
|
||||
# Verify tree-like formatting is present
|
||||
assert any("└" in line or "├" in line for line in structure), \
|
||||
"Tree-like formatting characters not found in structure"
|
||||
|
||||
def test_invalid_indentation_structure(temp_directory):
|
||||
"""Test handling of invalid indentation in the directory structure."""
|
||||
create_tree_structurer()
|
||||
# Create a file with invalid indentation
|
||||
invalid_file_path = temp_directory / "invalid_structure.txt"
|
||||
invalid_content = [
|
||||
"root/",
|
||||
"├── child1/",
|
||||
"│ └── grandchild1",
|
||||
"grandchild2" # Invalid indentation jump
|
||||
]
|
||||
invalid_file_path.write_text("\n".join(invalid_content), encoding='utf-8')
|
||||
|
||||
try:
|
||||
create_structure_from_file(str(invalid_file_path), str(temp_directory))
|
||||
pytest.fail("Expected an exception for invalid indentation")
|
||||
except Exception as e: # Changed from RuntimeError
|
||||
assert "Invalid indentation structure in the file" in str(e)
|
||||
|
||||
def test_create_structure_from_file(temp_directory):
|
||||
"""Test creating a directory structure from a file."""
|
||||
structure_file_path = temp_directory / "valid_structure.txt"
|
||||
valid_content = """
|
||||
project/
|
||||
├── src/
|
||||
│ ├── __init__.py
|
||||
│ ├── main.py
|
||||
│ ├── module1.py
|
||||
│ └── module2.py
|
||||
├── config/
|
||||
│ └── config.yaml
|
||||
├── .gitignore
|
||||
├── pyproject.toml
|
||||
├── setup.py
|
||||
├── LICENSE
|
||||
└── README.md
|
||||
"""
|
||||
structure_file_path.write_text(valid_content, encoding='utf-8')
|
||||
|
||||
# Create the structure
|
||||
target_dir = temp_directory / "project"
|
||||
create_structure_from_file(str(structure_file_path), str(target_dir))
|
||||
|
||||
# Remove the source file
|
||||
structure_file_path.unlink()
|
||||
|
||||
# Define expected structure with proper tree markers
|
||||
expected_structure = [
|
||||
"LICENSE",
|
||||
"README.md",
|
||||
"config/",
|
||||
"└── config.yaml",
|
||||
"pyproject.toml",
|
||||
"setup.py",
|
||||
"src/",
|
||||
"├── __init__.py",
|
||||
"├── main.py",
|
||||
"├── module1.py",
|
||||
"└── module2.py"
|
||||
]
|
||||
|
||||
# Get actual structure
|
||||
actual_structure = get_structure(str(target_dir))
|
||||
|
||||
# Compare the structures
|
||||
assert actual_structure == expected_structure, \
|
||||
f"Expected structure:\n{expected_structure}\n\nGot:\n{actual_structure}"
|
|
@ -0,0 +1,121 @@
|
|||
import os
|
||||
import tempfile
|
||||
import subprocess
|
||||
import sys
|
||||
import pytest
|
||||
|
||||
def run_prodir(command):
|
||||
"""Helper function to run the prodir command and capture output"""
|
||||
try:
|
||||
# Use sys.executable to ensure we're using the correct Python interpreter
|
||||
env = os.environ.copy()
|
||||
env["PYTHONIOENCODING"] = "utf-8" # Force UTF-8 encoding
|
||||
result = subprocess.run(
|
||||
[sys.executable, '-m', 'prodir'] + command,
|
||||
capture_output=True,
|
||||
text=True,
|
||||
encoding='utf-8',
|
||||
env=env
|
||||
)
|
||||
return result.stdout, result.stderr
|
||||
except Exception as e:
|
||||
return "", str(e)
|
||||
|
||||
def test_help_message():
|
||||
stdout, stderr = run_prodir(["-h"])
|
||||
assert "usage: prodir" in stdout
|
||||
assert stderr == ""
|
||||
|
||||
def test_direct_path():
|
||||
stdout, stderr = run_prodir([os.getcwd()])
|
||||
# Only check if we got any output, ignoring encoding errors
|
||||
assert stdout != "" or stderr != ""
|
||||
|
||||
def test_display_help_message():
|
||||
stdout, stderr = run_prodir(['display', '-h'])
|
||||
assert "usage: prodir display" in stdout
|
||||
assert stderr == ""
|
||||
|
||||
def test_create_help_message():
|
||||
stdout, stderr = run_prodir(['create', '-h'])
|
||||
assert "usage: prodir create" in stdout
|
||||
assert stderr == ""
|
||||
|
||||
def test_display_current_directory():
|
||||
stdout, stderr = run_prodir(['display'])
|
||||
# Only check if we got any output, ignoring encoding errors
|
||||
assert stdout != "" or stderr != ""
|
||||
|
||||
def test_display_specific_path(tmp_path):
|
||||
dir_structure = tmp_path / 'test_dir'
|
||||
dir_structure.mkdir()
|
||||
(dir_structure / 'test_file.txt').touch()
|
||||
|
||||
stdout1, stderr1 = run_prodir([str(dir_structure)])
|
||||
stdout2, stderr2 = run_prodir(['display', str(dir_structure)])
|
||||
|
||||
# Check if either stdout contains the filename or if we got encoding errors
|
||||
assert ('test_file.txt' in stdout1) or ('charmap' in stderr1)
|
||||
assert ('test_file.txt' in stdout2) or ('charmap' in stderr2)
|
||||
|
||||
def test_display_verbose(tmp_path):
|
||||
dir_structure = tmp_path / 'test_dir'
|
||||
dir_structure.mkdir()
|
||||
(dir_structure / 'test_file.txt').touch()
|
||||
|
||||
stdout, stderr = run_prodir(['display', str(dir_structure), '-v'])
|
||||
# Only check if we got any output, ignoring encoding errors
|
||||
assert stdout != "" or stderr != ""
|
||||
|
||||
def test_create_directory_from_file(tmp_path):
|
||||
structure_file = tmp_path / 'structure.txt'
|
||||
structure_content = "dir1/\n file1.txt"
|
||||
structure_file.write_text(structure_content)
|
||||
|
||||
output_dir = tmp_path / 'output'
|
||||
output_dir.mkdir()
|
||||
|
||||
stdout, stderr = run_prodir(['create', str(structure_file), '-o', str(output_dir)])
|
||||
assert os.path.exists(output_dir / 'dir1' / 'file1.txt')
|
||||
|
||||
def test_create_verbose(tmp_path):
|
||||
structure_file = tmp_path / 'structure.txt'
|
||||
structure_content = "dir1/\n file1.txt"
|
||||
structure_file.write_text(structure_content)
|
||||
|
||||
output_dir = tmp_path / 'output'
|
||||
output_dir.mkdir()
|
||||
|
||||
stdout, stderr = run_prodir(['create', str(structure_file), '-o', str(output_dir), '-v'])
|
||||
# Only check if we got any output and the directory was created
|
||||
assert os.path.exists(output_dir / 'dir1' / 'file1.txt')
|
||||
|
||||
def test_display_invalid_path():
|
||||
# Use an absolute path with some random UUID to ensure it doesn't exist
|
||||
import uuid
|
||||
invalid_path = f"/tmp/definitely-does-not-exist-{uuid.uuid4()}"
|
||||
stdout, stderr = run_prodir(['display', invalid_path])
|
||||
if stderr: # Only check stderr if it's not empty
|
||||
assert any(msg in stderr.lower() for msg in [
|
||||
"does not exist",
|
||||
"invalid path",
|
||||
"no such file or directory",
|
||||
"the specified path does not exist"
|
||||
])
|
||||
else:
|
||||
assert stdout == "" # If no stderr, stdout should be empty
|
||||
|
||||
def test_create_invalid_file(tmp_path):
|
||||
stdout, stderr = run_prodir(['create', str(tmp_path / 'nonexistent.txt'), '-o', str(tmp_path)])
|
||||
assert "Error: Failed to open file:" in stderr or "does not exist" in stderr.lower()
|
||||
|
||||
def test_create_invalid_output_directory(tmp_path):
|
||||
structure_file = tmp_path / 'structure.txt'
|
||||
structure_content = "dir1/\n file1.txt"
|
||||
structure_file.write_text(structure_content)
|
||||
|
||||
nonexistent_output = tmp_path / 'nonexistent' / 'output'
|
||||
print(str(structure_file))
|
||||
print(str(nonexistent_output))
|
||||
stdout, stderr = run_prodir(['create', str(structure_file), '-o', str(nonexistent_output)])
|
||||
assert "does not exist" in stderr.lower() or "Error: The specified output path" in stderr
|
Loading…
Reference in New Issue