rpfm_lib 4.7.4

This crate contains the basic functionality for interacting with Total War files.
Documentation
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
//---------------------------------------------------------------------------//
// Copyright (c) 2017-2024 Ismael Gutiérrez González. All rights reserved.
//
// This file is part of the Rusted PackFile Manager (RPFM) project,
// which can be found here: https://github.com/Frodo45127/rpfm.
//
// This file is licensed under the MIT license, which can be found here:
// https://github.com/Frodo45127/rpfm/blob/master/LICENSE.
//---------------------------------------------------------------------------//

//! Tests for the [`ReadBytes`] trait.
//!
//! [`ReadBytes`]: crate::binary::ReadBytes

use std::io::Cursor;

use nalgebra::{Vector2, Vector4};

use super::ReadBytes;

//---------------------------------------------------------------------------//
//                                  Tests
//---------------------------------------------------------------------------//

/// Test for ReadBytes::len().
#[test]
fn len() {

    // Check the function works.
    assert_eq!(ReadBytes::len(&mut Cursor::new([0, 0, 0, 0])).unwrap(), 4);
}

/// Test to `ReadBytes::read_slice()`.
#[test]
fn read_slice() {

    // Check the reader works with proper slice and size.
    assert_eq!(ReadBytes::read_slice(&mut Cursor::new([1, 2, 3, 4]), 4, false).unwrap(), vec![1, 2, 3, 4]);
    assert_eq!(ReadBytes::read_slice(&mut Cursor::new(vec![0u8; 0]), 0, false).unwrap(), vec![0u8; 0]);

    // Check the reader returns an error for an invalid size value for the data provided.
    assert!(ReadBytes::read_slice(&mut Cursor::new([]), 4, false).is_err());
}

/// Test to `ReadBytes::read_bool()`.
#[test]
fn read_bool() {

    // Check the reader works for a proper value.
    assert!(!ReadBytes::read_bool(&mut Cursor::new([0])).unwrap());
    assert!(ReadBytes::read_bool(&mut Cursor::new([1])).unwrap());

    // Check the reader returns an error for an invalid value.
    assert!(ReadBytes::read_bool(&mut Cursor::new([2])).is_err());
}

/// Test to `ReadBytes::read_u8()`.
#[test]
fn read_u8() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_u8(&mut Cursor::new([10])).unwrap(), 10);

    // Check the reader returns an error for empty data.
    assert!(ReadBytes::read_u8(&mut Cursor::new([])).is_err());
}

/// Test to `ReadBytes::read_u16()`.
#[test]
fn read_u16() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_u16(&mut Cursor::new([10, 0])).unwrap(), 10);

    // Check the reader returns an error for a slice whose length is smaller than 2.
    assert!(ReadBytes::read_u16(&mut Cursor::new([10])).is_err());
}

/// Test to `ReadBytes::read_u24()`.
#[test]
fn read_u24() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_u24(&mut Cursor::new([152, 150, 129])).unwrap(), 8492696);

    // Check the reader returns an error for a slice whose length is smaller than 3.
    assert!(ReadBytes::read_u24(&mut Cursor::new([152, 150])).is_err());
}

/// Test to `ReadBytes::read_u32()`.
#[test]
fn read_u32() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_u32(&mut Cursor::new([10, 0, 0, 0])).unwrap(), 10);

    // Check the reader returns an error for a slice whose length is smaller than 4.
    assert!(ReadBytes::read_u32(&mut Cursor::new([10, 0, 0])).is_err());
}

/// Test to `ReadBytes::read_u64()`.
#[test]
fn read_u64() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_u64(&mut Cursor::new([10, 0, 0, 0, 0, 0, 0, 0])).unwrap(), 10);

    // Check the reader returns an error for a slice whose length is smaller than 8.
    assert!(ReadBytes::read_u64(&mut Cursor::new([10, 0, 0, 0, 0])).is_err());
}

/// Test to `ReadBytes::read_cauleb128()`.
#[test]
fn read_cauleb128() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_cauleb128(&mut Cursor::new([0x80, 10])).unwrap(), 10);

    // Check the reader returns an error for a slice that's not big enough.
    assert!(ReadBytes::read_cauleb128(&mut Cursor::new([])).is_err());
}

