aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMPathTest.m
blob: dff1f02fd22a2c3f7b0455c406a7c078bd8c08f7 (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
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
//
//  GTMPathTest.m
//
//  Copyright 2007-2008 Google Inc.
//
//  Licensed under the Apache License, Version 2.0 (the "License"); you may not
//  use this file except in compliance with the License.  You may obtain a copy
//  of the License at
//
//  http://www.apache.org/licenses/LICENSE-2.0
//
//  Unless required by applicable law or agreed to in writing, software
//  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
//  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
//  License for the specific language governing permissions and limitations under
//  the License.
//

#import "GTMSenTestCase.h"
#import "GTMPath.h"
#import "GTMNSFileHandle+UniqueName.h"

#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
// NSFileManager has improved substantially in Leopard and beyond, so GTMPath
// is now deprecated.

@interface GTMPathTest : GTMTestCase {
 @private
  NSString *testDirectory_;
}
@end

@implementation GTMPathTest

- (void)setUp {
  NSFileManager *mgr = [NSFileManager defaultManager];
  testDirectory_
    = [[mgr gtm_createTemporaryDirectoryBasedOn:@"GTMPathTestXXXXXX"] retain];

  STAssertNotNil(testDirectory_, nil);
}

- (void)tearDown {
  // Make sure it's safe to remove this directory before nuking it.
  STAssertNotNil(testDirectory_, nil);
  STAssertNotEqualObjects(testDirectory_, @"/", nil);
#if GTM_MACOS_SDK && (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5)
  [[NSFileManager defaultManager] removeFileAtPath:testDirectory_ handler:nil];
#else
  [[NSFileManager defaultManager] removeItemAtPath:testDirectory_ error:NULL];
#endif
  [testDirectory_ release];
}

- (void)testBasicCreation {
  GTMPath *path = nil;

  path = [[[GTMPath alloc] init] autorelease];
  STAssertNil(path, nil);

  path = [GTMPath pathWithFullPath:@"/"];
  STAssertNotNil(path, nil);
  STAssertNil([path parent], nil);
  STAssertTrue([path isRoot], nil);
  STAssertTrue([path isDirectory], nil);
  STAssertEqualObjects([path name], @"/", nil);
  STAssertEqualObjects([path fullPath], @"/", nil);
}

- (void)testRecursiveInitialization {
  GTMPath *path = nil;

  path = [GTMPath pathWithFullPath:nil];
  STAssertNil(path, nil);

  path = [GTMPath pathWithFullPath:@""];
  STAssertNil(path, nil);

  path = [GTMPath pathWithFullPath:@"etc"];
  STAssertNil(path, nil);

  path = [GTMPath pathWithFullPath:@"/"];
  STAssertNotNil(path, nil);
  STAssertNil([path parent], nil);
  STAssertTrue([path isRoot], nil);
  STAssertTrue([path isDirectory], nil);
  STAssertEqualObjects([path name], @"/", nil);
  STAssertEqualObjects([path fullPath], @"/", nil);

  path = [GTMPath pathWithFullPath:@"/etc"];
  STAssertNotNil(path, nil);
  STAssertEqualObjects([path name], @"etc", nil);
  STAssertEqualObjects([path fullPath], @"/etc", nil);
  STAssertTrue([path isDirectory], nil);
  STAssertFalse([path isRoot], nil);
  STAssertNotNil([path parent], nil);
  STAssertTrue([[path parent] isRoot], nil);

  path = [GTMPath pathWithFullPath:@"/etc/passwd"];
  STAssertNotNil(path, nil);
  STAssertEqualObjects([path name], @"passwd", nil);
  STAssertEqualObjects([path fullPath], @"/etc/passwd", nil);
  STAssertFalse([path isDirectory], nil);
  STAssertFalse([path isRoot], nil);
  STAssertNotNil([path parent], nil);
  STAssertFalse([[path parent] isRoot], nil);
  STAssertTrue([[path parent] isDirectory], nil);
  STAssertTrue([[[path parent] parent] isRoot], nil);

  STAssertTrue([[path description] length] > 1, nil);
}

- (void)testCreationWithNonExistentPath {
  GTMPath *path = nil;

  path = [GTMPath pathWithFullPath:@" "];
  STAssertNil(path, nil);

  path = [GTMPath pathWithFullPath:@"/abcxyz"];
  STAssertNil(path, nil);

  path = [GTMPath pathWithFullPath:@"/etc/foo"];
  STAssertNil(path, nil);

  path = [GTMPath pathWithFullPath:@"/foo/bar/baz"];
  STAssertNil(path, nil);
}

- (void)testDirectoryCreation {
  GTMPath *tmp = [GTMPath pathWithFullPath:testDirectory_];
  GTMPath *path = nil;

  NSString *fooPath = [[tmp fullPath] stringByAppendingPathComponent:@"foo"];
  path = [GTMPath pathWithFullPath:fooPath];
  STAssertNil(path, nil);

  path = [tmp createDirectoryName:@"foo" mode:0555];
  STAssertNotNil(path, nil);
  STAssertEqualObjects([path name], @"foo", nil);
  // filePosixPermissions has odd return types in different SDKs, so we use
  // STAssertTrue to avoid the macros type checks from choking us.
  STAssertTrue([[path attributes] filePosixPermissions] == 0555,
               @"got %o", (int)[[path attributes] filePosixPermissions]);
  STAssertTrue([path isDirectory], nil);
  STAssertFalse([path isRoot], nil);

  // Trying to create a file where a dir already exists should fail
  path = [tmp createFileName:@"foo" mode:0555];
  STAssertNil(path, nil);

  // Calling create again should succeed
  path = [tmp createDirectoryName:@"foo" mode:0555];
  STAssertNotNil(path, nil);
  STAssertEqualObjects([path name], @"foo", nil);
  STAssertTrue([[path attributes] filePosixPermissions] == 0555,
               @"got %o", (int)[[path attributes] filePosixPermissions]);
  STAssertTrue([path isDirectory], nil);
  STAssertFalse([path isRoot], nil);

  GTMPath *foo = [GTMPath pathWithFullPath:fooPath];
  STAssertNotNil(foo, nil);
  STAssertEqualObjects([path name], @"foo", nil);
  STAssertTrue([[path attributes] filePosixPermissions] == 0555,
               @"got %o", (int)[[path attributes] filePosixPermissions]);
  STAssertTrue([path isDirectory], nil);
  STAssertFalse([path isRoot], nil);
}

- (void)testFileCreation {
  GTMPath *tmp = [GTMPath pathWithFullPath:testDirectory_];
  GTMPath *path = nil;

  NSString *fooPath = [[tmp fullPath] stringByAppendingPathComponent:@"foo"];
  path = [GTMPath pathWithFullPath:fooPath];
  STAssertNil(path, nil);

  path = [tmp createFileName:@"foo" mode:0555];
  STAssertNotNil(path, nil);
  STAssertEqualObjects([path name], @"foo", nil);
  STAssertTrue([[path attributes] filePosixPermissions] == 0555, nil);
  STAssertFalse([path isDirectory], nil);
  STAssertFalse([path isRoot], nil);

  // Trying to create a dir where a file already exists should fail.
  path = [tmp createDirectoryName:@"foo" mode:0555];
  STAssertNil(path, nil);

  // Calling create again should succeed
  path = [tmp createFileName:@"foo" mode:0555];
  STAssertNotNil(path, nil);
  STAssertEqualObjects([path name], @"foo", nil);
  STAssertTrue([[path attributes] filePosixPermissions] == 0555, nil);
  STAssertFalse([path isDirectory], nil);
  STAssertFalse([path isRoot], nil);

  GTMPath *foo = [GTMPath pathWithFullPath:fooPath];
  STAssertNotNil(foo, nil);
  STAssertEqualObjects([path name], @"foo", nil);
  STAssertTrue([[path attributes] filePosixPermissions] == 0555, nil);
  STAssertFalse([path isDirectory], nil);
  STAssertFalse([path isRoot], nil);

  // Make sure we can't create a file/directory rooted off of |foo|, since it's
  // not a directory.
  path = [foo createFileName:@"bar" mode:0555];
  STAssertNil(path, nil);
  path = [foo createDirectoryName:@"bar" mode:0555];
  STAssertNil(path, nil);
}

- (void)testHierarchyCreation {
  GTMPath *tmp = [GTMPath pathWithFullPath:testDirectory_];
  NSString *fooPath = [[tmp fullPath] stringByAppendingPathComponent:@"foo"];
  GTMPath *path = [GTMPath pathWithFullPath:fooPath];
  STAssertNil(path, nil);

  path = [[[tmp createDirectoryName:@"foo" mode:0755]
                  createDirectoryName:@"bar" mode:0756]
                    createDirectoryName:@"baz" mode:0757];
  STAssertNotNil(path, nil);

  // Check "baz"
  STAssertEqualObjects([path name], @"baz", nil);
  STAssertTrue([[path attributes] filePosixPermissions] == 0757, nil);

  // Check "bar"
  path = [path parent];
  STAssertEqualObjects([path name], @"bar", nil);
  STAssertTrue([[path attributes] filePosixPermissions] == 0756, nil);

  // Check "foo"
  path = [path parent];
  STAssertEqualObjects([path name], @"foo", nil);
  STAssertTrue([[path attributes] filePosixPermissions] == 0755, nil);
}

@end

#endif //  MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5