3eb77e4d5a
BUG=skia:2230,skia:1942 NOTRY=True R=rmistry@google.com Author: epoger@google.com Review URL: https://codereview.chromium.org/216103004 git-svn-id: http://skia.googlecode.com/svn/trunk@14062 2bbb7eff-a529-9590-31e7-b0007b416f81
59 lines
1.5 KiB
Python
Executable File
59 lines
1.5 KiB
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""
|
|
Copyright 2014 Google Inc.
|
|
|
|
Use of this source code is governed by a BSD-style license that can be
|
|
found in the LICENSE file.
|
|
|
|
Test results.py
|
|
|
|
"""
|
|
|
|
# Imports from within Skia
|
|
import base_unittest
|
|
import results
|
|
|
|
|
|
class ResultsTest(base_unittest.TestCase):
|
|
|
|
def test_combine_subdicts_typical(self):
|
|
"""Test combine_subdicts() with no merge conflicts. """
|
|
input_dict = {
|
|
"failed" : {
|
|
"changed.png" : [ "bitmap-64bitMD5", 8891695120562235492 ],
|
|
},
|
|
"no-comparison" : {
|
|
"unchanged.png" : [ "bitmap-64bitMD5", 11092453015575919668 ],
|
|
}
|
|
}
|
|
expected_output_dict = {
|
|
"changed.png" : [ "bitmap-64bitMD5", 8891695120562235492 ],
|
|
"unchanged.png" : [ "bitmap-64bitMD5", 11092453015575919668 ],
|
|
}
|
|
actual_output_dict = results.BaseComparisons.combine_subdicts(
|
|
input_dict=input_dict)
|
|
self.assertEqual(actual_output_dict, expected_output_dict)
|
|
|
|
def test_combine_subdicts_with_merge_conflict(self):
|
|
"""Test combine_subdicts() with a merge conflict. """
|
|
input_dict = {
|
|
"failed" : {
|
|
"changed.png" : [ "bitmap-64bitMD5", 8891695120562235492 ],
|
|
},
|
|
"no-comparison" : {
|
|
"changed.png" : [ "bitmap-64bitMD5", 11092453015575919668 ],
|
|
}
|
|
}
|
|
with self.assertRaises(Exception):
|
|
actual_output_dict = results.BaseComparisons.combine_subdicts(
|
|
input_dict=input_dict)
|
|
|
|
|
|
def main():
|
|
base_unittest.main(ResultsTest)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|