/// Test to `ReadBytes::read_i8()`.
#[test]
fn read_i8() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_i8(&mut Cursor::new([254])).unwrap(), -2);

    // Check the reader returns an error for a slice whose length is smaller than 1.
    assert!(ReadBytes::read_i8(&mut Cursor::new([])).is_err());
}

/// Test to `ReadBytes::read_u16()`.
#[test]
fn read_i16() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_i16(&mut Cursor::new([254, 254])).unwrap(), -258);

    // Check the reader returns an error for a slice whose length is smaller than 2.
    assert!(ReadBytes::read_i16(&mut Cursor::new([10])).is_err());
}

/// Test to `ReadBytes::read_i24()`.
#[test]
fn read_i24() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_i24(&mut Cursor::new([152, 150, 129])).unwrap(), -8_284_520);

    // Check the reader returns an error for a slice whose length is smaller than 3.
    assert!(ReadBytes::read_i24(&mut Cursor::new([152, 150])).is_err());
}

/// Test to `ReadBytes::read_u32()`.
#[test]
fn read_i32() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_i32(&mut Cursor::new([10, 0, 0, 0])).unwrap(), 10);

    // Check the reader returns an error for a slice whose length is smaller than 4.
    assert!(ReadBytes::read_i32(&mut Cursor::new([10, 0, 0])).is_err());
}

/// Test to `ReadBytes::read_i64()`.
#[test]
fn read_i64() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_i64(&mut Cursor::new([10, 0, 0, 0, 0, 0, 0, 0])).unwrap(), 10);

    // Check the reader returns an error for a slice whose length is smaller than 8.
    assert!(ReadBytes::read_i64(&mut Cursor::new([10, 0, 0])).is_err());
}

/// Test to `ReadBytes::read_optional_i16()`.
#[test]
fn read_optional_i16() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_optional_i16(&mut Cursor::new([1, 254, 254])).unwrap(), -258);

    // Check the reader returns an error for a slice whose length is smaller than 2.
    assert!(ReadBytes::read_optional_i16(&mut Cursor::new([1, 10])).is_err());

    // Check the reader returns an error if the first value is not a bool.
    assert!(ReadBytes::read_optional_i16(&mut Cursor::new([2, 10, 0])).is_err());
}

/// Test to `ReadBytes::read_optional_i32()`.
#[test]
fn read_optional_i32() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_optional_i32(&mut Cursor::new([1, 10, 0, 0, 0])).unwrap(), 10);

    // Check the reader returns an error for a slice whose length is smaller than 4.
    assert!(ReadBytes::read_optional_i32(&mut Cursor::new([1, 10, 0, 0])).is_err());

    // Check the reader returns an error if the first value is not a bool.
    assert!(ReadBytes::read_optional_i32(&mut Cursor::new([2, 10, 0, 0, 0])).is_err());
}

/// Test to `ReadBytes::read_optional_i64()`.
#[test]
fn read_optional_i64() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_optional_i64(&mut Cursor::new([1, 10, 0, 0, 0, 0, 0, 0, 0])).unwrap(), 10);

    // Check the reader returns an error for a slice whose length is smaller than 8.
    assert!(ReadBytes::read_optional_i64(&mut Cursor::new([1, 10, 0, 0])).is_err());

    // Check the reader returns an error if the first value is not a bool.
    assert!(ReadBytes::read_optional_i64(&mut Cursor::new([2, 10, 0, 0, 0])).is_err());
}

/// Test to `ReadBytes::read_f16()`.
#[test]
fn read_f16() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_f16(&mut Cursor::new([32, 65])).unwrap(), half::f16::from_f32(2.5625));

    // Check the reader returns an error for a slice whose length is smaller than 2.
    assert!(ReadBytes::read_f16(&mut Cursor::new([65])).is_err());
}

/// Test to `ReadBytes::read_f32()`.
#[test]
fn read_f32() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_f32(&mut Cursor::new([0, 0, 32, 65])).unwrap(), 10.0);

    // Check the reader returns an error for a slice whose length is smaller than 4.
    assert!(ReadBytes::read_f32(&mut Cursor::new([0, 32, 65])).is_err());
}

