diff options
author | 2018-10-22 11:16:25 -0700 | |
---|---|---|
committer | 2018-10-24 10:32:10 -0700 | |
commit | ce7818ed6e03a45edecba0850c44915d60aa890e (patch) | |
tree | 80c2bec6a6416879b5a09ff60f1191b36d23a585 /scripts/manifest_fixer_test.py | |
parent | f2ea4dddebdea979e2f901a5ae8134ac9072705d (diff) |
Add --prefer-integrity option to manifest_fixer.py
If provided (--prefer-integrity=true/false), the script will set the
value in the the manifest. The script will fail if the value mismatches
the original in the manifest, if any.
Test: scripts/manifest_fixer_test.py
Test: aapt dumps the attribute and observe
Bug: 112037137
Change-Id: I2b333a7c0747dbcbed4d419f1c9ed46d4a4c98e9
Diffstat (limited to 'scripts/manifest_fixer_test.py')
-rwxr-xr-x | scripts/manifest_fixer_test.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/manifest_fixer_test.py b/scripts/manifest_fixer_test.py index d1d401a77..a621445b8 100755 --- a/scripts/manifest_fixer_test.py +++ b/scripts/manifest_fixer_test.py @@ -346,5 +346,40 @@ class AddUsesNonSdkApiTest(unittest.TestCase): self.assertEqual(output, expected) +class PreferIntegrityTest(unittest.TestCase): + """Unit tests for add_prefer_integrity function.""" + + def run_test(self, input_manifest): + doc = minidom.parseString(input_manifest) + manifest_fixer.add_prefer_integrity(doc) + output = StringIO.StringIO() + manifest_fixer.write_xml(output, doc) + return output.getvalue() + + manifest_tmpl = ( + '<?xml version="1.0" encoding="utf-8"?>\n' + '<manifest xmlns:android="http://schemas.android.com/apk/res/android">\n' + ' <application%s/>\n' + '</manifest>\n') + + def prefer_integrity(self, value): + return ' android:preferIntegrity="%s"' % value + + def test_manifest_with_undeclared_preference(self): + manifest_input = self.manifest_tmpl % '' + expected = self.manifest_tmpl % self.prefer_integrity('true') + output = self.run_test(manifest_input) + self.assertEqual(output, expected) + + def test_manifest_with_prefer_integrity(self): + manifest_input = self.manifest_tmpl % self.prefer_integrity('true') + expected = manifest_input + output = self.run_test(manifest_input) + self.assertEqual(output, expected) + + def test_manifest_with_not_prefer_integrity(self): + manifest_input = self.manifest_tmpl % self.prefer_integrity('false') + self.assertRaises(RuntimeError, self.run_test, manifest_input) + if __name__ == '__main__': unittest.main() |