| OLD | NEW |
| (Empty) | |
| 1 #!/usr/bin/env python |
| 2 # Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 # Use of this source code is governed by the Apache v2.0 license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 import os |
| 7 import sys |
| 8 import unittest |
| 9 import StringIO |
| 10 |
| 11 ROOT_DIR = os.path.dirname(os.path.abspath(os.path.join( |
| 12 __file__, os.pardir, os.pardir, os.pardir))) |
| 13 sys.path.insert(0, ROOT_DIR) |
| 14 |
| 15 from libs.logdog import streamname |
| 16 |
| 17 |
| 18 class StreamNameTestCase(unittest.TestCase): |
| 19 |
| 20 def testInvalidStreamNamesRaiseValueError(self): |
| 21 for name in ( |
| 22 '', |
| 23 'a' * (streamname._MAX_STREAM_NAME_LENGTH+1), |
| 24 ' s p a c e s ', |
| 25 '-hyphen', |
| 26 'stream/path/+/not/name', |
| 27 ): |
| 28 with self.assertRaises(ValueError): |
| 29 streamname.validate_stream_name(name) |
| 30 |
| 31 def testValidStreamNamesDoNotRaise(self): |
| 32 for name in ( |
| 33 'a', |
| 34 'a' * (streamname._MAX_STREAM_NAME_LENGTH), |
| 35 'foo/bar', |
| 36 'f123/four/five-_.:', |
| 37 ): |
| 38 raised = False |
| 39 try: |
| 40 streamname.validate_stream_name(name) |
| 41 except ValueError: |
| 42 raised = True |
| 43 self.assertFalse(raised, "Stream name '%s' raised ValueError" % (name,)) |
| 44 |
| 45 |
| 46 if __name__ == '__main__': |
| 47 unittest.main() |
| OLD | NEW |