/// Test to `ReadBytes::read_f32_normal_from_u8()`.
#[test]
fn read_f32_normal_from_u8() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_f32_normal_from_u8(&mut Cursor::new([253])).unwrap(), 0.9843137);
}

/// Test to `ReadBytes::read_f64()`.
#[test]
fn read_f64() {

    // Check the reader works for a proper value.
    assert_eq!(ReadBytes::read_f64(&mut Cursor::new([0, 0, 0, 0, 0, 0, 36, 64])).unwrap(), 10.0);

    // Check the reader returns an error for a slice whose length is smaller than 8.
    assert!(ReadBytes::read_f64(&mut Cursor::new([0, 0, 0, 0, 36, 64])).is_err());
}

/// Test to `ReadBytes::read_string_u8()`.
#[test]
fn read_string_u8() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_string_u8(&mut Cursor::new([87, 97, 104, 97, 104, 97, 104, 97, 104, 97]), 10).unwrap(), "Wahahahaha");

    // Check the reader returns an error for a slice with non-UTF8 characters (255).
    assert!(ReadBytes::read_string_u8(&mut Cursor::new([87, 97, 104, 97, 255, 104, 97, 104, 97, 104, 97]), 10).is_err());
}

/// Test to `ReadBytes::read_string_u8_iso_8859_15()`.
#[test]
fn read_string_u8_iso_8859_15() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_string_u8_iso_8859_15(&mut Cursor::new([87, 97, 104, 97, 104, 97, 104, 97, 104, 97]), 10).unwrap(), "Wahahahaha");

    // Check the reader works mapping characters when an invalid UTF-8 character is detected.
    assert_eq!(ReadBytes::read_string_u8_iso_8859_15(&mut Cursor::new([87, 97, 104, 97, 255, 104, 97, 104, 97, 104, 97]), 11).unwrap(), "Wahaÿhahaha");
}

/// Test to `ReadBytes::read_string_u8_0padded()`.
#[test]
fn read_string_u8_0padded() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_string_u8_0padded(&mut Cursor::new([87, 97, 104, 97, 104, 97, 0, 0, 0, 0]), 10).unwrap(), "Wahaha");

    // Check that, as soon as it finds a 0 (null character) the reader stops.
    assert_eq!(ReadBytes::read_string_u8_0padded(&mut Cursor::new([87, 97, 104, 97, 0, 104, 97, 0, 0, 0]), 10).unwrap(), "Waha");

    // Check the reader returns an error for a slice with non-UTF8 characters (255).
    assert!(ReadBytes::read_string_u8_0padded(&mut Cursor::new([87, 97, 104, 97, 255, 104, 97, 104, 97, 104, 97, 0, 0]), 12).is_err());

    // Check the reader returns the full string if no zeros have been found before the end of the slice.
    assert_eq!(ReadBytes::read_string_u8_0padded(&mut Cursor::new([87, 97, 104, 97, 104, 97, 104, 97, 104, 97]), 10).unwrap(), "Wahahahaha");
}

/// Test to `ReadBytes::read_string_u8_0terminated()`.
#[test]
fn read_string_u8_0terminated() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_string_u8_0terminated(&mut Cursor::new([87, 97, 104, 97, 104, 97, 104, 97, 0, 97])).unwrap(), "Wahahaha".to_owned());

    // Check the reader works for a string that doesn't end in zero, but in end of slice.
    assert!(ReadBytes::read_string_u8_0terminated(&mut Cursor::new([87, 97, 104, 97, 104, 97, 104, 97, 104, 97])).is_err());

    // Check the reader works for a slice with non-UTF8 characters (255).
    assert!(ReadBytes::read_string_u8_0terminated(&mut Cursor::new([87, 97, 104, 97, 255, 104, 97, 104, 97, 104, 97])).is_err());
}

