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

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

Issue 2747023002: Cleanup machine based on the state in configuration file for mini installer test.
Patch Set: refactor to use visitor pattern Created 3 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/mini_installer/verifier.py ('k') | chrome/test/mini_installer/verifier_visitor.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/mini_installer/verifier_runner.py
diff --git a/chrome/test/mini_installer/verifier_runner.py b/chrome/test/mini_installer/verifier_runner.py
deleted file mode 100644
index 41023d1f0a29b0e6ff5e7f6150dd562ca13ad038..0000000000000000000000000000000000000000
--- a/chrome/test/mini_installer/verifier_runner.py
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2013 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 file_verifier
-import process_verifier
-import registry_verifier
-
-
-class VerifierRunner:
- """Runs all Verifiers."""
-
- def __init__(self):
- """Constructor."""
- # TODO(sukolsak): Implement other verifiers
- self._verifiers = {
- 'Files': file_verifier.FileVerifier(),
- 'Processes': process_verifier.ProcessVerifier(),
- 'RegistryEntries': registry_verifier.RegistryVerifier(),
- }
-
- def VerifyAll(self, property, variable_expander):
- """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.
- variable_expander: A VariableExpander object.
- """
- for verifier_name, verifier_input in property.iteritems():
- if verifier_name not in self._verifiers:
- raise KeyError('Unknown verifier %s' % verifier_name)
- self._verifiers[verifier_name].VerifyInput(verifier_input,
- variable_expander)
« no previous file with comments | « chrome/test/mini_installer/verifier.py ('k') | chrome/test/mini_installer/verifier_visitor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698