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

Unified Diff: tools/grit/grit/format/policy_templates/policy_template_generator_unittest.py

Issue 4164006: Generate example JSON policy configuration files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 10 years, 1 month 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/grit/grit/format/policy_templates/policy_template_generator_unittest.py
diff --git a/tools/grit/grit/format/policy_templates/policy_template_generator_unittest.py b/tools/grit/grit/format/policy_templates/policy_template_generator_unittest.py
index 83738ada2937d9cd8bf287caa0eb7861c86a0365..7401a6d8886ea4571c0338834b78e02df6ddcebc 100644
--- a/tools/grit/grit/format/policy_templates/policy_template_generator_unittest.py
+++ b/tools/grit/grit/format/policy_templates/policy_template_generator_unittest.py
@@ -266,38 +266,44 @@ class PolicyTemplateGeneratorUnittest(unittest.TestCase):
'annotations': {'platforms': ['eee']}
},
]
+ },{
+ 'name': 'SinglePolicy',
+ 'type': 'int',
+ 'annotations': {'platforms': ['eee']}
}]
+ # This writer accumulates the list of policies it is asked to write.
+ # This list is stored in the result_list member variable and can
+ # be used later for assertions.
class LocalMockWriter(mock_writer.MockWriter):
- def __init__(self, platforms, expected_list):
+ def __init__(self, platforms):
self.platforms = platforms
- self.expected_list = expected_list
self.policy_name = None
self.result_list = []
def BeginPolicyGroup(self, group):
self.group = group;
self.result_list.append('begin_' + group['name'])
def EndPolicyGroup(self):
+ self.result_list.append('end_group')
self.group = None
def WritePolicy(self, policy):
- self.tester.assertEquals(policy['name'][0:6], self.group['name'])
self.result_list.append(policy['name'])
def IsPolicySupported(self, policy):
# Call the original (non-mock) implementation of this method.
return template_writer.TemplateWriter.IsPolicySupported(self, policy)
- def Test(self):
- self.tester.assertEquals(
- self.result_list,
- self.expected_list)
- self.do_test(
- MessagesMock(),
- policy_defs_mock,
- LocalMockWriter(['eee'], ['begin_Group2', 'Group2Policy3']))
- self.do_test(
- MessagesMock(),
- policy_defs_mock,
- LocalMockWriter(
- ['ddd', 'bbb'],
- ['begin_Group1', 'Group1Policy1', 'Group1Policy2']))
+
+ local_mock_writer = LocalMockWriter(['eee'])
+ self.do_test(MessagesMock(), policy_defs_mock, local_mock_writer)
+ # Test that only policies of platform 'eee' were written:
+ self.assertEquals(
+ local_mock_writer.result_list,
+ ['begin_Group2', 'Group2Policy3', 'end_group', 'SinglePolicy'])
+
+ local_mock_writer = LocalMockWriter(['ddd', 'bbb'])
+ self.do_test(MessagesMock(), policy_defs_mock, local_mock_writer)
+ # Test that only policies of platforms 'ddd' and 'bbb' were written:
+ self.assertEquals(
+ local_mock_writer.result_list,
+ ['begin_Group1', 'Group1Policy1', 'Group1Policy2', 'end_group'])
def testSorting(self):
# Tests that policies are sorted correctly.
« no previous file with comments | « chrome/app/policy/policy_templates.grd ('k') | tools/grit/grit/format/policy_templates/writers/json_writer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698