Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(810)

Unified Diff: install_test/chrome_installer_win.py

Issue 10384104: Chrome updater test framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/test/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | install_test/install_test.py » ('j') | install_test/install_test.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: install_test/chrome_installer_win.py
===================================================================
--- install_test/chrome_installer_win.py (revision 0)
+++ install_test/chrome_installer_win.py (revision 0)
@@ -0,0 +1,275 @@
+#!/usr/bin/python
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Provides an interface for installing Chrome.
+
+At present the only platform it supports is Windows.
+"""
+
+import _winreg
+import ctypes
+from ctypes import wintypes, windll
+import httplib
+import logging
+import os
+import shutil
+import socket
+import subprocess
+import tempfile
+import urllib
+
+
+class InstallationType(object):
+ """Defines the Chrome installation types."""
+ SYSTEM = 1
+ USER = 2
+
+
+def Install(installer_path, install_type, build, options):
kkania 2012/10/02 17:05:16 change build->version or build_no
nkang 2012/10/03 22:12:01 Changed build to version.
+ """Installs the specified Chrome build.
+
+ Args:
+ installer_path: Path to the Chrome installer.
+ install_type: Type of installation (i.e., system or user).
+ build: Chrome build number.
+ options: Additional installation options.
+
+ Returns:
+ An instance of ChromeInstallation.
+ """
+ current = ChromeInstallation.GetCurrent()
+ if current:
+ # Make sure new build can be installed over existing Chrome build.
+ if (current.GetType() == InstallationType.SYSTEM and
+ install_type == InstallationType.USER):
+ raise RuntimeError('System level Chrome exists, aborting user level '
+ 'installation.')
+ # Confirm the new Chrome build is higher than the installed build.
+ if current.GetVersion() >= build:
kkania 2012/10/02 17:05:16 You can't do a straight string comparison of versi
nkang 2012/10/03 22:12:01 Wrote a new method that separates each identifier
+ raise RuntimeError('Specify a version higher than the one already '
kkania 2012/10/02 17:05:16 it is nice to explain to the user what to do with
nkang 2012/10/03 22:12:01 Changed the error message.
+ 'installed.')
+ options.append('--install')
+ options.append('--do-not-launch-chrome')
+ logging.info('Installing Chrome build %s...' % build)
+ args = [installer_path]
+ args.extend(options)
+ if subprocess.Popen(args).wait() != 0:
+ raise RuntimeError('Chrome installation for build %s failed.' % build)
+ logging.info('Installation complete.')
+ return ChromeInstallation.GetCurrent()
+
+
+class ChromeRegistryValues(object):
+ """Defines the Chrome registry key values."""
+ PRODUCT_VERSION = 'pv'
+ UNINSTALL_STRING = 'UninstallString'
+ UNINSTALL_ARGUMENTS = 'UninstallArguments'
+
+
+class ChromeRegistryKeys(object):
+ """An interface for accessing and manipulating Chrome registry keys."""
+
+ _hkey_local = r'SOFTWARE\Wow6432Node\Google\Update'
kkania 2012/10/02 17:05:16 i know you were trying to follow the hkey style, b
nkang 2012/10/03 22:12:01 That's what I had earlier, but Nirnimesh asked me
+ _hkey_user = _hkey_local.replace(r'\Wow6432Node', '')
+ _chrome_version = r'Clients\{8A69D345-D564-463C-AFF1-A69D9E530F96}'
+ _chrome_args = r'ClientState\{8A69D345-D564-463C-AFF1-A69D9E530F96}'
+
+ def _GetKeyName(self, install_type, value):
+ """Gets the registry key name for the specified value.
+
+ Args:
+ install_type: Type of installation, must be InstallationType type.
+ value: ChromeRegistryValues type for which the key name is required.
+
+ Returns:
+ A string representing the full key name of the specified key value.
+ """
+ key_name = None
+ if install_type == InstallationType.USER:
+ key_name = self._hkey_user
+ elif install_type == InstallationType.SYSTEM:
+ key_name = self._hkey_local
+ if value == ChromeRegistryValues.PRODUCT_VERSION:
+ return '%s\%s' % (key_name, self._chrome_version)
kkania 2012/10/02 17:05:16 use \\ or r'%s\%s'
nkang 2012/10/03 22:12:01 Using 'r' now.
+ elif value == ChromeRegistryValues.UNINSTALL_ARGUMENTS:
+ return '%s\%s' % (key_name, self._chrome_args)
+ elif value == ChromeRegistryValues.UNINSTALL_STRING:
+ return '%s\%s' % (key_name, self._chrome_args)
+ raise RuntimeError('Invalid registry value.')
+
+ def _GetRegistryType(self, install_type):
+ """Determines the registry key to use based on installation type.
+
+ Args:
+ install_type: Type of installation, must be InstallationType type.
+
+ Returns:
+ A long representing HKLM or HKCU, depending on installation type.
+ """
+ if install_type == InstallationType.SYSTEM:
+ return _winreg.HKEY_LOCAL_MACHINE
+ elif install_type == InstallationType.USER:
+ return _winreg.HKEY_CURRENT_USER
+ raise RuntimeError('Invalid installation type.')
+
+ def DoesKeyExist(self, install_type, subkey):
+ """Determines if a particular key exists in the registry.
+
+ Args:
+ install_type: Type of installation, must be InstallationType type.
+ subkey: Subkey to look up. It must be a ChromeRegistryValues type.
+
+ Returns:
+ True if the key exists, otherwise False.
+ """
+ key = self._GetRegistryType(install_type)
+ key_name = self._GetKeyName(install_type, subkey)
+ try:
+ hkey = _winreg.OpenKey(key, key_name)
+ except _winreg.error:
+ return False
+ if not hkey.handle:
+ return False
+ hkey.Close()
+ return True
+
+ def GetKeyValue(self, install_type, subkey):
+ """Gets value of the specified subkey from the registry.
+
+ Args:
+ install_type: Type of installation, must be InstallationType type.
+ subkey: ChromeRegistryValue type representing the value to be returned.
+
+ Returns:
+ A string representing the subkey value.
+ """
+ key = self._GetRegistryType(install_type)
+ key_name = self._GetKeyName(install_type, subkey)
+ hkey = _winreg.OpenKey(key, key_name)
+ reg_value = str(_winreg.QueryValueEx(hkey, subkey)[0])
+ hkey.Close()
+ return reg_value
+
+ def DeleteRegistryEntries(self, install_type):
+ """Deletes chrome registry settings.
+
+ Args:
+ install_type: Type of installation, must be InstallationType type.
+ """
+ reg_type = self._GetRegistryType(install_type)
+ key_name = self._GetKeyName(install_type,
+ ChromeRegistryValues.UNINSTALL_ARGUMENTS)
+ root = key_name[:key_name.rfind('\\')]
+ child = key_name[key_name.rfind('\\') + 1:]
+ key = _winreg.OpenKey(reg_type, root, 0, _winreg.KEY_ALL_ACCESS)
+ _winreg.DeleteKey(key, child)
+ key.Close()
+
+
+class ChromeInstallation(object):
+ """Provides pertinent information about the installed Chrome version.
+
+ The type of Chrome version must be passed as an argument to the constructor,
+ (i.e. - user or system level).
+ """
+
+ _CSIDL_COMMON_APPDATA = 0x1C
+ _CSIDL_PROGRAM_FILESX86 = 0x2A
+
+ def __init__(self, install_type):
+ assert(install_type == InstallationType.SYSTEM or
+ install_type == InstallationType.USER)
+ self._type = install_type
+ self._regedit = ChromeRegistryKeys()
+
+ def GetType(self):
+ """Returns the current installation type."""
+ return self._type
+
+ def GetVersion(self):
+ """Returns the installed version of Chrome."""
+ return self._regedit.GetKeyValue(self._type,
+ ChromeRegistryValues.PRODUCT_VERSION)
+
+ def _GetWinLocalFolder(self, ftype=_CSIDL_COMMON_APPDATA):
+ """Returns full path of the 'Local' folder on Windows.
+
+ Args:
+ ftype: Location to look up, which could vary based on installation type.
+
+ Returns:
+ A String representing the folder path if successful, otherwise an empty
+ string.
+ """
+ SHGetFolderPathW = windll.shell32.SHGetFolderPathW
+ SHGetFolderPathW.argtypes = [wintypes.HWND,
+ ctypes.c_int,
+ wintypes.HANDLE,
+ wintypes.DWORD,
+ wintypes.LPCWSTR]
+ path_buf = wintypes.create_unicode_buffer(wintypes.MAX_PATH)
+ result = SHGetFolderPathW(0, ftype, 0, 0, path_buf)
+ return str(path_buf.value)
+
+ def _GetUninstallString(self):
+ """Returns the Chrome uninstall string from the registry."""
+ return self._regedit.GetKeyValue(self._type,
+ ChromeRegistryValues.UNINSTALL_STRING)
+
+ def _GetUninstallArguments(self):
+ """Returns the Chrome uninstall arguments from the registry."""
+ return self._regedit.GetKeyValue(self._type,
+ ChromeRegistryValues.UNINSTALL_ARGUMENTS)
+
+ def GetExePath(self):
+ """Returns Chrome binary location based on installation type.
+
+ Currently this method only returns the location of the Chrome binary.
+ It does not support Chromium.
+ """
+ if self._type == InstallationType.USER:
+ folder_id = self._CSIDL_COMMON_APPDATA
+ elif self._type == InstallationType.SYSTEM:
+ folder_id = self._CSIDL_PROGRAM_FILESX86
+ chrome_path = os.path.join(self._GetWinLocalFolder(folder_id), 'Google',
+ 'Chrome', 'Application', 'chrome.exe')
+ return (chrome_path if os.path.exists(chrome_path) else '')
+
+ @staticmethod
+ def GetCurrent():
+ """Determines Chrome installation type.
+
+ Returns:
+ ChromeInstallation object if Chrome is present, otherwise None.
+ """
+ registry = ChromeRegistryKeys()
+ if registry.DoesKeyExist(InstallationType.SYSTEM,
+ ChromeRegistryValues.PRODUCT_VERSION):
+ return ChromeInstallation(InstallationType.SYSTEM)
+ elif registry.DoesKeyExist(InstallationType.USER,
+ ChromeRegistryValues.PRODUCT_VERSION):
+ return ChromeInstallation(InstallationType.USER)
+ return None
+
+ def Uninstall(self):
+ """Uninstalls Chrome."""
+ chrome_path = self.GetExePath()
+ reg_opts = self._GetUninstallArguments()
+ uninstall_str = self._GetUninstallString()
+ options = '%s --force-uninstall' % (reg_opts)
+ if self._type == InstallationType.SYSTEM:
+ options += ' --system-level'
+ if not os.path.exists(chrome_path):
+ raise RuntimeError('Could not find chrome, aborting uninstall.')
+ logging.info('Launching Chrome installer...')
+ cmd = '"%s" %s' % (uninstall_str, options)
+ subprocess.call(cmd)
+ if not os.path.exists(chrome_path):
+ logging.info('Chrome was uninstalled successfully...')
+ logging.info('Deleting registry entries...')
+ self._regedit.DeleteRegistryEntries(self._type)
+ logging.info('Uninstall complete.')
+ else:
+ raise RuntimeError('Uninstall failed.')
Property changes on: install_test\chrome_installer_win.py
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « no previous file | install_test/install_test.py » ('j') | install_test/install_test.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698