From c8df791d1326553eeb8b416cd2b9c7f37e4bb1aa Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Wed, 1 Aug 2012 17:54:32 -0400 Subject: [PATCH] cc-4105: added misc. testing scripts --- python_apps/media-monitor2/pyitest.py | 29 +++++++++++++++++++ .../media-monitor2/tests/prepare_tests.py | 19 ++++++++++++ python_apps/media-monitor2/tests/run_tests.pl | 7 +++++ 3 files changed, 55 insertions(+) create mode 100755 python_apps/media-monitor2/pyitest.py create mode 100644 python_apps/media-monitor2/tests/prepare_tests.py create mode 100755 python_apps/media-monitor2/tests/run_tests.pl diff --git a/python_apps/media-monitor2/pyitest.py b/python_apps/media-monitor2/pyitest.py new file mode 100755 index 000000000..9d3870b5b --- /dev/null +++ b/python_apps/media-monitor2/pyitest.py @@ -0,0 +1,29 @@ +#!/usr/bin/python +import sys +import os +import getopt +import pyinotify +import pprint + +# a little shit script to test out pyinotify events + +class AT(pyinotify.ProcessEvent): + def process_default(self, event): + pprint.pprint(event) + +def main(): + optlist, arguments = getopt.getopt(sys.argv[1:], '', ["dir="]) + ldir = "" + for k,v in optlist: + if k == '--dir': + ldir = v + break + if not os.path.exists(ldir): + print("can't pyinotify dir: '%s'. it don't exist" % ldir) + sys.exit(0) + wm = pyinotify.WatchManager() + notifier = pyinotify.Notifier(wm) + wm.add_watch(ldir, pyinotify.ALL_EVENTS, auto_add=True, rec=True, proc_fun=AT()) + notifier.loop() + +if __name__ == '__main__': main() diff --git a/python_apps/media-monitor2/tests/prepare_tests.py b/python_apps/media-monitor2/tests/prepare_tests.py new file mode 100644 index 000000000..2522468ef --- /dev/null +++ b/python_apps/media-monitor2/tests/prepare_tests.py @@ -0,0 +1,19 @@ +import shutil +import subprocess +# The tests rely on a lot of absolute paths and other garbage so this file +# configures all of that +music_folder = u'/home/rudi/music' +o_path = u'/home/rudi/throwaway/ACDC_-_Back_In_Black-sample-64kbps.ogg' +watch_path = u'/home/rudi/throwaway/fucking_around/watch/', +real_path1 = u'/home/rudi/throwaway/fucking_around/watch/unknown/unknown/ACDC_-_Back_In_Black-sample-64kbps-64kbps.ogg' +opath = u"/home/rudi/Airtime/python_apps/media-monitor2/tests/" +ppath = u"/home/rudi/Airtime/python_apps/media-monitor2/media/" +sample_config = u'/home/rudi/Airtime/python_apps/media-monitor2/tests/api_client.cfg' +real_config = u'/home/rudi/Airtime/python_apps/media-monitor2/tests/live_client.cfg' +api_client_path = '/etc/airtime/api_client.cfg' + +if __name__ == "__main__": + shutil.copy(api_client_path, real_config) + # TODO : fix this to use liberal permissions + subprocess.call(["chown","rudi",real_config]) + diff --git a/python_apps/media-monitor2/tests/run_tests.pl b/python_apps/media-monitor2/tests/run_tests.pl new file mode 100755 index 000000000..a397517ad --- /dev/null +++ b/python_apps/media-monitor2/tests/run_tests.pl @@ -0,0 +1,7 @@ +#!/usr/bin/perl +use strict; +use warnings; + +foreach my $file (glob "*.py") { + system("python $file") unless $file =~ /prepare_tests.py/; +}