Begin tracking ufpsutil
This commit is contained in:
parent
6478948214
commit
51c3427c5e
0
requirements.txt
Normal file
0
requirements.txt
Normal file
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
1
tests/test_libufps.py
Normal file
1
tests/test_libufps.py
Normal file
|
@ -0,0 +1 @@
|
|||
import libufps
|
1
tests/testfiles/0644
Normal file
1
tests/testfiles/0644
Normal file
|
@ -0,0 +1 @@
|
|||
File permissions should equal 0644
|
1
tests/testfiles/linktests/link
Symbolic link
1
tests/testfiles/linktests/link
Symbolic link
|
@ -0,0 +1 @@
|
|||
linkdir/
|
0
tests/testfiles/linktests/linkdir/linkfile
Normal file
0
tests/testfiles/linktests/linkdir/linkfile
Normal file
0
tests/testfiles/linktests/linkfile
Normal file
0
tests/testfiles/linktests/linkfile
Normal file
12
ufpsutil.py
Normal file
12
ufpsutil.py
Normal 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")))
|
Loading…
Reference in a new issue