/// Test to `ReadBytes::read_sized_string_u8()`.
#[test]
fn read_sized_string_u8() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_sized_string_u8(&mut Cursor::new([10, 0, 87, 97, 104, 97, 104, 97, 104, 97, 104, 97])).unwrap(), "Wahahahaha".to_owned());

    // Check the reader returns an error for a slice with less than two bytes.
    assert!(ReadBytes::read_sized_string_u8(&mut Cursor::new([5])).is_err());

    // Check the reader returns an error for a slice shorter than it's specified length.
    assert!(ReadBytes::read_sized_string_u8(&mut Cursor::new([4, 0, 2])).is_err());

    // Check the reader returns an error for a slice with non-UTF8 characters (255).
    assert!(ReadBytes::read_sized_string_u8(&mut Cursor::new([11, 0, 87, 97, 104, 97, 255, 104, 97, 104, 97, 104, 97])).is_err());
}

/// Test to `ReadBytes::read_sized_string_u8_u32()`.
#[test]
fn read_sized_string_u8_u32() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_sized_string_u8_u32(&mut Cursor::new([10, 0, 0, 0, 87, 97, 104, 97, 104, 97, 104, 97, 104, 97])).unwrap(), "Wahahahaha".to_owned());

    // Check the reader returns an error for a slice with less than four bytes.
    assert!(ReadBytes::read_sized_string_u8_u32(&mut Cursor::new([5])).is_err());

    // Check the reader returns an error for a slice shorter than it's specified length.
    assert!(ReadBytes::read_sized_string_u8_u32(&mut Cursor::new([4, 0, 0, 0, 2])).is_err());

    // Check the reader returns an error for a slice with non-UTF8 characters (255).
    assert!(ReadBytes::read_sized_string_u8_u32(&mut Cursor::new([11, 0, 0, 0, 87, 97, 104, 97, 255, 104, 97, 104, 97, 104, 97])).is_err());
}

/// Test to `ReadBytes::read_optional_string_u8()`.
#[test]
fn read_optional_string_u8() {

    // Check the reader works for a nonexistent string.
    assert_eq!(ReadBytes::read_optional_string_u8(&mut Cursor::new([0])).unwrap(), "".to_owned());

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_optional_string_u8(&mut Cursor::new([1, 10, 0, 87, 97, 104, 97, 104, 97, 104, 97, 104, 97])).unwrap(), "Wahahahaha".to_owned());

    // Check the reader returns an error for a slice when it expects a string after the bool, but founds nothing.
    assert!(ReadBytes::read_optional_string_u8(&mut Cursor::new([1])).is_err());

    // Check the reader returns an error if the first value is not a boolean
    assert!(ReadBytes::read_optional_string_u8(&mut Cursor::new([2])).is_err());

    // Check the reader returns an error for a slice with less than two bytes.
    assert!(ReadBytes::read_optional_string_u8(&mut Cursor::new([1, 5])).is_err());

    // Check the reader returns an error for a slice shorter than it's specified length.
    assert!(ReadBytes::read_optional_string_u8(&mut Cursor::new([1, 4, 0, 2])).is_err());

    // Check the reader returns an error for a slice with non-UTF8 characters (255).
    assert!(ReadBytes::read_optional_string_u8(&mut Cursor::new([1, 11, 0, 87, 97, 104, 97, 255, 104, 97, 104, 97, 104, 97])).is_err());
}

/// Test to `ReadBytes::read_string_u16()`.
#[test]
fn read_string_u16() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_string_u16(&mut Cursor::new([87, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0]), 12).unwrap(), "Wahaha");

    // Check the reader returns an error for a slice with uneven amount of bytes.
    assert!(ReadBytes::read_string_u16(&mut Cursor::new([87, 0, 0, 216, 104, 0, 97, 0, 104, 0, 97, 0, 1]), 13).is_err());

    // Check the reader returns an error for a slice with the wrong size.
    assert!(ReadBytes::read_string_u16(&mut Cursor::new([87, 0, 0, 216, 104, 0, 97, 0, 104, 0, 97, 0]), 14).is_err());
}

