aboutsummaryrefslogtreecommitdiff
path: root/src/unit/fstring.unit
blob: 3912de2fe433cf2b24555e71cb9aad1a1f3f26e3 (plain)
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
// vim: syntax=cpp
/*
 * Copyright (C) 2007-2008 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "bu/fstring.h"

#include <dirent.h>

{=Init}

{%compare1}
{
	Bu::FString b("Bob");
	unitTest( !(b == "Bobo") );
	unitTest( b == "Bob" );
}

{%compare2}
{
	Bu::FString b("Bobo");
	unitTest( !(b == "Bob") );
	unitTest( b == "Bobo" );
}

{%appendSingle}
{
	Bu::FString b;
	for( char l = 'a'; l < 'g'; l++ )
		b += l;
	unitTest( b == "abcdef" );
	unitTest( strcmp( b.getStr(), "abcdef" ) == 0 );
}

{%shared1:fail}
{
	Bu::FString a("Hey there");
	Bu::FString b( a );
	unitTest( a.getStr() == b.getStr() );
	b += " guy";
	unitTest( a.getStr() != b.getStr() );
	a = b;
	unitTest( a.getStr() == b.getStr() );
}

{%insert}
{
	Bu::FString a("abcd");
	a.insert( 2, "-!-", 3 );
	unitTest( a == "ab-!-cd" );
	
	a.insert( 0, "!!", 2 );
	unitTest( a == "!!ab-!-cd" );
	
	a.insert( -10, "789", 3 );
	unitTest( a == "789!!ab-!-cd" );
	
	a.insert( 12, "89", 2 );
	unitTest( a == "789!!ab-!-cd89" );
	
	a.insert( 1203, "12", 2 );
	unitTest( a == "789!!ab-!-cd8912" );
}

{%remove}
{
	Bu::FString a("abHEYcd");
	a.remove( 2, 3 );
	unitTest( a == "abcd" );
	a.remove( 2, 5 );
	unitTest( a == "ab" );
	a += "cdefghijklmnop";
	a.remove( 5, 1 );
	unitTest( a = "abcdeghijklmnop" );
}

{%add1}
{
	Bu::FString a("hi there");
	Bu::FString b(", yeah!");
	Bu::FString c = a + b;

	unitTest( c == "hi there, yeah!" );
}

{%add2}
{
	Bu::FString a("hi there");
	Bu::FString c = a + ", yeah!";

	unitTest( c == "hi there, yeah!" );
}

{%add3}
{
	Bu::FString a("hi there");
	Bu::FString b(", yeah!");
	Bu::FString c = a + ", Mr. Man" + b;

	unitTest( c == "hi there, Mr. Man, yeah!" );
}

{%add4}
{
	Bu::FString b(", yeah!");
	Bu::FString c = "hi there" + b;

	unitTest( c == "hi there, yeah!" );
}

{%add5}
{
	Bu::FString b;
	Bu::FString c = "sup?";
	b += "hey, " + c;
	
	unitTest( b == "hey, sup?" );
}

{%add6}
{
	Bu::FString a("Hello");
	char b[256] = {"Dude"};
	Bu::FString c = a + "/" + b;

	unitTest( c == "Hello/Dude" );
}

{%subStr1}
{
	Bu::FString a("abcdefghijklmnop");
	unitTest( a.getSubStr( 5, 3 ) == "fgh" );
	unitTest( a.getSubStr( 10 ) == "klmnop" );
	unitTest( a.getSubStr( 40 ) == "" );
	unitTest( a.getSubStr( -10 ) == "abcdefghijklmnop" );
	unitTest( a.getSubStr( -15, 4 ) == "abcd" );
}