mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
83 lines
2.7 KiB
Objective-C
83 lines
2.7 KiB
Objective-C
#import "Testing.h"
|
|
#import <Foundation/NSAutoreleasePool.h>
|
|
#import <Foundation/NSPathUtilities.h>
|
|
#import <Foundation/NSString.h>
|
|
|
|
int main()
|
|
{
|
|
START_SET("tilde")
|
|
NSString *home = NSHomeDirectory();
|
|
NSString *tmp;
|
|
|
|
PASS_EQUAL([home stringByAbbreviatingWithTildeInPath], @"~",
|
|
"home directory becomes tilde");
|
|
|
|
tmp = [home stringByAppendingPathComponent: @"Documents"];
|
|
PASS_EQUAL([tmp stringByAbbreviatingWithTildeInPath], @"~/Documents",
|
|
"the Documents subdirectory becomes ~/Documents");
|
|
|
|
tmp = [home stringByAppendingString: @"/Documents"];
|
|
PASS_EQUAL([tmp stringByAbbreviatingWithTildeInPath], @"~/Documents",
|
|
"trailing slash removed");
|
|
|
|
tmp = [home stringByAppendingString: @"//Documents///"];
|
|
PASS_EQUAL([tmp stringByAbbreviatingWithTildeInPath], @"~/Documents",
|
|
"multiple slashes removed");
|
|
|
|
tmp = [home stringByAppendingString: @"/Documents//.."];
|
|
PASS_EQUAL([tmp stringByAbbreviatingWithTildeInPath], @"~/Documents/..",
|
|
"upper directory reference retained");
|
|
|
|
tmp = [home stringByAppendingString: @"/Documents/./.."];
|
|
PASS_EQUAL([tmp stringByAbbreviatingWithTildeInPath], @"~/Documents/./..",
|
|
"dot directory reference retained");
|
|
|
|
#if defined(_WIN32)
|
|
SKIP("multiple slashes can't be removed on Windows")
|
|
#else
|
|
/* This test can't work on windows, because the home directory of a
|
|
* user doesn't start with a slash... don't run it on _WIN32
|
|
*/
|
|
tmp = [NSString stringWithFormat: @"////%@//Documents///", home];
|
|
PASS_EQUAL([tmp stringByAbbreviatingWithTildeInPath], @"~/Documents",
|
|
"multiple slashes removed");
|
|
#endif
|
|
|
|
PASS_EQUAL([@"//////Documents///" stringByAbbreviatingWithTildeInPath],
|
|
@"/Documents",
|
|
"multiple slashes removed without tilde replacement");
|
|
|
|
PASS_EQUAL([@".//////Documents///" stringByAbbreviatingWithTildeInPath],
|
|
@"./Documents",
|
|
"multiple slashes removed without tilde replacement");
|
|
|
|
END_SET("tilde")
|
|
|
|
START_SET("tilde abbreviation for other home")
|
|
|
|
#if defined(_WIN32)
|
|
SKIP("tilde abbreviation test not implemented on Windows")
|
|
#else
|
|
NSString *home = NSHomeDirectory();
|
|
NSString *tmp;
|
|
/* The idea here is to use a home directory for a user other than the
|
|
* current one. We pick root as a user which will exist on most systems.
|
|
* If the current user is root then this will not work, so we skip the
|
|
* test in that case.
|
|
*/
|
|
tmp = NSHomeDirectoryForUser(@"root");
|
|
if (0 == [tmp length])
|
|
{
|
|
SKIP("can't determine root's home directory for tilde test")
|
|
}
|
|
if (YES == [tmp isEqual: home])
|
|
{
|
|
SKIP("home directory of current user is root's home")
|
|
}
|
|
PASS_EQUAL([tmp stringByAbbreviatingWithTildeInPath], tmp,
|
|
"tilde does nothing for root's home");
|
|
#endif
|
|
|
|
END_SET("tilde abbreviation for other home")
|
|
return 0;
|
|
}
|