30 lines
827 B
Python
30 lines
827 B
Python
import subprocess
|
|
import sys
|
|
import unittest
|
|
try: # python2
|
|
# Must try this first as io also exists in python2
|
|
# but in the wrong one!
|
|
import BytesIO as io
|
|
except ImportError: # python3
|
|
import io
|
|
|
|
|
|
def run_resync_explorer(args):
|
|
args.insert(0, './resync-explorer')
|
|
proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
(out, err) = proc.communicate()
|
|
return(out, err)
|
|
|
|
|
|
class TestClientLinkOptions(unittest.TestCase):
|
|
|
|
def test01_help(self):
|
|
"""Check that it runs with -h."""
|
|
txt = run_resync_explorer(['-h'])[0]
|
|
self.assertRegex(txt, rb'''ResourceSync explorer \(''')
|
|
|
|
def test02_error(self):
|
|
"""Bad parameter."""
|
|
err = run_resync_explorer([])[1]
|
|
self.assertRegex(err, rb'''FatalError: No source information''')
|