MOON
Server: Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 FrontPage/5.0.2.2635
System: Linux server.asjudinet.com 2.6.32-042stab141.3 #1 SMP Fri Nov 15 22:45:34 MSK 2019 i686
User: asjudine (504)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: //proc/3/root/usr/share/doc/m2crypto-0.16/tests/test_ssl_win.py
#!/usr/bin/python

"""Unit tests for M2Crypto.SSL. 

Win32 version - requires Mark Hammond's Win32 extensions and openssl.exe 
on your PATH.

Copyright (c) 2000-2001 Ng Pheng Siong. All rights reserved."""

import os, os.path, string, time, unittest
import win32process

from M2Crypto import Rand, SSL
import test_ssl

def find_openssl():
    plist = os.environ['PATH'].split(';')
    for p in plist:
        try:
            dir = os.listdir(p)
            if 'openssl.exe' in dir:
                return os.path.join(p, 'openssl.exe')
        except WindowsError:
            pass
    return None


srv_host = 'localhost'
srv_port = 64000

class SSLWinClientTestCase(test_ssl.SSLClientTestCase):

    startupinfo = win32process.STARTUPINFO()
    openssl = find_openssl()

    def start_server(self, args):
        hproc, hthread, pid, tid = win32process.CreateProcess(self.openssl,
            string.join(args), None, None, 0, win32process.DETACHED_PROCESS, 
            None, None, self.startupinfo)
        time.sleep(0.3)
        return hproc

    def stop_server(self, hproc):
        win32process.TerminateProcess(hproc, 0)


def suite():
    return unittest.makeSuite(SSLWinClientTestCase)

def zap_servers():
    pass


if __name__ == '__main__':
    try:
        if find_openssl() is not None:
            Rand.load_file('../randpool.dat', -1) 
            unittest.TextTestRunner().run(suite())
            Rand.save_file('../randpool.dat')
    finally:
        zap_servers()