Begin tracking ufpsutil

This commit is contained in:
Innovation 2024-12-15 11:52:31 -06:00
parent 6478948214
commit 51c3427c5e
8 changed files with 15 additions and 0 deletions

0
requirements.txt Normal file
View file

0
tests/__init__.py Normal file
View file

1
tests/test_libufps.py Normal file
View file

@ -0,0 +1 @@
import libufps

1
tests/testfiles/0644 Normal file
View file

@ -0,0 +1 @@
File permissions should equal 0644

View file

@ -0,0 +1 @@
linkdir/

View file

12
ufpsutil.py Normal file
View file

@ -0,0 +1,12 @@
from libufps import ufps
from inspect import getmembers, isfunction
print(getmembers(ufps, isfunction))
basedir = "."
ufps = ufps.ufps(basedir)
print("Regular dir: " + str(ufps.getFilePermissions("tests/testfiles/")) + " | " + str(ufps.getFileOwner("tests/testfiles/")))
print("Regular file: " + str(ufps.getFilePermissions("tests/testfiles/0644")) + " | " + str(ufps.getFileOwner("tests/testfiles/0644")))
print("Linked dir: " + str(ufps.getFilePermissions("tests/testfiles/linktests/link")) + " | " + str(ufps.getFileOwner("tests/testfiles/linktests/link")))
print("Linked file: " + str(ufps.getFilePermissions("tests/testfiles/linktests/linkfile")) + " | " + str(ufps.getFileOwner("tests/testfiles/linktests/linkfile")))