blob: 75d139e57878007ca8c71e0230436972cc16081b [file] [log] [blame]
# Copyright 2019 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.
from css_generator import CSSStyleGenerator
import unittest
class CSSStyleGeneratorTest(unittest.TestCase):
def setUp(self):
self.generator = CSSStyleGenerator()
def assertEqualToFile(self, value, filename):
with open(filename) as f:
contents = f.read()
self.assertEqual(
value, contents,
'\n>>>>>\n%s<<<<<\n\ndoes not match\n\n>>>>>\n%s<<<<<' %
(value, contents))
def testColorTestJSON(self):
self.generator.AddJSONFileToModel('colors_test.json5')
self.assertEqualToFile(self.generator.Render(),
'colors_test_expected.css')
if __name__ == '__main__':
unittest.main()