about summary refs log tree commit diff
path: root/universe/ac_types/string.py
blob: 9ef6c3ab52a6c3cad9f451db7590e408c4549138 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from test_utils import simple_assert


def with_banner(x):
    header = '#################################################################'
    text = '# {}'.format(x)
    footer = '#################################################################'
    return '\n'.join([header, text, footer])


def starts_with(prefix, x):
    """Return True if `x` starts with `prefix`."""
    return x.startswith(prefix)


def ends_with(prefix, x):
    """Return True if `x` starts with `prefix`."""
    return x.endswith(prefix)


def trim_prefix(prefix, x):
    """Remove `prefix` from `x` if present."""
    if x.startswith(prefix):
        return x[len(prefix):]
    else:
        return x


actual = [trim_prefix('"', '"leading"'), trim_prefix('"', 'non-leading')]
expected = ['leading"', 'non-leading']
simple_assert(actual, expected, name="trim_prefix")


def trim_suffix(suffix, x):
    """Remove `suffix` from `x` if present."""
    if x.endswith(suffix):
        amt = len(x) - len(suffix)
        return x[0:amt]
    else:
        return x


actual = [
    trim_suffix('ing"', '"trailing"'),
    trim_suffix('ing"', 'non-trailing')
]
expected = ['"trail', 'non-trailing']
simple_assert(actual, expected, name="trim_suffix")


def trim_surrounding(b, x):
    """Remove `b` from `x` if present as prefix and suffix."""
    if x.startswith(b) and x.endswith(b):
        x = trim_prefix(b, x)
        x = trim_suffix(b, x)
        return x
    else:
        return x


actual = [
    trim_surrounding('"', '"surrounded"'),
    trim_surrounding('"', 'non-surrounded'),
    trim_surrounding('"', '"just-prefixed'),
    trim_surrounding('"', 'just-suffixed"'),
]
expected = ['surrounded', 'non-surrounded', '"just-prefixed', 'just-suffixed"']
simple_assert(actual, expected, name="trim_surrounding")


def indent(x, spaces=2):
    """Indent string `x` number of `spaces`, defaulting to two."""
    return '\n'.join([' ' * spaces + line for line in x.split('\n')])


actual = indent("""testing
this function
out""")
expected = """  testing
  this function
  out"""
simple_assert(actual, expected, name="indent")

actual = indent("""testing
this function
out""", spaces=4)
expected = """    testing
    this function
    out"""
simple_assert(actual, expected, name="indent")