GenTestScripts.py :  » Windows » pyExcelerator » pywin32-214 » com » win32com » test » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Windows » pyExcelerator 
pyExcelerator » pywin32 214 » com » win32com » test » GenTestScripts.py
#
# Generate scripts needed for serious testing!
#
import win32com, win32com.client.makepy
import win32com.test
import pythoncom
import sys, os

genList = [
("msword8", "{00020905-0000-0000-C000-000000000046}",1033,8,0),
]

genDir = "Generated4Test"
def GetGenPath():
    import win32api
    return os.path.join(win32api.GetFullPathName(win32com.test.__path__[0]), genDir)

def GenerateFromRegistered(fname, *loadArgs):
#       tlb = apply(pythoncom.LoadRegTypeLib, loadArgs)
    genPath = GetGenPath()
    try:
        os.stat(genPath)
    except os.error:
        os.mkdir(genPath)
    # Ensure an __init__ exists.
    open(os.path.join(genPath, "__init__.py"), "w").close()
    print fname, ": generating -",
    f = open(os.path.join(genPath, fname + ".py"), "w")
    win32com.client.makepy.GenerateFromTypeLibSpec(loadArgs, f, bQuiet = 1, bGUIProgress = 1)
    f.close()
    print "compiling -",
    fullModName = "win32com.test.%s.%s" % (genDir, fname)
    exec "import " + fullModName
    # Inject the generated module as a top level module.
    sys.modules[fname] = sys.modules[fullModName]
    print "done"


def GenerateAll():
    for args in genList:
        try:
            GenerateFromRegistered(*args)
        except KeyboardInterrupt:
            print "** Interrupted ***"
            break
        except pythoncom.com_error:
            print "** Could not generate test code for ", args[0]

def CleanAll():
    print "Cleaning generated test scripts..."
    try: # Clear exceptions!
        1/0
    except:
        pass
    genPath = GetGenPath()
    for args in genList:
        try:
            name = args[0]+".py"
            os.unlink(os.path.join(genPath, name))
        except os.error, details:
            if type(details)==type(()) and details[0]!=2:
                print "Could not deleted generated", name, details
        try:
            name = args[0]+".pyc"
            os.unlink(os.path.join(genPath, name))
        except os.error, details:
            if type(details)==type(()) and details[0]!=2:
                print "Could not deleted generated", name, details
        try:
            os.unlink(os.path.join(genPath, "__init__.py"))
        except:
            pass
        try:
            os.unlink(os.path.join(genPath, "__init__.pyc"))
        except:
            pass
    try:
        os.rmdir(genPath)
    except os.error, details:
        print "Could not delete test directory -", details

if __name__=='__main__':
    GenerateAll()
    CleanAll()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.