]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - misc/build_helpers/run_trial.py
29fce952ea5e9f8b716687ec3a9a60322dd2dc9d
[tahoe-lafs/tahoe-lafs.git] / misc / build_helpers / run_trial.py
1 #!/usr/bin/env python
2
3 import os, sys, re, glob
4
5 def read_version_py(infname):
6     try:
7         verstrline = open(infname, "rt").read()
8     except EnvironmentError:
9         return None
10     else:
11         VSRE = r"^verstr = ['\"]([^'\"]*)['\"]"
12         mo = re.search(VSRE, verstrline, re.M)
13         if mo:
14             return mo.group(1)
15
16 version = read_version_py(os.path.join('..', 'src', 'allmydata', '_version.py'))
17
18 if version is None:
19     raise AssertionError("We don't know which version we're supposed to be testing.")
20
21 APPNAME='allmydata-tahoe'
22
23 adglobals = {}
24 execfile(os.path.join('..', 'src', 'allmydata', '_auto_deps.py'), adglobals)
25 install_requires = adglobals['install_requires']
26 test_requires = adglobals.get('test_requires', ['mock'])
27
28 # setuptools/zetuptoolz looks in __main__.__requires__ for a list of
29 # requirements.
30
31 __requires__ = [APPNAME + '==' + version] + install_requires + test_requires
32
33 print "Requirements: %r" % (__requires__,)
34
35 eggz = glob.glob(os.path.join('..', 'setuptools-*.egg'))
36 if len(eggz) > 0:
37    egg = os.path.realpath(eggz[0])
38    print "Inserting egg on sys.path: %r" % (egg,)
39    sys.path.insert(0, egg)
40
41 import pkg_resources
42
43 modulename = None
44 for i in xrange(1, len(sys.argv)):
45     if not sys.argv[i].startswith('-'):
46         modulename = sys.argv[i]
47         break
48
49 if modulename is None:
50     raise AssertionError("no test module specified")
51
52 __import__(modulename)
53 srcfile = sys.modules[modulename].__file__
54 srcdir = os.path.dirname(os.path.realpath(srcfile))
55
56 components = modulename.split('.')
57 leaf = os.path.normcase(components[-1])
58 if os.path.normcase(os.path.basename(srcfile)) in (leaf + '.py', leaf + '.pyc'):
59     # strip the leaf module name
60     components = components[:-1]
61
62 for i in components:
63     srcdir = os.path.dirname(srcdir)
64
65 if os.path.normcase(srcdir).endswith('.egg'):
66     srcdir = os.path.dirname(srcdir)
67 elif os.path.normcase(os.path.basename(srcdir)) == 'site-packages':
68     srcdir = os.path.dirname(srcdir)
69     if re.search(r'python.+\..+', os.path.normcase(os.path.basename(srcdir))):
70         srcdir = os.path.dirname(srcdir)
71     if os.path.normcase(os.path.basename(srcdir)) == 'lib':
72         srcdir = os.path.dirname(srcdir)
73
74 rootdir = os.path.normcase(os.path.normpath(srcdir))
75 if os.path.basename(rootdir) == 'src':
76     rootdir = os.path.dirname(rootdir)
77
78 root_from_cwd = os.path.normcase(os.path.normpath(os.getcwd()))
79 if os.path.basename(root_from_cwd) == 'src':
80     root_from_cwd = os.path.dirname(root_from_cwd)
81
82 same = (root_from_cwd == rootdir)
83 if not same:
84     try:
85         same = os.path.samefile(root_from_cwd, rootdir)
86     except AttributeError, e:
87         e  # hush pyflakes
88
89 if not same:
90     msg = ("We seem to be testing the code at %r\n"
91            "(according to the source filename %r),\n"
92            "but expected to be testing the code at %r.\n"
93            % (rootdir, srcfile, root_from_cwd))
94
95     root_from_cwdu = os.path.normcase(os.path.normpath(os.getcwdu()))
96     if os.path.basename(root_from_cwdu) == u'src':
97         root_from_cwdu = os.path.dirname(root_from_cwdu)
98
99     if not isinstance(root_from_cwd, unicode) and root_from_cwd.decode(sys.getfilesystemencoding(), 'replace') != root_from_cwdu:
100         msg += ("However, this may be a false alarm because the current directory path\n"
101                 "is not representable in the filesystem encoding. This script needs to be\n"
102                 "run from the source directory to be tested, at a non-Unicode path.")
103     else:
104         msg += "This script needs to be run from the source directory to be tested."
105
106     raise AssertionError(msg)
107
108 from twisted.scripts.trial import run
109 run()