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

Unified Diff: chrome/test/functional/ispy/ispy_api_unittest.py

Issue 222873002: Remove pyauto tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 6 years, 9 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 | « chrome/test/functional/ispy/ispy_api.py ('k') | chrome/test/functional/ispy/server/app.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/ispy/ispy_api_unittest.py
===================================================================
--- chrome/test/functional/ispy/ispy_api_unittest.py (revision 261231)
+++ chrome/test/functional/ispy/ispy_api_unittest.py (working copy)
@@ -1,68 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright 2014 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 json
-import unittest
-from PIL import Image
-
-import ispy_api
-from common import cloud_bucket
-from common import mock_cloud_bucket
-
-
-class ISpyApiTest(unittest.TestCase):
- """Unittest for the ISpy API."""
-
- def setUp(self):
- self.cloud_bucket = mock_cloud_bucket.MockCloudBucket()
- self.ispy = ispy_api.ISpyApi(self.cloud_bucket)
- self.white_img = Image.new('RGBA', (10, 10), (255, 255, 255, 255))
- self.black_img = Image.new('RGBA', (10, 10), (0, 0, 0, 255))
-
- def testGenerateExpectationsRunComparison(self):
- self.ispy.GenerateExpectation(
- 'device', 'test', '1.1.1.1', 'versions.json',
- [self.white_img, self.white_img])
- self.ispy.UpdateExpectationVersion('1.1.1.1', 'versions.json')
- self.ispy.PerformComparison(
- 'test1', 'device', 'test', '1.1.1.1', 'versions.json', self.white_img)
- expect_name = self.ispy._CreateExpectationName(
- 'device', 'test', '1.1.1.1')
- self.assertFalse(self.ispy._ispy.FailureExists('test1', expect_name))
- self.ispy.PerformComparison(
- 'test2', 'device', 'test', '1.1.1.1','versions.json', self.black_img)
- self.assertTrue(self.ispy._ispy.FailureExists('test2', expect_name))
-
- def testUpdateExpectationVersion(self):
- self.ispy.UpdateExpectationVersion('1.0.0.0', 'versions.json')
- self.ispy.UpdateExpectationVersion('1.0.4.0', 'versions.json')
- self.ispy.UpdateExpectationVersion('2.1.5.0', 'versions.json')
- self.ispy.UpdateExpectationVersion('1.1.5.0', 'versions.json')
- self.ispy.UpdateExpectationVersion('0.0.0.0', 'versions.json')
- self.ispy.UpdateExpectationVersion('1.1.5.0', 'versions.json')
- self.ispy.UpdateExpectationVersion('0.0.0.1', 'versions.json')
- versions = json.loads(self.cloud_bucket.DownloadFile('versions.json'))
- self.assertEqual(versions,
- ['2.1.5.0', '1.1.5.0', '1.0.4.0', '1.0.0.0', '0.0.0.1', '0.0.0.0'])
-
- def testPerformComparisonAndPrepareExpectation(self):
- self.assertFalse(self.ispy.CanRebaselineToTestRun('test'))
- self.assertRaises(
- cloud_bucket.FileNotFoundError,
- self.ispy.PerformComparisonAndPrepareExpectation,
- 'test', 'device', 'expect', '1.0', 'versions.json',
- [self.white_img, self.white_img])
- self.assertTrue(self.ispy.CanRebaselineToTestRun('test'))
- self.ispy.RebaselineToTestRun('test')
- versions = json.loads(self.cloud_bucket.DownloadFile('versions.json'))
- self.assertEqual(versions, ['1.0'])
- self.ispy.PerformComparisonAndPrepareExpectation(
- 'test1', 'device', 'expect', '1.1', 'versions.json',
- [self.white_img, self.white_img])
-
-
-if __name__ == '__main__':
- unittest.main()
« no previous file with comments | « chrome/test/functional/ispy/ispy_api.py ('k') | chrome/test/functional/ispy/server/app.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698