def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsStatusCmdTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsCClientTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsContainerTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsAuthorizationTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngams_test_tpl"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsOfflineCmdTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsArchiveStressTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsIdleSuspensionTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsPClientTest.test_Archive_1"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsDataCheckingThreadTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsJanitorThreadTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsConfigHandlingTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsDbSnapShotTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsRemFileCmdTest"])
def run(): """ Run the complete test. Returns: Void. """ ngamsTestLib.runTest(["ngamsMIMEMultipartTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsSubscriptionTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsBBCPArchiveTest"])
def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsDiscardCmdTest"])
def run(): runTest(["ngamsCacheDelTest"])
# Users 1 and 2 are allowed to STATUS, user 3 isn't self._assert_code(200, bauth=auth1) self._assert_code(200, bauth=auth2) self._assert_code(403, bauth=auth3) # Users 1 and 3 are allowed to send the DOESNT_EXIST command, user 3 isn't # We get 404s here because the command actually doesn't exist, which yields # that HTTP code, and also because HTTP authentication happens before # command processing self._assert_code(404, bauth=auth1, cmd='DOESNT_EXIST') self._assert_code(403, bauth=auth2, cmd='DOESNT_EXIST') self._assert_code(404, bauth=auth3, cmd='DOESNT_EXIST') def run(): """ Run the complete test. Returns: Void. """ runTest(["ngamsAuthorizationTest"]) if __name__ == '__main__': """ Main program executing the test cases of the module test. """ runTest(sys.argv) # EOF
def run(): runTest(["ngamsQueryCmdTest"])
finfo = ngamsMIMEMultipart.file_info('application/octet-stream', name, size, lambda: open(name, 'rb')) reader = ngamsMIMEMultipart.FileReader(finfo) rlen = len(reader) message = StringIO.StringIO() rfunc = functools.partial(reader.read, 65536) for buf in iter(rfunc, ''): message.write(buf) message = message.getvalue() mlen = len(message) self.assertEqual(mlen, rlen) def run(): """ Run the complete test. Returns: Void. """ ngamsTestLib.runTest(["ngamsMIMEMultipartTest"]) if __name__ == "__main__": """ Main program executing the test cases of the module test. """ ngamsTestLib.runTest(sys.argv) # EOF
def run(): ngamsTestLib.runTest(["ngamsPawseyStageTest"])