Source code for jasy.test.style.commands

#!/usr/bin/env python3

import sys
import os
import unittest
import logging
import inspect

# Extend PYTHONPATH with local 'lib' folder
if __name__ == "__main__":
    jasyroot = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, os.pardir, os.pardir, os.pardir))
    sys.path.insert(0, jasyroot)
    print("Running from %s..." % jasyroot)

import jasy.style.Engine as Engine
import jasy.core.Permutation as Permutation



[docs]class Tests(unittest.TestCase):
[docs] def process(self, code): callerName = inspect.stack()[1][3][5:] permutation = Permutation.Permutation({ "jasy.engine" : "gecko", "jasy.debug" : True }) tree = Engine.getTree(code, callerName) tree = Engine.permutateTree(tree, permutation) tree = Engine.reduceTree(tree) return Engine.compressTree(tree)
[docs] def test_simple(self): self.assertEqual(self.process(''' h2{ margin: 20px; } '''), 'h2{margin:20px;}')
[docs] def test_minus(self): self.assertEqual(self.process(''' h2{ margin: -20px; } '''), 'h2{margin:-20px;}')
[docs] def test_multi(self): self.assertEqual(self.process(''' h2{ margin: 10px 20px 30px; } '''), 'h2{margin:10px 20px 30px;}')
[docs] def test_expr_minus(self): self.assertEqual(self.process(''' h2{ margin: @expr(10px - 20px); } '''), 'h2{margin:-10px;}')
[docs] def test_expr_plus(self): self.assertEqual(self.process(''' h2{ margin: @expr(10px + 20px); } '''), 'h2{margin:30px;}')
[docs] def test_unary_minus(self): self.assertEqual(self.process(''' h2{ margin: 10px -20px; } '''), 'h2{margin:10px -20px;}')
[docs] def test_unary_plus(self): self.assertEqual(self.process(''' h2{ margin: 10px +20px; } '''), 'h2{margin:10px +20px;}')
[docs] def test_expr_minus_compact(self): self.assertEqual(self.process(''' h2{ margin: @expr(10px-20px); } '''), 'h2{margin:-10px;}')
[docs] def test_expr_plus_compact(self): self.assertEqual(self.process(''' h2{ margin: @expr(10px+20px); } '''), 'h2{margin:30px;}')
[docs] def test_noexpr_minus_compact(self): self.assertEqual(self.process(''' h2{ margin: 10px-20px; } '''), 'h2{margin:10px -20px;}')
[docs] def test_noexpr_plus_compact(self): self.assertEqual(self.process(''' h2{ margin: 10px+20px; } '''), 'h2{margin:10px +20px;}')
[docs] def test_raw(self): self.assertEqual(self.process(''' .rotate{ filter: @raw("progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"); } '''), '.rotate{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}')
if __name__ == '__main__': logging.getLogger().setLevel(logging.ERROR) suite = unittest.TestLoader().loadTestsFromTestCase(Tests) unittest.TextTestRunner(verbosity=2).run(suite)