forked from HinTak/skia-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_string.py
242 lines (148 loc) · 4.08 KB
/
test_string.py
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
import skia
import pytest
@pytest.fixture
def string():
return skia.String('foo')
def test_String_str(string):
assert isinstance(str(string), str)
def test_String_repr(string):
assert isinstance(repr(string), str)
@pytest.mark.parametrize('args', [
tuple(),
(4,),
('foo',),
('foo', 3),
(skia.String('foo'),),
])
def test_String_init(args):
assert isinstance(skia.String(*args), skia.String)
def test_String_isEmpty(string):
assert not string.isEmpty()
def test_String_size(string):
assert string.size() == 3
def test_String_c_str(string):
assert string.c_str() == 'foo'
def test_String_getitem(string):
assert string[0] == 'f'
def test_String_setitem():
string = skia.String(1)
string[0] = 'f'
assert string.c_str() == 'f'
def test_String_len(string):
assert len(string) == 3
def test_String_iter(string):
assert isinstance(list(string), list)
@pytest.mark.parametrize('args', [
(skia.String('foo'),),
('foo',),
('foo', 3),
])
def test_String_equals(string, args):
assert isinstance(string.equals(*args), bool)
def test_String___eq__(string):
assert string == string
@pytest.mark.parametrize('args', [
('foo',),
('f',),
])
def test_String_startsWith(string, args):
assert isinstance(string.startsWith(*args), bool)
@pytest.mark.parametrize('args', [
('foo',),
('f',),
])
def test_String_endsWith(string, args):
assert isinstance(string.endsWith(*args), bool)
@pytest.mark.parametrize('args', [
('foo',),
('f',),
])
def test_String_contains(string, args):
assert isinstance(string.contains(*args), bool)
def test_String___contains__(string):
assert 'foo' in string
def test_String_find(string):
assert isinstance(string.find('oo'), int)
def test_String_findLastOf(string):
assert isinstance(string.findLastOf('o'), int)
def test_String_reset(string):
string.reset()
def test_String_resize(string):
string.resize(3)
@pytest.mark.parametrize('args', [
(skia.String('foo'),),
('foo',),
('foo', 3),
])
def test_String_set(string, args):
string.set(*args)
@pytest.mark.parametrize('args', [
(0, skia.String('foo'),),
(0, 'foo',),
(0, 'foo', 3),
])
def test_String_insert(string, args):
string.insert(*args)
def test_String_insertUnichar(string):
string.insertUnichar(0, ord('x'))
def test_String_insertS32(string):
string.insertS32(0, 0)
def test_String_insertS64(string):
string.insertS64(0, 0)
def test_String_insertU32(string):
string.insertU32(0, 0)
def test_String_insertU64(string):
string.insertU64(0, 0)
def test_String_insertHex(string):
string.insertHex(0, 0)
def test_String_insertScalar(string):
string.insertScalar(0, 0.0)
@pytest.mark.parametrize('args', [
(skia.String('foo'),),
('foo',),
('foo', 3),
])
def test_String_append(string, args):
string.append(*args)
def test_String_appendUnichar(string):
string.appendUnichar(ord('x'))
def test_String_appendS32(string):
string.appendS32(0)
def test_String_appendS64(string):
string.appendS64(0)
def test_String_appendU32(string):
string.appendU32(0)
def test_String_appendU64(string):
string.appendU64(0)
def test_String_appendHex(string):
string.appendHex(0)
def test_String_appendScalar(string):
string.appendScalar(0.0)
@pytest.mark.parametrize('args', [
(skia.String('foo'),),
('foo',),
('foo', 3),
])
def test_String_prepend(string, args):
string.prepend(*args)
def test_String_prependUnichar(string):
string.prependUnichar(ord('x'))
def test_String_prependS32(string):
string.prependS32(0)
def test_String_prependS64(string):
string.prependS64(0)
def test_String_prependHex(string):
string.prependHex(0)
def test_String_prependScalar(string):
string.prependScalar(0.0)
def test_String_remove(string):
string.remove(0, 1)
@pytest.mark.parametrize('operand', [
skia.String('foo'),
'foo',
'f',
])
def test_String___iadd__(string, operand):
string += operand
def test_String_remove(string):
string.swap('bar')