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
|
/*
* Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im>
*
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3.0 only,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* version 3.0 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3.0 along with this program. If not, see
* <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <string.h>
#import "OFMutableStringTests.h"
@interface CustomMutableString: OFMutableString
{
OFMutableString *_string;
}
@end
static OFString *const whitespace[] = {
@" \r \t\n\t \tasd \t \t\t\r\n",
@" \t\t \t\t \t \t"
};
@implementation OFMutableStringTests
- (Class)stringClass
{
return [CustomMutableString class];
}
- (void)setUp
{
[super setUp];
_mutableString = [[self.stringClass alloc] initWithString: @"täṠ€🤔"];
}
- (void)dealloc
{
objc_release(_mutableString);
[super dealloc];
}
- (void)testAppendString
{
[_mutableString appendString: @"ö"];
OTAssertEqualObjects(_mutableString, @"täṠ€🤔ö");
}
- (void)testAppendUTF8String
{
[_mutableString appendUTF8String: "ö"];
OTAssertEqualObjects(_mutableString, @"täṠ€🤔ö");
}
- (void)testAppendUTF8StringLength
{
[_mutableString appendUTF8String: "\xEF\xBB\xBF" "öÖ" length: 7];
OTAssertEqualObjects(_mutableString, @"täṠ€🤔öÖ");
}
- (void)testAppendFormat
{
[_mutableString appendFormat: @"%02X", 15];
OTAssertEqualObjects(_mutableString, @"täṠ€🤔0F");
}
- (void)testAppendCharactersLength
{
[_mutableString appendCharacters: (OFUnichar []){ 0xF6, 0xD6 }
length: 2];
OTAssertEqualObjects(_mutableString, @"täṠ€🤔öÖ");
}
- (void)testUppercase
{
[_mutableString uppercase];
#ifdef OF_HAVE_UNICODE_TABLES
OTAssertEqualObjects(_mutableString, @"TÄṠ€🤔");
#else
OTAssertEqualObjects(_mutableString, @"TäṠ€🤔");
#endif
}
- (void)testLowercase
{
[_mutableString lowercase];
#ifdef OF_HAVE_UNICODE_TABLES
OTAssertEqualObjects(_mutableString, @"täṡ€🤔");
#else
OTAssertEqualObjects(_mutableString, @"täṠ€🤔");
#endif
}
- (void)testCapitalize
{
OFMutableString *string =
[self.stringClass stringWithString: @"täṠ€🤔täṠ€🤔 täṠ€🤔"];
[string capitalize];
#ifdef OF_HAVE_UNICODE_TABLES
OTAssertEqualObjects(string, @"Täṡ€🤔täṡ€🤔 Täṡ€🤔");
#else
OTAssertEqualObjects(string, @"TäṠ€🤔täṠ€🤔 TäṠ€🤔");
#endif
}
- (void)testInsertStringAtIndex
{
[_mutableString insertString: @"fööbär" atIndex: 2];
OTAssertEqualObjects(_mutableString, @"täfööbärṠ€🤔");
}
- (void)testSetCharacterAtIndex
{
[_mutableString setCharacter: 0x1F600 atIndex: 2];
OTAssertEqualObjects(_mutableString, @"tä😀€🤔");
}
- (void)testDeleteCharactersInRange
{
[_mutableString deleteCharactersInRange: OFMakeRange(2, 2)];
OTAssertEqualObjects(_mutableString, @"tä🤔");
}
- (void)testDeleteCharactersInRangeThrowsWithOutOfRangeRange
{
OTAssertThrowsSpecific(
[_mutableString deleteCharactersInRange: OFMakeRange(4, 2)],
OFOutOfRangeException);
OTAssertThrowsSpecific(
[_mutableString deleteCharactersInRange: OFMakeRange(5, 1)],
OFOutOfRangeException);
OTAssertThrowsSpecific(
[_mutableString deleteCharactersInRange: OFMakeRange(6, 0)],
OFOutOfRangeException);
}
- (void)testReplaceCharactersInRangeWithString
{
OFMutableString *string =
[self.stringClass stringWithString: @"𝄞öööbä€"];
[string replaceCharactersInRange: OFMakeRange(1, 3)
withString: @"äöüß"];
OTAssertEqualObjects(string, @"𝄞äöüßbä€");
[string replaceCharactersInRange: OFMakeRange(4, 2) withString: @"b"];
OTAssertEqualObjects(string, @"𝄞äöübä€");
[string replaceCharactersInRange: OFMakeRange(0, 7) withString: @""];
OTAssertEqualObjects(string, @"");
}
- (void)testReplaceCharactersInRangeWithStringFailsWithOutOfRangeRange
{
OTAssertThrowsSpecific(
[_mutableString replaceCharactersInRange: OFMakeRange(4, 2)
withString: @"abc"],
OFOutOfRangeException);
OTAssertThrowsSpecific(
[_mutableString replaceCharactersInRange: OFMakeRange(5, 1)
withString: @"abc"],
OFOutOfRangeException);
OTAssertThrowsSpecific(
[_mutableString replaceCharactersInRange: OFMakeRange(6, 0)
withString: @""],
OFOutOfRangeException);
}
- (void)testReplaceOccurrencesOfStringWithString
{
OFMutableString *string;
string = [self.stringClass stringWithString: @"asd fo asd fofo asd"];
[string replaceOccurrencesOfString: @"fo" withString: @"foo"];
OTAssertEqualObjects(string, @"asd foo asd foofoo asd");
string = [self.stringClass stringWithString: @"XX"];
[string replaceOccurrencesOfString: @"X" withString: @"XX"];
OTAssertEqualObjects(string, @"XXXX");
}
- (void)testReplaceOccurrencesOfStringWithStringOptionsRange
{
OFMutableString *string =
[self.stringClass stringWithString: @"foofoobarfoobarfoo"];
[string replaceOccurrencesOfString: @"oo"
withString: @"óò"
options: 0
range: OFMakeRange(2, 15)];
OTAssertEqualObjects(string, @"foofóòbarfóòbarfoo");
}
- (void)
testReplaceOccurrencesOfStringWithStringOptionsRangeThrowsWithOutOfRangeRange
{
OTAssertThrowsSpecific(
[_mutableString replaceOccurrencesOfString: @"t"
withString: @"abc"
options: 0
range: OFMakeRange(4, 2)],
OFOutOfRangeException);
OTAssertThrowsSpecific(
[_mutableString replaceOccurrencesOfString: @"t"
withString: @"abc"
options: 0
range: OFMakeRange(5, 1)],
OFOutOfRangeException);
OTAssertThrowsSpecific(
[_mutableString replaceOccurrencesOfString: @"t"
withString: @""
options: 0
range: OFMakeRange(6, 0)],
OFOutOfRangeException);
}
- (void)deleteLeadingWhitespaces
{
OFMutableString *string;
string = [self.stringClass stringWithString: whitespace[0]];
[string deleteLeadingWhitespaces];
OTAssertEqualObjects(string, @"asd \t \t\t\r\n");
string = [self.stringClass stringWithString: whitespace[1]];
[string deleteLeadingWhitespaces];
OTAssertEqualObjects(string, @"");
}
- (void)deleteTrailingWhitespaces
{
OFMutableString *string;
string = [self.stringClass stringWithString: whitespace[0]];
[string deleteTrailingWhitespaces];
OTAssertEqualObjects(string, @" \r \t\n\t \tasd");
string = [self.stringClass stringWithString: whitespace[1]];
[string deleteTrailingWhitespaces];
OTAssertEqualObjects(string, @"");
}
- (void)deleteEnclosingWhitespaces
{
OFMutableString *string;
string = [self.stringClass stringWithString: whitespace[0]];
[string deleteEnclosingWhitespaces];
OTAssertEqualObjects(string, @"asd");
string = [self.stringClass stringWithString: whitespace[1]];
[string deleteEnclosingWhitespaces];
OTAssertEqualObjects(string, @"");
}
@end
@implementation CustomMutableString
- (instancetype)init
{
self = [super init];
@try {
_string = [[OFMutableString alloc] init];
} @catch (id e) {
objc_release(self);
@throw e;
}
return self;
}
- (instancetype)initWithString: (OFString *)string
{
self = [super init];
@try {
_string = [string mutableCopy];
} @catch (id e) {
objc_release(self);
@throw e;
}
return self;
}
- (instancetype)initWithCString: (const char *)cString
encoding: (OFStringEncoding)encoding
length: (size_t)length
{
self = [super init];
@try {
_string = [[OFMutableString alloc] initWithCString: cString
encoding: encoding
length: length];
} @catch (id e) {
objc_release(self);
@throw e;
}
return self;
}
- (instancetype)initWithUTF16String: (const OFChar16 *)UTF16String
length: (size_t)length
byteOrder: (OFByteOrder)byteOrder
{
self = [super init];
@try {
_string = [[OFMutableString alloc]
initWithUTF16String: UTF16String
length: length
byteOrder: byteOrder];
} @catch (id e) {
objc_release(self);
@throw e;
}
return self;
}
- (instancetype)initWithUTF32String: (const OFChar32 *)UTF32String
length: (size_t)length
byteOrder: (OFByteOrder)byteOrder
{
self = [super init];
@try {
_string = [[OFMutableString alloc]
initWithUTF32String: UTF32String
length: length
byteOrder: byteOrder];
} @catch (id e) {
objc_release(self);
@throw e;
}
return self;
}
- (instancetype)initWithFormat: (OFConstantString *)format
arguments: (va_list)arguments
{
self = [super init];
@try {
_string = [[OFMutableString alloc] initWithFormat: format
arguments: arguments];
} @catch (id e) {
objc_release(self);
@throw e;
}
return self;
}
- (void)dealloc
{
objc_release(_string);
[super dealloc];
}
- (OFUnichar)characterAtIndex: (size_t)idx
{
return [_string characterAtIndex: idx];
}
- (size_t)length
{
return _string.length;
}
- (void)replaceCharactersInRange: (OFRange)range
withString: (OFString *)string
{
[_string replaceCharactersInRange: range withString: string];
}
@end
|