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

Unified Diff: tools/grit/grit/format/policy_templates/writers/writer_unittest_common.py

Issue 6134006: Integrate user strings into the JSON policy template file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 11 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/grit/grit/format/policy_templates/writers/writer_unittest_common.py
diff --git a/tools/grit/grit/format/policy_templates/writers/writer_unittest_common.py b/tools/grit/grit/format/policy_templates/writers/writer_unittest_common.py
index 0970772e8b5a4bf54f923f8a0718649299cfa215..9a10d1278b18c827524d2928894a48d52434ba04 100644
--- a/tools/grit/grit/format/policy_templates/writers/writer_unittest_common.py
+++ b/tools/grit/grit/format/policy_templates/writers/writer_unittest_common.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2010 The Chromium Authors. All rights reserved.
+# Copyright (c) 2011 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.
@@ -35,12 +35,11 @@ class DummyOutput(object):
class WriterUnittestCommon(unittest.TestCase):
'''Common class for unittesting writers.'''
- def PrepareTest(self, policy_json, grd_messages_text):
+ def PrepareTest(self, policy_json):
'''Prepares and parses a grit tree along with a data structure of policies.
Args:
policy_json: The policy data structure in JSON format.
- grd_messages_text: The messages node of the grit tree in text form.
'''
# First create a temporary file that contains the JSON policy list.
tmp_file_name = 'test.json'
@@ -50,16 +49,14 @@ class WriterUnittestCommon(unittest.TestCase):
f.write(policy_json.strip())
f.close()
# Then assemble the grit tree.
- grd_begin_text = '''
+ grd_text = '''
<grit base_dir="." latest_public_release="0" current_release="1" source_lang_id="en">
<release seq="1">
<structures>
<structure name="IDD_POLICY_SOURCE_FILE" file="%s" type="policy_template_metafile" />
- </structures>''' % json_file_path
- grd_end_text = '''
+ </structures>
</release>
- </grit>'''
- grd_text = grd_begin_text + grd_messages_text + grd_end_text
+ </grit>''' % json_file_path
grd_string_io = StringIO.StringIO(grd_text)
# Parse the grit tree and load the policies' JSON with a gatherer.
grd = grd_reader.Parse(grd_string_io, dir=tmp_dir_name)
« no previous file with comments | « tools/grit/grit/format/policy_templates/writers/template_writer_unittest.py ('k') | tools/grit/grit/gather/muppet_strings.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698