-
-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathgstring_test.rs
287 lines (241 loc) · 8.08 KB
/
gstring_test.rs
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/*
* Copyright (c) godot-rust; Bromeon and contributors.
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
use std::collections::HashSet;
use crate::framework::{expect_debug_panic_or_release_ok, itest};
use godot::builtin::{Encoding, GString, PackedStringArray};
// TODO use tests from godot-rust/gdnative
#[itest]
fn string_default() {
let string = GString::new();
let back = String::from(&string);
assert_eq!(back.as_str(), "");
}
#[itest]
fn string_conversion() {
let string = String::from("some string");
let second = GString::from(&string);
let back = String::from(&second);
assert_eq!(string, back);
let second = GString::from(string.clone());
let back = String::from(second);
assert_eq!(string, back);
}
#[itest]
fn string_equality() {
let string = GString::from("some string");
let second = GString::from("some string");
let different = GString::from("some");
assert_eq!(string, second);
assert_ne!(string, different);
}
#[itest]
fn string_ordering() {
let low = GString::from("Alpha");
let high = GString::from("Beta");
assert!(low < high);
assert!(low <= high);
assert!(high > low);
assert!(high >= low);
}
#[itest]
fn string_clone() {
let first = GString::from("some string");
#[allow(clippy::redundant_clone)]
let cloned = first.clone();
assert_eq!(first, cloned);
}
#[itest]
fn string_chars() {
// Empty tests regression from #228: Null pointer passed to slice::from_raw_parts().
let string = GString::new();
let empty_char_slice: &[char] = &[];
assert_eq!(string.chars(), empty_char_slice);
assert_eq!(string, GString::from(empty_char_slice));
let string = String::from("ö🍎A💡");
let string_chars: Vec<char> = string.chars().collect();
let gstring = GString::from(string);
assert_eq!(gstring.chars(), string_chars.as_slice());
assert_eq!(
gstring.chars(),
&[
char::from_u32(0x00F6).unwrap(),
char::from_u32(0x1F34E).unwrap(),
char::from(65),
char::from_u32(0x1F4A1).unwrap(),
]
);
assert_eq!(gstring, GString::from(string_chars.as_slice()));
}
#[itest]
fn string_unicode_at() {
let s = GString::from("ö🍎A💡");
assert_eq!(s.unicode_at(0), 'ö');
assert_eq!(s.unicode_at(1), '🍎');
assert_eq!(s.unicode_at(2), 'A');
assert_eq!(s.unicode_at(3), '💡');
// Release mode: out-of-bounds prints Godot error, but returns 0.
expect_debug_panic_or_release_ok("unicode_at() out-of-bounds panics", || {
assert_eq!(s.unicode_at(4), '\0');
});
}
#[itest]
fn string_hash() {
let set: HashSet<GString> = [
"string_1",
"SECOND string! :D",
"emoji time: 😎",
r#"got/!()%)=!"/]}¡[$½{¥¡}@£symbol characters"#,
"some garbageTƉ馧쟻�韂ꮛཾ̶D@/8ݚ-䌗8",
]
.into_iter()
.map(GString::from)
.collect();
assert_eq!(set.len(), 5);
}
#[itest]
fn string_with_null() {
// Godot always ignores bytes after a null byte.
let cases: &[(&str, &str)] = &[
(
"some random string",
"some random string\0 with a null byte",
),
("", "\0"),
];
for (left, right) in cases.iter() {
let left = GString::from(*left);
let right = GString::from(*right);
assert_eq!(left, right);
}
}
#[itest]
fn string_substr() {
let string = GString::from("stable");
assert_eq!(string.substr(..), "stable".into());
assert_eq!(string.substr(1..), "table".into());
assert_eq!(string.substr(..4), "stab".into());
assert_eq!(string.substr(..=3), "stab".into());
assert_eq!(string.substr(2..5), "abl".into());
assert_eq!(string.substr(2..=4), "abl".into());
}
#[itest]
fn gstring_find() {
let s = GString::from("Hello World");
assert_eq!(s.find("o"), Some(4));
// Forward
assert_eq!(s.find_ex("o").done(), Some(4));
assert_eq!(s.find_ex("O").done(), None);
assert_eq!(s.find_ex("O").n().done(), Some(4));
assert_eq!(s.find_ex("O").n().from(4).done(), Some(4));
assert_eq!(s.find_ex("O").n().from(5).done(), Some(7));
// Reverse
assert_eq!(s.find_ex("o").r().done(), Some(7));
assert_eq!(s.find_ex("O").r().done(), None);
assert_eq!(s.find_ex("O").r().n().done(), Some(7));
assert_eq!(s.find_ex("O").r().n().from(7).done(), Some(7));
assert_eq!(s.find_ex("O").r().n().from(6).done(), Some(4));
}
#[itest]
fn gstring_split() {
let s = GString::from("Hello World");
assert_eq!(s.split(" "), packed(&["Hello", "World"]));
assert_eq!(
s.split(""),
packed(&["H", "e", "l", "l", "o", " ", "W", "o", "r", "l", "d"])
);
assert_eq!(s.split_ex(" ").done(), packed(&["Hello", "World"]));
assert_eq!(s.split_ex("world").done(), packed(&["Hello World"]));
// Empty divisions
assert_eq!(s.split_ex("l").done(), packed(&["He", "", "o Wor", "d"]));
assert_eq!(
s.split_ex("l").disallow_empty().done(),
packed(&["He", "o Wor", "d"])
);
// Max-split
assert_eq!(
s.split_ex("l").maxsplit(1).done(),
packed(&["He", "lo World"])
);
assert_eq!(
s.split_ex("l").maxsplit(2).done(),
packed(&["He", "", "o World"])
);
// Reverse max-split
assert_eq!(
s.split_ex("l").maxsplit_r(1).done(),
packed(&["Hello Wor", "d"])
);
}
#[itest]
fn gstring_count() {
let s = GString::from("Long sentence with Sentry guns.");
assert_eq!(s.count("sent", ..), 1);
assert_eq!(s.count("en", 6..), 3);
assert_eq!(s.count("en", 7..), 2);
assert_eq!(s.count("en", 6..=6), 0);
assert_eq!(s.count("en", 6..=7), 1);
assert_eq!(s.count("en", 6..8), 1);
assert_eq!(s.count("en", 7..8), 0);
assert_eq!(s.count("en", ..8), 1);
assert_eq!(s.count("en", ..10), 1);
assert_eq!(s.count("en", ..11), 2);
assert_eq!(s.count("en", ..=10), 2);
assert_eq!(s.countn("sent", ..), 2);
}
#[itest]
fn gstring_erase() {
let s = GString::from("Hello World");
assert_eq!(s.erase(..), GString::new());
assert_eq!(s.erase(4..4), s);
assert_eq!(s.erase(2..=2), "Helo World".into());
assert_eq!(s.erase(1..=3), "Ho World".into());
assert_eq!(s.erase(1..4), "Ho World".into());
assert_eq!(s.erase(..6), "World".into());
assert_eq!(s.erase(5..), "Hello".into());
}
#[itest]
fn gstring_insert() {
let s = GString::from("H World");
assert_eq!(s.insert(1, "i"), "Hi World".into());
assert_eq!(s.insert(1, "ello"), "Hello World".into());
assert_eq!(s.insert(7, "."), "H World.".into());
assert_eq!(s.insert(0, "¿"), "¿H World".into());
// Special behavior in Godot, but maybe the idea is to allow large constants to mean "end".
assert_eq!(s.insert(123, "!"), "H World!".into());
}
#[itest]
fn gstring_pad() {
let s = GString::from("123");
assert_eq!(s.lpad(5, '0'), "00123".into());
assert_eq!(s.lpad(2, ' '), "123".into());
assert_eq!(s.lpad(4, ' '), " 123".into());
assert_eq!(s.rpad(5, '+'), "123++".into());
assert_eq!(s.rpad(2, ' '), "123".into());
assert_eq!(s.rpad(4, ' '), "123 ".into());
let s = GString::from("123.456");
assert_eq!(s.pad_decimals(5), "123.45600".into());
assert_eq!(s.pad_decimals(2), "123.45".into()); // note: Godot rounds down
assert_eq!(s.pad_zeros(5), "00123.456".into());
assert_eq!(s.pad_zeros(2), "123.456".into());
}
// Byte and C-string conversions.
crate::generate_string_bytes_and_cstr_tests!(
builtin: GString,
tests: [
gstring_from_bytes_ascii,
gstring_from_cstr_ascii,
gstring_from_bytes_latin1,
gstring_from_cstr_latin1,
gstring_from_bytes_utf8,
gstring_from_cstr_utf8,
]
);
// ----------------------------------------------------------------------------------------------------------------------------------------------
// Helpers
fn packed(strings: &[&str]) -> PackedStringArray {
strings.iter().map(|&s| GString::from(s)).collect()
}