| """Tests for autoserv_parser.""" |
| from autotest_lib.server import autoserv_parser |
| class autoserv_parser_test(unittest.TestCase): |
| self.orig_sys_argv = sys.argv |
| sys.argv = self.orig_sys_argv |
| # We resort to this vile hack because autoserv_parser is bad |
| # enough to instantiate itself and replace its own class definition |
| # with its instance at module import time. Disgusting. |
| return autoserv_parser.autoserv_parser.__class__() |
| def test_control_file_args(self): |
| sys.argv = [None, '--args', '-y -z foo --hello', 'controlfile'] |
| parser = self._get_parser() |
| self.assertEqual(['controlfile', '-y', '-z', 'foo', '--hello'], |
| if __name__ == '__main__': |