12 lines
397 B
Python
12 lines
397 B
Python
import pytest
|
|
import os
|
|
import subprocess
|
|
|
|
# TODO Still need to devise a testing strategy (https://foundation.aninix.net/AniNIX/Aether/issues/1)
|
|
def test_aether():
|
|
print(os.getcwd())
|
|
fh = os.popen("echo bye | timeout 3 sudo sftp -o IdentityFile=/home/aether/.ssh/aether aether@aninix.net", mode='r', buffering=-1)
|
|
output = fh.read()
|
|
retcode = fh.close()
|
|
assert retcode == None
|