/// Test to `ReadBytes::read_string_u16_0padded()`.
#[test]
fn read_string_u16_0padded() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_string_u16_0padded(&mut Cursor::new([87, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0]), 20).unwrap(), "Wahaha");

    // Check that, as soon as it finds a 0 (null character) the reader stops.
    assert_eq!(ReadBytes::read_string_u16_0padded(&mut Cursor::new([87, 0, 97, 0, 104, 0, 97, 0, 0, 0, 104, 0, 97, 0, 0, 0, 0, 0, 0, 0]), 20).unwrap(), "Waha");

    // Check the reader returns the full string if no zeros have been found before the end of the slice.
    assert_eq!(ReadBytes::read_string_u16_0padded(&mut Cursor::new([87, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0]), 20).unwrap(), "Wahahahaha");

    // Check that fails properly if the size is wrong
    assert!(ReadBytes::read_string_u16_0padded(&mut Cursor::new([87, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0]), 40).is_err());
}

/// Test to `ReadBytes::read_string_u16_0terminated()`.
#[test]
fn read_string_u16_0terminated() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_string_u16_0terminated(&mut Cursor::new([87, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0, 0, 0])).unwrap(), "Wahahaha".to_owned());

    // Check the reader works for a string that doesn't end in zero, but in end of slice.
    assert!(ReadBytes::read_string_u16_0terminated(&mut Cursor::new([87, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0, 104, 0, 97, 0])).is_err());
}

/// Test to `ReadBytes::read_sized_string_u16()`.
#[test]
fn read_sized_string_u16() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_sized_string_u16(&mut Cursor::new([4, 0, 87, 0, 97, 0, 104, 0, 97, 0])).unwrap(), "Waha".to_owned());

    // Check the reader returns an error for a slice with less than two bytes.
    assert!(ReadBytes::read_sized_string_u16(&mut Cursor::new([5])).is_err());

    // Check the reader returns an error for a slice shorter than it's specified length.
    assert!(ReadBytes::read_sized_string_u16(&mut Cursor::new([4, 0, 2])).is_err());
}

/// Test to `ReadBytes::read_sized_string_u16_u32()`.
#[test]
fn read_sized_string_u16_u32() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_sized_string_u16_u32(&mut Cursor::new([4, 0, 0, 0, 87, 0, 97, 0, 104, 0, 97, 0])).unwrap(), "Waha".to_owned());

    // Check the reader returns an error for a slice with less than four bytes.
    assert!(ReadBytes::read_sized_string_u16_u32(&mut Cursor::new([5])).is_err());

    // Check the reader returns an error for a slice shorter than it's specified length.
    assert!(ReadBytes::read_sized_string_u16_u32(&mut Cursor::new([4, 0, 0, 0, 2])).is_err());
}

/// Test to `ReadBytes::read_optional_string_u16()`.
#[test]
fn read_optional_string_u16() {

    // Check the reader works for a nonexistent string.
    assert_eq!(ReadBytes::read_optional_string_u16(&mut Cursor::new([0])).unwrap(), "".to_owned());

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_optional_string_u16(&mut Cursor::new([1, 4, 0, 87, 0, 97, 0, 104, 0, 97, 0])).unwrap(), "Waha".to_owned());

    // Check the reader returns an error if the first value is not a boolean
    assert!(ReadBytes::read_optional_string_u16(&mut Cursor::new([2, 5])).is_err());

    // Check the reader returns an error for a slice with less than two bytes.
    assert!(ReadBytes::read_optional_string_u16(&mut Cursor::new([1, 5])).is_err());

    // Check the reader returns an error for a slice shorter than it's specified length.
    assert!(ReadBytes::read_optional_string_u16(&mut Cursor::new([1, 4, 0, 2])).is_err());
}

/// Test to `ReadBytes::read_string_colour_rgb()`.
#[test]
fn read_string_colour_rgb() {

    // Check the reader works for a proper encoded string.
    assert_eq!(ReadBytes::read_string_colour_rgb(&mut Cursor::new([0xFF, 0x04, 0x05, 0x00])).unwrap(), "0504FF");

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_string_colour_rgb(&mut Cursor::new([0x87, 0x97])).is_err());
}

/// Test to `ReadBytes::read_vector_2_u8()`.
#[test]
fn read_vector_2_u8() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_2_u8(&mut Cursor::new([0x0A, 0x0A])).unwrap(), Vector2::new(10, 10));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_2_u8(&mut Cursor::new([0x87])).is_err());
}

