1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
#!/usr/bin/python2.6.2
# Copyright 2009, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""Utility functions for running the lab tests.
"""
import logging
import os
import subprocess
import shutil
import sys
import runner_constants as const
import util
CHANGE_RESOLUTION_PATH = (const.O3D_PATH + '/o3d/tests/lab'
'/ChangeResolution/Debug/changeresolution.exe')
def EnsureWindowsScreenResolution(width, height, bpp):
"""Performs all steps needed to configure system for testing on Windows.
Args:
width: new screen resolution width
height: new screen resolution height
bpp: new screen resolution bytes per pixel
Returns:
True on success.
"""
command = 'call "%s" %d %d %d' % (CHANGE_RESOLUTION_PATH, width, height, bpp)
our_process = subprocess.Popen(command,
shell=True,
stdout=None,
stderr=None,
universal_newlines=True)
our_process.wait()
return our_process.returncode == 0
def AddPythonPath(path):
"""Add path to PYTHONPATH in environment."""
try:
os.environ['PYTHONPATH'] = path + os.pathsep + os.environ['PYTHONPATH']
except KeyError:
os.environ['PYTHONPATH'] = path
# Need to put at front of sys.path so python will try to import modules from
# path before locations further down the sys.path.
sys.path = [path] + sys.path
def InstallO3DPlugin():
"""Installs O3D plugin."""
logging.info('Installing plugin...')
if util.IsWindows():
installer_path = os.path.join(const.PRODUCT_DIR_PATH, 'o3d.msi')
if not os.path.exists(installer_path):
logging.error('Installer path not found, %s' % installer_path)
return False
install_command = 'msiexec.exe /i "%s"' % installer_path
if util.RunStr(install_command) != 0:
return False
elif util.IsMac():
dmg_path = os.path.join(const.PRODUCT_DIR_PATH, 'o3d.dmg')
mnt = util.MountDiskImage(dmg_path)
if mnt is None:
return False
(device, volumes_path) = mnt
installer_path = os.path.join(volumes_path, 'O3D.mpkg')
if not os.path.exists(installer_path):
logging.error('Installer path not found, %s' % installer_path)
util.UnmountDiskImage(device)
return False
admin_password = 'g00gl3'
install_command = ('echo %s | sudo -S /usr/sbin/installer -pkg '
'"%s" -target /' % (admin_password, installer_path))
ret_code = util.RunStr(install_command)
util.UnmountDiskImage(device)
if ret_code != 0:
return False
else:
plugin_path = os.path.join(const.PRODUCT_DIR_PATH, 'libnpo3dautoplugin.so')
plugin_dst_dir = os.path.expanduser('~/.mozilla/plugins')
try:
os.makedirs(plugin_dst_dir)
except os.error:
pass
plugin_dst = os.path.join(plugin_dst_dir, 'libnpo3dautoplugin.so')
shutil.copyfile(plugin_path, plugin_dst)
return True
return True
def UninstallO3DPlugin():
"""Uninstalls O3D.
Returns:
True, if O3D is no longer installed."""
if util.IsWindows():
installer_path = os.path.join(const.PRODUCT_DIR_PATH, 'o3d.msi')
os.system('msiexec.exe /x "%s" /q' % installer_path)
# Forcibly remove plugins.
for path in const.INSTALL_PATHS:
if os.path.exists(path):
if util.IsWindows():
os.remove(path)
else:
os.system('echo g00gl3 | sudo -S rm -rf "%s"' % path)
return not DoesAnO3DPluginExist()
def DoesAnO3DPluginExist():
for path in const.INSTALL_PATHS:
if os.path.exists(path):
return True
return False
|