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

Unified Diff: chrome/test/mini_installer/verifier.py

Issue 22480002: Use unittest framework in the Automated Installer Testing Framework. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address comments of mathpq Created 7 years, 4 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: chrome/test/mini_installer/verifier.py
diff --git a/chrome/test/mini_installer/verifier.py b/chrome/test/mini_installer/verifier.py
index 7b0fae6c46e0dc6dc16d204d4902e3edaa1cf2bd..8a735ba19c3f3eca0e95cebf9f3ace26198268f1 100644
--- a/chrome/test/mini_installer/verifier.py
+++ b/chrome/test/mini_installer/verifier.py
@@ -4,12 +4,20 @@
import registry_verifier
+
def Verify(property):
- """Verifies that the current machine states match the property object."""
+ """Verifies that the current machine states match the property dictionary.
+
+ A property dictionary is a dictionary where each key is a verifier's name and
+ the associated value is the input to that verifier. For details about the
+ input format for each verifier, take a look at http://goo.gl/1P85WL
+
+ Args:
+ property: A property dictionary.
+ """
for verifier_name, value in property.iteritems():
if verifier_name == 'RegistryEntries':
registry_verifier.VerifyRegistryEntries(value)
else:
# TODO(sukolsak): Implement other verifiers
- # TODO(sukolsak): Use unittest framework instead of exceptions.
- raise Exception('Unknown verifier')
+ raise KeyError('Unknown verifier %s' % verifier_name)

Powered by Google App Engine
This is Rietveld 408576698