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

Unified Diff: tools/telemetry/telemetry/core/chrome/desktop_browser_finder_unittest.py

Issue 12294002: Revert 182991 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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
Index: tools/telemetry/telemetry/core/chrome/desktop_browser_finder_unittest.py
===================================================================
--- tools/telemetry/telemetry/core/chrome/desktop_browser_finder_unittest.py (revision 182999)
+++ tools/telemetry/telemetry/core/chrome/desktop_browser_finder_unittest.py (working copy)
@@ -1,188 +0,0 @@
-# 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.
-import unittest
-
-from telemetry.core import browser_options
-from telemetry.core.chrome import desktop_browser_finder
-from telemetry.test import system_stub
-
-# This file verifies the logic for finding a browser instance on all platforms
-# at once. It does so by providing stubs for the OS/sys/subprocess primitives
-# that the underlying finding logic usually uses to locate a suitable browser.
-# We prefer this approach to having to run the same test on every platform on
-# which we want this code to work.
-
-class FindTestBase(unittest.TestCase):
- def setUp(self):
- self._options = browser_options.BrowserOptions()
- self._options.chrome_root = '../../../'
- self._stubs = system_stub.Override(desktop_browser_finder,
- ['os', 'subprocess', 'sys'])
-
- def tearDown(self):
- self._stubs.Restore()
-
- @property
- def _files(self):
- return self._stubs.os.path.files
-
- def DoFindAll(self):
- return desktop_browser_finder.FindAllAvailableBrowsers(self._options)
-
- def DoFindAllTypes(self):
- browsers = self.DoFindAll()
- return [b.browser_type for b in browsers]
-
-def has_type(array, browser_type):
- return len([x for x in array if x.browser_type == browser_type]) != 0
-
-class FindSystemTest(FindTestBase):
- def setUp(self):
- super(FindSystemTest, self).setUp()
- self._stubs.sys.platform = 'win32'
-
- def testFindProgramFiles(self):
- self._files.append(
- 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe')
- self._stubs.os.program_files = 'C:\\Program Files'
- self.assertTrue('system' in self.DoFindAllTypes())
-
- def testFindProgramFilesX86(self):
- self._files.append(
- 'C:\\Program Files(x86)\\Google\\Chrome\\Application\\chrome.exe')
- self._stubs.os.program_files_x86 = 'C:\\Program Files(x86)'
- self.assertTrue('system' in self.DoFindAllTypes())
-
- def testFindLocalAppData(self):
- self._files.append(
- 'C:\\Local App Data\\Google\\Chrome\\Application\\chrome.exe')
- self._stubs.os.local_app_data = 'C:\\Local App Data'
- self.assertTrue('system' in self.DoFindAllTypes())
-
-class FindLocalBuildsTest(FindTestBase):
- def setUp(self):
- super(FindLocalBuildsTest, self).setUp()
- self._stubs.sys.platform = 'win32'
-
- def testFindBuild(self):
- self._files.append('..\\..\\..\\build\\Release\\chrome.exe')
- self.assertTrue('release' in self.DoFindAllTypes())
-
- def testFindOut(self):
- self._files.append('..\\..\\..\\out\\Release\\chrome.exe')
- self.assertTrue('release' in self.DoFindAllTypes())
-
- def testFindSconsbuild(self):
- self._files.append('..\\..\\..\\sconsbuild\\Release\\chrome.exe')
- self.assertTrue('release' in self.DoFindAllTypes())
-
- def testFindXcodebuild(self):
- self._files.append('..\\..\\..\\xcodebuild\\Release\\chrome.exe')
- self.assertTrue('release' in self.DoFindAllTypes())
-
-class OSXFindTest(FindTestBase):
- def setUp(self):
- super(OSXFindTest, self).setUp()
- self._stubs.sys.platform = 'darwin'
- self._files.append('/Applications/Google Chrome Canary.app/'
- 'Contents/MacOS/Google Chrome Canary')
- self._files.append('/Applications/Google Chrome.app/' +
- 'Contents/MacOS/Google Chrome')
- self._files.append(
- '../../../out/Release/Chromium.app/Contents/MacOS/Chromium')
- self._files.append(
- '../../../out/Debug/Chromium.app/Contents/MacOS/Chromium')
- self._files.append(
- '../../../out/Release/Content Shell.app/Contents/MacOS/Content Shell')
- self._files.append(
- '../../../out/Debug/Content Shell.app/Contents/MacOS/Content Shell')
-
- def testFindAll(self):
- types = self.DoFindAllTypes()
- self.assertEquals(
- set(types),
- set(['debug', 'release',
- 'content-shell-debug', 'content-shell-release',
- 'canary', 'system']))
-
-
-class LinuxFindTest(FindTestBase):
- def setUp(self):
- super(LinuxFindTest, self).setUp()
-
- self._stubs.sys.platform = 'linux2'
- self._files.append('/foo/chrome')
- self._files.append('../../../out/Release/chrome')
- self._files.append('../../../out/Debug/chrome')
- self._files.append('../../../out/Release/content_shell')
- self._files.append('../../../out/Debug/content_shell')
-
- self.has_google_chrome_on_path = False
- this = self
- def call_hook(*args, **kwargs): # pylint: disable=W0613
- if this.has_google_chrome_on_path:
- return 0
- raise OSError('Not found')
- self._stubs.subprocess.call = call_hook
-
- def testFindAllWithExact(self):
- types = self.DoFindAllTypes()
- self.assertEquals(
- set(types),
- set(['debug', 'release',
- 'content-shell-debug', 'content-shell-release']))
-
- def testFindWithProvidedExecutable(self):
- self._options.browser_executable = '/foo/chrome'
- self.assertTrue('exact' in self.DoFindAllTypes())
-
- def testFindUsingDefaults(self):
- self.has_google_chrome_on_path = True
- self.assertTrue('release' in self.DoFindAllTypes())
-
- del self._files[1]
- self.has_google_chrome_on_path = True
- self.assertTrue('system' in self.DoFindAllTypes())
-
- self.has_google_chrome_on_path = False
- del self._files[1]
- self.assertEquals(['content-shell-debug', 'content-shell-release'],
- self.DoFindAllTypes())
-
- def testFindUsingRelease(self):
- self.assertTrue('release' in self.DoFindAllTypes())
-
-
-class WinFindTest(FindTestBase):
- def setUp(self):
- super(WinFindTest, self).setUp()
-
- self._stubs.sys.platform = 'win32'
- self._stubs.os.local_app_data = 'c:\\Users\\Someone\\AppData\\Local'
- self._files.append('c:\\tmp\\chrome.exe')
- self._files.append('..\\..\\..\\build\\Release\\chrome.exe')
- self._files.append('..\\..\\..\\build\\Debug\\chrome.exe')
- self._files.append('..\\..\\..\\build\\Release\\content_shell.exe')
- self._files.append('..\\..\\..\\build\\Debug\\content_shell.exe')
- self._files.append(self._stubs.os.local_app_data + '\\' +
- 'Google\\Chrome\\Application\\chrome.exe')
- self._files.append(self._stubs.os.local_app_data + '\\' +
- 'Google\\Chrome SxS\\Application\\chrome.exe')
-
- def testFindAllGivenDefaults(self):
- types = self.DoFindAllTypes()
- self.assertEquals(set(types),
- set(['debug', 'release',
- 'content-shell-debug', 'content-shell-release',
- 'system', 'canary']))
-
- def testFindAllWithExact(self):
- self._options.browser_executable = 'c:\\tmp\\chrome.exe'
- types = self.DoFindAllTypes()
- self.assertEquals(
- set(types),
- set(['exact',
- 'debug', 'release',
- 'content-shell-debug', 'content-shell-release',
- 'system', 'canary']))

Powered by Google App Engine
This is Rietveld 408576698