summaryrefslogtreecommitdiffstats
path: root/tests/timeout.py
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-07-12 11:07:06 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-07-12 11:07:06 +0200
commit6e4d24ed15b50411a7b1541ea078756fc455f4ac (patch)
tree3a4f09cc6a725ab569a2fb40f032f4a419f0ee02 /tests/timeout.py
parent199edb1bbf35da2b0d0624a6f3d2860b8be7a6e3 (diff)
downloaduca-ufo-6e4d24ed15b50411a7b1541ea078756fc455f4ac.tar.gz
uca-ufo-6e4d24ed15b50411a7b1541ea078756fc455f4ac.tar.bz2
uca-ufo-6e4d24ed15b50411a7b1541ea078756fc455f4ac.tar.xz
uca-ufo-6e4d24ed15b50411a7b1541ea078756fc455f4ac.zip
Add some TANGO tests
Diffstat (limited to 'tests/timeout.py')
-rw-r--r--tests/timeout.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/timeout.py b/tests/timeout.py
new file mode 100644
index 0000000..3b0d150
--- /dev/null
+++ b/tests/timeout.py
@@ -0,0 +1,42 @@
+import time
+import argparse
+import PyTango
+
+
+def grab(camera, timeout, do_trigger):
+ camera.timeout = timeout
+ camera.trigger_source = 1
+
+ try:
+ camera.Start()
+ except:
+ camera.Stop()
+ camera.Start()
+
+ start = time.time()
+
+ try:
+ if do_trigger:
+ camera.Trigger()
+
+ frame = camera.image
+ end = time.time()
+ print("Success after {} s".format(end -start))
+ except PyTango.DevFailed:
+ end = time.time()
+ print("Timeout after {} s".format(end - start))
+
+ camera.Stop()
+
+
+if __name__ == '__main__':
+ parser = argparse.ArgumentParser()
+ parser.add_argument('--device', '-d', type=str, help="TANGO device path")
+
+ args = parser.parse_args()
+
+ camera = PyTango.DeviceProxy(args.device)
+ grab(camera, 100000, False)
+ grab(camera, 100000, True)
+ grab(camera, 300000, False)
+ grab(camera, 300000, True)