/// Test to `ReadBytes::read_vector_2_f32_pct_from_vector_2_u8()`.
#[test]
fn read_vector_2_f32_pct_from_vector_2_u8() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_2_f32_pct_from_vector_2_u8(&mut Cursor::new([0x0A, 0x0A])).unwrap(), Vector2::new(0.039215688, 0.039215688));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_2_f32_pct_from_vector_2_u8(&mut Cursor::new([0x87])).is_err());
}

/// Test to `ReadBytes::read_vector_2_f32_from_vector_2_f16()`.
#[test]
fn read_vector_2_f32_from_vector_2_f16() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_2_f32_from_vector_2_f16(&mut Cursor::new([
        0x0A, 0x0A,
        0x0A, 0x0A
    ])).unwrap(), Vector2::new(0.00018429756, 0.00018429756));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_2_f32_from_vector_2_f16(&mut Cursor::new([0x87])).is_err());
}

/// Test to `ReadBytes::read_vector_4_u8()`.
#[test]
fn read_vector_4_u8() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_4_u8(&mut Cursor::new([0x0A, 0x0A, 0x0A, 0x0A])).unwrap(), Vector4::new(10, 10, 10, 10));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_4_u8(&mut Cursor::new([0x87])).is_err());
}

/// Test to `ReadBytes::read_vector_4_f32()`.
#[test]
fn read_vector_4_f32() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_4_f32(&mut Cursor::new([
        0x00, 0x00, 0xFF, 0x3F,
        0x00, 0x00, 0xFF, 0x3F,
        0x00, 0x00, 0xFF, 0x3F,
        0x00, 0x00, 0xFF, 0x3F
    ])).unwrap(), Vector4::new(1.9921875, 1.9921875, 1.9921875, 1.9921875));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_4_f32(&mut Cursor::new([0x87])).is_err());
}

/// Test to `ReadBytes::read_vector_4_f32_from_vec_3_f32()`.
#[test]
fn read_vector_4_f32_from_vec_3_f32() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_4_f32_from_vec_3_f32(&mut Cursor::new([
        0x00, 0x00, 0xFF, 0x3F,
        0x00, 0x00, 0xFF, 0x3F,
        0x00, 0x00, 0xFF, 0x3F
    ])).unwrap(), Vector4::new(1.9921875, 1.9921875, 1.9921875, 0.0));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_4_f32_from_vec_3_f32(&mut Cursor::new([0x87])).is_err());
}

/// Test to `ReadBytes::read_vector_4_f32_normal_from_vector_4_u8()`.
#[test]
fn read_vector_4_f32_normal_from_vector_4_u8() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_4_f32_normal_from_vector_4_u8(&mut Cursor::new([
        0x0A,
        0x0A,
        0x0A,
        0x0A
    ])).unwrap(), Vector4::new(-0.92156863, -0.92156863, -0.92156863, -0.92156863));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_4_f32_normal_from_vector_4_u8(&mut Cursor::new([0x87])).is_err());
}

/// Test to `ReadBytes::read_vector_4_f32_pct_from_vector_4_u8()`.
#[test]
fn read_vector_4_f32_pct_from_vector_4_u8() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_4_f32_pct_from_vector_4_u8(&mut Cursor::new([
        0x0A,
        0x0A,
        0x0A,
        0x0A
    ])).unwrap(), Vector4::new(0.039215688, 0.039215688, 0.039215688, 0.039215688));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_4_f32_pct_from_vector_4_u8(&mut Cursor::new([0x87])).is_err());
}

/// Test to `ReadBytes::read_vector_4_f32_normal_from_vector_4_f16()`.
#[test]
fn read_vector_4_f32_normal_from_vector_4_f16() {

    // Check the reader works for a properly encoded vector.
    assert_eq!(ReadBytes::read_vector_4_f32_normal_from_vector_4_f16(&mut Cursor::new([
        0x0A, 0x3F,
        0x0A, 0x3F,
        0x0A, 0x3F,
        0x0A, 0x3F
    ])).unwrap(), Vector4::new(3.096775, 3.096775, 3.096775, 1.7597656));

    // Check the reader returns an error for a slice shorter than expected.
    assert!(ReadBytes::read_vector_4_f32_normal_from_vector_4_f16(&mut Cursor::new([0x87])).is_err());
}