summaryrefslogtreecommitdiffstats
path: root/test/unittest/test_func_transmit.py
Commit message (Collapse)AuthorAgeFilesLines
* func-transmit now has some ways of handling exceptions raised from theAdrian Likins2008-09-021-2/+3
| | | | | | | | | Overlord() api class. It will catch them, and then marshall them into a dict of {'name':"?", 'error':1, 'message':"?". 'info':{dict of whatever}} It will also exit the process with status 1 instead of 0. Also, some refactoring to make the error handling a little easier.
* comment out these tests till we find a more consistent way to testsAdrian Likins2008-09-021-16/+17
| | | | group related things
* remove debug spewAdrian Likins2008-08-261-1/+0
|
* update unit testsAdrian Likins2008-08-181-4/+9
|
* fix calls of "func '@group1;@group2" fooAdrian Likins2008-07-241-16/+18
| | | | | | | The groups weren't getting seperated correctly (they expected a ':' as the seperator, which is wrong). Uncomment some of the test cases for this that now work.
* update list_minion test to expect just the listAdrian Likins2008-07-181-1/+1
|
* test_func_transmit.py: refactor the unittestsAdrian Likins2008-07-181-32/+173
| | | | | | | | | | add support for testing yaml/json input/output add support for async testing of all tests try `nosetests -a async test_func_transmit.py` to test all the async test try `nosetest -a json test_func_transmit.py` to test all the json tests, etc NOTE: several of these tests fail for json/yaml, not sure what to do about that
* func-transmit: handle lists of client globs. Not sure this is the correctAdrian Likins2008-07-161-1/+51
| | | | | | | approach, but it seems to mostly work for now test_func_transmit.py: more test cases for func-transmit
* new file, test_func_transmit.py:Adrian Likins2008-07-151-0/+123
unit tests for func-transmit right now, mostly just tests of marshalling data back and forth properly, and some basic calls NOTE: at the moment, it fails alot of these tests test_clients.py: add a couple new tests based on things discovered with test_func_transmit.py