Files
pywal/tests/test_sequences.py
Matthew Leonberger c03b337d08 Fixed Issue #100
Pywal was using sequences that iterm2 recommends against.  See https://iterm2.com/documentation-escape-codes.html
2017-09-28 07:41:42 +09:00

52 lines
1.6 KiB
Python
Executable File

"""Test sequence functions."""
import unittest
import platform
from pywal import sequences
from pywal import util
# Import colors.
COLORS = util.read_file_json("tests/test_files/test_file.json")
class Testsequences(unittest.TestCase):
"""Test the sequence functions."""
def test_set_special(self):
"""> Create special escape sequence."""
util.Color.alpha_num = 100
result = sequences.set_special(11, COLORS["special"]["background"])
if platform.uname()[0] == "Darwin":
self.assertEqual(result, "\033]1337;SetColors=bg=1F211E\a")
else:
self.assertEqual(result, "\033]11;#1F211E\007")
def test_set_special_alpha(self):
"""> Create special escape sequence with alpha."""
util.Color.alpha_num = 99
result = sequences.set_special(11, COLORS["special"]["background"])
if platform.uname()[0] == "Darwin":
self.assertEqual(result, "\033]1337;SetColors=bg=1F211E\a")
else:
self.assertEqual(result, "\033]11;[99]#1F211E\007")
def test_set_color(self):
"""> Create color escape sequence."""
result = sequences.set_color(11, COLORS["colors"]["color0"])
if platform.uname()[0] == "Darwin":
self.assertEqual(result, "\033]Pb1F211E\033\\")
else:
self.assertEqual(result, "\033]4;11;#1F211E\007")
def test_set_iterm_tab_color(self):
"""> Create iterm tab color sequences"""
result = sequences.set_iterm_tab_color(COLORS["special"]["background"])
self.assertEqual(result, "\033]1337;SetColors=tab=1F211E\a")
if __name__ == "__main__":
unittest.main()