diff --git a/CGDWebServer/GCDWebServer.h b/CGDWebServer/GCDWebServer.h
index 372e54d..d330ad3 100644
--- a/CGDWebServer/GCDWebServer.h
+++ b/CGDWebServer/GCDWebServer.h
@@ -85,6 +85,8 @@ NSDate* GCDWebServerParseISO8601(NSString* string);
#if !TARGET_OS_IPHONE
@property(nonatomic, getter=isRecordingEnabled) BOOL recordingEnabled; // Creates files in the current directory containing the raw data for all requests and responses (directory most NOT contain prior recordings)
- (BOOL)runWithPort:(NSUInteger)port; // Starts then automatically stops on SIGINT i.e. Ctrl-C (use on main thread only)
+#endif
+#ifdef __GCDWEBSERVER_ENABLE_TESTING__
- (NSInteger)runTestsInDirectory:(NSString*)path withPort:(NSUInteger)port; // Returns number of failed tests or -1 if server failed to start
#endif
@end
diff --git a/CGDWebServer/GCDWebServer.m b/CGDWebServer/GCDWebServer.m
index c156c77..88ab6c7 100644
--- a/CGDWebServer/GCDWebServer.m
+++ b/CGDWebServer/GCDWebServer.m
@@ -622,45 +622,56 @@ static void _NetServiceClientCallBack(CFNetServiceRef service, CFStreamError* er
return success;
}
-static CFHTTPMessageRef _CreateHTTPMessageFromFileDump(NSString* path, BOOL isRequest) {
- NSData* data = [NSData dataWithContentsOfFile:path];
- if (data) {
- CFHTTPMessageRef message = CFHTTPMessageCreateEmpty(kCFAllocatorDefault, isRequest);
- if (CFHTTPMessageAppendBytes(message, data.bytes, data.length)) {
- return message;
- }
- CFRelease(message);
+#endif
+
+#ifdef __GCDWEBSERVER_ENABLE_TESTING__
+
+static CFHTTPMessageRef _CreateHTTPMessageFromData(NSData* data, BOOL isRequest) {
+ CFHTTPMessageRef message = CFHTTPMessageCreateEmpty(kCFAllocatorDefault, isRequest);
+ if (CFHTTPMessageAppendBytes(message, data.bytes, data.length)) {
+ return message;
}
+ CFRelease(message);
return NULL;
}
-static CFHTTPMessageRef _CreateHTTPMessageFromHTTPRequestResponse(CFHTTPMessageRef request) {
+static CFHTTPMessageRef _CreateHTTPMessageFromPerformingRequest(NSData* inData, NSUInteger port) {
CFHTTPMessageRef response = NULL;
- CFReadStreamRef stream = CFReadStreamCreateForHTTPRequest(kCFAllocatorDefault, request);
- if (CFReadStreamOpen(stream)) {
- CFMutableDataRef data = CFDataCreateMutable(kCFAllocatorDefault, 0);
- CFDataSetLength(data, 256 * 1024);
- CFIndex length = 0;
- while (1) {
- CFIndex result = CFReadStreamRead(stream, CFDataGetMutableBytePtr(data) + length, CFDataGetLength(data) - length);
- if (result <= 0) {
- break;
- }
- length += result;
- if (length >= CFDataGetLength(data)) {
- CFDataSetLength(data, 2 * CFDataGetLength(data));
+ int httpSocket = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
+ if (httpSocket > 0) {
+ struct sockaddr_in addr4;
+ bzero(&addr4, sizeof(addr4));
+ addr4.sin_len = sizeof(port);
+ addr4.sin_family = AF_INET;
+ addr4.sin_port = htons(8080);
+ addr4.sin_addr.s_addr = htonl(INADDR_ANY);
+ if (connect(httpSocket, (void*)&addr4, sizeof(addr4)) == 0) {
+ if (write(httpSocket, inData.bytes, inData.length) == (ssize_t)inData.length) {
+ NSMutableData* outData = [[NSMutableData alloc] initWithLength:(256 * 1024)];
+ NSUInteger length = 0;
+ while (1) {
+ ssize_t result = read(httpSocket, (char*)outData.mutableBytes + length, outData.length - length);
+ if (result < 0) {
+ length = NSNotFound;
+ break;
+ } else if (result == 0) {
+ break;
+ }
+ length += result;
+ if (length >= outData.length) {
+ outData.length = 2 * outData.length;
+ }
+ }
+ if (length != NSNotFound) {
+ outData.length = length;
+ response = _CreateHTTPMessageFromData(outData, NO);
+ } else {
+ DNOT_REACHED();
+ }
+ ARC_RELEASE(outData);
}
}
- if (CFReadStreamGetStatus(stream) == kCFStreamStatusAtEnd) {
- response = (CFHTTPMessageRef)CFReadStreamCopyProperty(stream, kCFStreamPropertyHTTPResponseHeader);
- if (response) {
- CFDataSetLength(data, length);
- CFHTTPMessageSetBody(response, data);
- }
- }
- CFRelease(data);
- CFReadStreamClose(stream);
- CFRelease(stream);
+ close(httpSocket);
}
return response;
}
@@ -675,6 +686,7 @@ static void _LogResult(NSString* format, ...) {
}
- (NSInteger)runTestsInDirectory:(NSString*)path withPort:(NSUInteger)port {
+ NSArray* ignoredHeaders = @[@"Date", @"Etag"]; // Dates are always different by definition and ETags depend on file system node IDs
NSInteger result = -1;
if ([self startWithPort:port bonjourName:nil]) {
@@ -687,72 +699,85 @@ static void _LogResult(NSString* format, ...) {
@autoreleasepool {
NSString* index = [[requestFile componentsSeparatedByString:@"-"] firstObject];
BOOL success = NO;
- CFHTTPMessageRef request = _CreateHTTPMessageFromFileDump([path stringByAppendingPathComponent:requestFile], YES);
- if (request) {
- _LogResult(@"[%i] %@ %@", (int)[index integerValue], ARC_BRIDGE_RELEASE(CFHTTPMessageCopyRequestMethod(request)), [ARC_BRIDGE_RELEASE(CFHTTPMessageCopyRequestURL(request)) path]);
- NSString* prefix = [index stringByAppendingString:@"-"];
- for (NSString* responseFile in files) {
- if ([responseFile hasPrefix:prefix] && [responseFile hasSuffix:@".response"]) {
- CFHTTPMessageRef expectedResponse = _CreateHTTPMessageFromFileDump([path stringByAppendingPathComponent:responseFile], NO);
- if (expectedResponse) {
- CFHTTPMessageRef actualResponse = _CreateHTTPMessageFromHTTPRequestResponse(request);
- if (actualResponse) {
- success = YES;
-
- CFIndex expectedStatusCode = CFHTTPMessageGetResponseStatusCode(expectedResponse);
- CFIndex actualStatusCode = CFHTTPMessageGetResponseStatusCode(actualResponse);
- if (actualStatusCode != expectedStatusCode) {
- _LogResult(@" Status code not matching:\n Expected: %i\n Actual: %i", (int)expectedStatusCode, (int)actualStatusCode);
- success = NO;
- }
-
- NSDictionary* expectedHeaders = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyAllHeaderFields(expectedResponse));
- NSDictionary* actualHeaders = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyAllHeaderFields(actualResponse));
- for (NSString* expectedHeader in expectedHeaders) {
- if ([expectedHeader isEqualToString:@"Date"]) {
- continue;
- }
- NSString* expectedValue = [expectedHeaders objectForKey:expectedHeader];
- NSString* actualValue = [actualHeaders objectForKey:expectedHeader];
- if (![actualValue isEqualToString:expectedValue]) {
- _LogResult(@" Header '%@' not matching:\n Expected: \"%@\"\n Actual: \"%@\"", expectedHeader, expectedValue, actualValue);
- success = NO;
- }
- }
- for (NSString* actualHeader in actualHeaders) {
- if (![expectedHeaders objectForKey:actualHeader]) {
- _LogResult(@" Header '%@' not matching:\n Expected: \"%@\"\n Actual: \"%@\"", actualHeader, nil, [actualHeaders objectForKey:actualHeader]);
- success = NO;
- }
- }
-
- NSData* expectedBody = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyBody(expectedResponse));
- NSData* actualBody = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyBody(actualResponse));
- if (![actualBody isEqualToData:expectedBody]) {
- _LogResult(@" Bodies not matching:\n Expected: %lu bytes\n Actual: %lu bytes", (unsigned long)expectedBody.length, (unsigned long)actualBody.length);
- success = NO;
-
- if (_IsTextContentType([expectedHeaders objectForKey:@"Content-Type"])) {
- NSString* expectedPath = [NSTemporaryDirectory() stringByAppendingPathComponent:[[[NSProcessInfo processInfo] globallyUniqueString] stringByAppendingPathExtension:@"txt"]];
- NSString* actualPath = [NSTemporaryDirectory() stringByAppendingPathComponent:[[[NSProcessInfo processInfo] globallyUniqueString] stringByAppendingPathExtension:@"txt"]];
- if ([expectedBody writeToFile:expectedPath atomically:YES] && [actualBody writeToFile:actualPath atomically:YES]) {
- NSTask* task = [[NSTask alloc] init];
- [task setLaunchPath:@"/usr/bin/opendiff"];
- [task setArguments:@[expectedPath, actualPath]];
- [task launch];
- ARC_RELEASE(task);
+ NSData* requestData = [NSData dataWithContentsOfFile:[path stringByAppendingPathComponent:requestFile]];
+ if (requestData) {
+ CFHTTPMessageRef request = _CreateHTTPMessageFromData(requestData, YES);
+ if (request) {
+ NSString* requestMethod = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyRequestMethod(request));
+ NSURL* requestURL = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyRequestURL(request));
+ _LogResult(@"[%i] %@ %@", (int)[index integerValue], requestMethod, requestURL.path);
+ NSString* prefix = [index stringByAppendingString:@"-"];
+ for (NSString* responseFile in files) {
+ if ([responseFile hasPrefix:prefix] && [responseFile hasSuffix:@".response"]) {
+ NSData* responseData = [NSData dataWithContentsOfFile:[path stringByAppendingPathComponent:responseFile]];
+ if (responseData) {
+ CFHTTPMessageRef expectedResponse = _CreateHTTPMessageFromData(responseData, NO);
+ if (expectedResponse) {
+ CFHTTPMessageRef actualResponse = _CreateHTTPMessageFromPerformingRequest(requestData, port);
+ if (actualResponse) {
+ success = YES;
+
+ CFIndex expectedStatusCode = CFHTTPMessageGetResponseStatusCode(expectedResponse);
+ CFIndex actualStatusCode = CFHTTPMessageGetResponseStatusCode(actualResponse);
+ if (actualStatusCode != expectedStatusCode) {
+ _LogResult(@" Status code not matching:\n Expected: %i\n Actual: %i", (int)expectedStatusCode, (int)actualStatusCode);
+ success = NO;
}
+
+ NSDictionary* expectedHeaders = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyAllHeaderFields(expectedResponse));
+ NSDictionary* actualHeaders = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyAllHeaderFields(actualResponse));
+ for (NSString* expectedHeader in expectedHeaders) {
+ if ([ignoredHeaders containsObject:expectedHeader]) {
+ continue;
+ }
+ NSString* expectedValue = [expectedHeaders objectForKey:expectedHeader];
+ NSString* actualValue = [actualHeaders objectForKey:expectedHeader];
+ if (![actualValue isEqualToString:expectedValue]) {
+ _LogResult(@" Header '%@' not matching:\n Expected: \"%@\"\n Actual: \"%@\"", expectedHeader, expectedValue, actualValue);
+ success = NO;
+ }
+ }
+ for (NSString* actualHeader in actualHeaders) {
+ if (![expectedHeaders objectForKey:actualHeader]) {
+ _LogResult(@" Header '%@' not matching:\n Expected: \"%@\"\n Actual: \"%@\"", actualHeader, nil, [actualHeaders objectForKey:actualHeader]);
+ success = NO;
+ }
+ }
+
+ NSData* expectedBody = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyBody(expectedResponse));
+ NSData* actualBody = ARC_BRIDGE_RELEASE(CFHTTPMessageCopyBody(actualResponse));
+ if (![actualBody isEqualToData:expectedBody]) {
+ _LogResult(@" Bodies not matching:\n Expected: %lu bytes\n Actual: %lu bytes", (unsigned long)expectedBody.length, (unsigned long)actualBody.length);
+ success = NO;
+#ifndef NDEBUG
+ if (_IsTextContentType([expectedHeaders objectForKey:@"Content-Type"])) {
+ NSString* expectedPath = [NSTemporaryDirectory() stringByAppendingPathComponent:[[[NSProcessInfo processInfo] globallyUniqueString] stringByAppendingPathExtension:@"txt"]];
+ NSString* actualPath = [NSTemporaryDirectory() stringByAppendingPathComponent:[[[NSProcessInfo processInfo] globallyUniqueString] stringByAppendingPathExtension:@"txt"]];
+ if ([expectedBody writeToFile:expectedPath atomically:YES] && [actualBody writeToFile:actualPath atomically:YES]) {
+ NSTask* task = [[NSTask alloc] init];
+ [task setLaunchPath:@"/usr/bin/opendiff"];
+ [task setArguments:@[expectedPath, actualPath]];
+ [task launch];
+ ARC_RELEASE(task);
+ }
+ }
+#endif
+ }
+
+ CFRelease(actualResponse);
}
+ CFRelease(expectedResponse);
}
-
- CFRelease(actualResponse);
+ } else {
+ DNOT_REACHED();
}
- CFRelease(expectedResponse);
+ break;
}
- break;
}
+ CFRelease(request);
}
- CFRelease(request);
+ } else {
+ DNOT_REACHED();
}
_LogResult(@"");
if (!success) {
diff --git a/CGDWebServer/GCDWebServerFileRequest.m b/CGDWebServer/GCDWebServerFileRequest.m
index 466d0e5..c7ab46f 100644
--- a/CGDWebServer/GCDWebServerFileRequest.m
+++ b/CGDWebServer/GCDWebServerFileRequest.m
@@ -78,6 +78,22 @@ static inline NSError* _MakePosixError(int code) {
*error = _MakePosixError(errno);
return NO;
}
+#ifdef __GCDWEBSERVER_ENABLE_TESTING__
+ NSString* creationDateHeader = [self.headers objectForKey:@"X-GCDWebServer-CreationDate"];
+ if (creationDateHeader) {
+ NSDate* date = GCDWebServerParseISO8601(creationDateHeader);
+ if (!date || ![[NSFileManager defaultManager] setAttributes:@{NSFileCreationDate: date} ofItemAtPath:_temporaryPath error:error]) {
+ return NO;
+ }
+ }
+ NSString* modifiedDateHeader = [self.headers objectForKey:@"X-GCDWebServer-ModifiedDate"];
+ if (modifiedDateHeader) {
+ NSDate* date = GCDWebServerParseRFC822(modifiedDateHeader);
+ if (!date || ![[NSFileManager defaultManager] setAttributes:@{NSFileModificationDate: date} ofItemAtPath:_temporaryPath error:error]) {
+ return NO;
+ }
+ }
+#endif
return YES;
}
diff --git a/GCDWebDAVServer/GCDWebDAVServer.m b/GCDWebDAVServer/GCDWebDAVServer.m
index a9af8ad..28c32b4 100644
--- a/GCDWebDAVServer/GCDWebDAVServer.m
+++ b/GCDWebDAVServer/GCDWebDAVServer.m
@@ -214,6 +214,15 @@ static inline BOOL _IsMacFinder(GCDWebServerRequest* request) {
if (![[NSFileManager defaultManager] createDirectoryAtPath:absolutePath withIntermediateDirectories:NO attributes:nil error:&error]) {
return [GCDWebServerErrorResponse responseWithServerError:kGCDWebServerHTTPStatusCode_InternalServerError underlyingError:error message:@"Failed creating directory \"%@\"", relativePath];
}
+#ifdef __GCDWEBSERVER_ENABLE_TESTING__
+ NSString* creationDateHeader = [request.headers objectForKey:@"X-GCDWebServer-CreationDate"];
+ if (creationDateHeader) {
+ NSDate* date = GCDWebServerParseISO8601(creationDateHeader);
+ if (!date || ![[NSFileManager defaultManager] setAttributes:@{NSFileCreationDate: date} ofItemAtPath:absolutePath error:&error]) {
+ return [GCDWebServerErrorResponse responseWithServerError:kGCDWebServerHTTPStatusCode_InternalServerError underlyingError:error message:@"Failed setting creation date for directory \"%@\"", relativePath];
+ }
+ }
+#endif
if ([_delegate respondsToSelector:@selector(davServer:didCreateDirectoryAtPath:)]) {
dispatch_async(dispatch_get_main_queue(), ^{
@@ -519,6 +528,12 @@ static inline xmlNodePtr _XMLChildWithName(xmlNodePtr child, const xmlChar* name
return [GCDWebServerErrorResponse responseWithClientError:kGCDWebServerHTTPStatusCode_Forbidden message:@"Locking item name \"%@\" is not allowed", itemName];
}
+#ifdef __GCDWEBSERVER_ENABLE_TESTING__
+ NSString* lockTokenHeader = [request.headers objectForKey:@"X-GCDWebServer-LockToken"];
+ if (lockTokenHeader) {
+ token = lockTokenHeader;
+ }
+#endif
if (!token) {
CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);
CFStringRef string = CFUUIDCreateString(kCFAllocatorDefault, uuid);
diff --git a/GCDWebServer.xcodeproj/project.pbxproj b/GCDWebServer.xcodeproj/project.pbxproj
index 2cb44a8..b3ea72a 100644
--- a/GCDWebServer.xcodeproj/project.pbxproj
+++ b/GCDWebServer.xcodeproj/project.pbxproj
@@ -461,6 +461,7 @@
buildSettings = {
CLANG_ENABLE_OBJC_ARC = YES;
GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = __GCDWEBSERVER_ENABLE_TESTING__;
HEADER_SEARCH_PATHS = "$(SDKROOT)/usr/include/libxml2";
ONLY_ACTIVE_ARCH = YES;
WARNING_CFLAGS = (
@@ -488,6 +489,7 @@
buildSettings = {
CLANG_ENABLE_OBJC_ARC = YES;
GCC_PREPROCESSOR_DEFINITIONS = NDEBUG;
+ GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = __GCDWEBSERVER_ENABLE_TESTING__;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
HEADER_SEARCH_PATHS = "$(SDKROOT)/usr/include/libxml2";
WARNING_CFLAGS = "-Wall";
diff --git a/Run-Tests.sh b/Run-Tests.sh
index 93eea48..35e0600 100755
--- a/Run-Tests.sh
+++ b/Run-Tests.sh
@@ -2,18 +2,20 @@
TARGET="GCDWebServer (Mac)"
CONFIGURATION="Release"
-PAYLOAD_ZIP="Tests/Payload.zip"
-PAYLOAD_DIR="/tmp/payload"
MRC_BUILD_DIR="/tmp/GCDWebServer-MRC"
MRC_PRODUCT="$MRC_BUILD_DIR/$CONFIGURATION/GCDWebServer"
ARC_BUILD_DIR="/tmp/GCDWebServer-ARC"
ARC_PRODUCT="$ARC_BUILD_DIR/$CONFIGURATION/GCDWebServer"
+PAYLOAD_ZIP="Tests/Payload.zip"
+PAYLOAD_DIR="/tmp/GCDWebServer"
+
function runTests {
rm -rf "$PAYLOAD_DIR"
ditto -x -k "$PAYLOAD_ZIP" "$PAYLOAD_DIR"
- logLevel=2 $1 -root "$PAYLOAD_DIR" -tests "$2"
+ find "$PAYLOAD_DIR" -type d -exec SetFile -d "1/1/2014" -m "1/1/2014" '{}' \; # ZIP archives do not preserve directories dates
+ logLevel=2 $1 -mode "$2" -root "$PAYLOAD_DIR/Payload" -tests "$3"
}
# Build in manual memory management mode
@@ -25,8 +27,14 @@ rm -rf "ARC_BUILD_DIR"
xcodebuild -target "$TARGET" -configuration "$CONFIGURATION" build "SYMROOT=$ARC_BUILD_DIR" "CLANG_ENABLE_OBJC_ARC=YES" > /dev/null
# Run tests
-runTests $MRC_PRODUCT "WebServer"
-runTests $ARC_PRODUCT "WebServer"
+runTests $MRC_PRODUCT "webServer" "Tests/WebServer"
+runTests $ARC_PRODUCT "webServer" "Tests/WebServer"
+runTests $MRC_PRODUCT "webDAV" "Tests/WebDAV-Transmit"
+runTests $ARC_PRODUCT "webDAV" "Tests/WebDAV-Transmit"
+runTests $MRC_PRODUCT "webDAV" "Tests/WebDAV-Cyberduck"
+runTests $ARC_PRODUCT "webDAV" "Tests/WebDAV-Cyberduck"
+runTests $MRC_PRODUCT "webDAV" "Tests/WebDAV-Finder"
+runTests $ARC_PRODUCT "webDAV" "Tests/WebDAV-Finder"
# Done
echo "\nAll tests completed successfully!"
diff --git a/Tests/WebDAV-Cyberduck/001-200.response b/Tests/WebDAV-Cyberduck/001-200.response
new file mode 100755
index 0000000..51c9c76
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/001-200.response
@@ -0,0 +1,6 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:42 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/001-HEAD.request b/Tests/WebDAV-Cyberduck/001-HEAD.request
new file mode 100755
index 0000000..dba741b
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/001-HEAD.request
@@ -0,0 +1,6 @@
+HEAD / HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/002-207.response b/Tests/WebDAV-Cyberduck/002-207.response
new file mode 100755
index 0000000..5d50ab0
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/002-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1106
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:42 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/002-PROPFIND.request b/Tests/WebDAV-Cyberduck/002-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/002-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/003-207.response b/Tests/WebDAV-Cyberduck/003-207.response
new file mode 100755
index 0000000..de91e7b7
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/003-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 700
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:47 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/003-PROPFIND.request b/Tests/WebDAV-Cyberduck/003-PROPFIND.request
new file mode 100755
index 0000000..932d41d
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/003-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/004-207.response b/Tests/WebDAV-Cyberduck/004-207.response
new file mode 100755
index 0000000..f618140
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/004-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 998
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:47 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/capable_green_ipad_l.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+/images/hero_mba_11.jpg2014-04-10T21:51:14+00:00Thu, 10 Apr 2014 21:51:14 GMT106799HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/004-PROPFIND.request b/Tests/WebDAV-Cyberduck/004-PROPFIND.request
new file mode 100755
index 0000000..56d4e72
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/004-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND /images/ HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/005-200.response b/Tests/WebDAV-Cyberduck/005-200.response
new file mode 100755
index 0000000..4553d7d
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/005-200.response
@@ -0,0 +1,6 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:51 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/005-HEAD.request b/Tests/WebDAV-Cyberduck/005-HEAD.request
new file mode 100755
index 0000000..dba741b
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/005-HEAD.request
@@ -0,0 +1,6 @@
+HEAD / HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/006-404.response b/Tests/WebDAV-Cyberduck/006-404.response
new file mode 100755
index 0000000..ab0e086
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/006-404.response
@@ -0,0 +1,7 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:51 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/006-HEAD.request b/Tests/WebDAV-Cyberduck/006-HEAD.request
new file mode 100755
index 0000000..9631e6c
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/006-HEAD.request
@@ -0,0 +1,6 @@
+HEAD /Copy%20%284%3A11%3A14%2C%209%3A52%20PM%29.txt HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/007-201.response b/Tests/WebDAV-Cyberduck/007-201.response
new file mode 100755
index 0000000..9e0396e
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/007-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:51 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/007-COPY.request b/Tests/WebDAV-Cyberduck/007-COPY.request
new file mode 100755
index 0000000..7eb04c0
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/007-COPY.request
@@ -0,0 +1,8 @@
+COPY /Copy.txt HTTP/1.1
+Destination: http://localhost:8080/Copy%20%284%3A11%3A14%2C%209%3A52%20PM%29.txt
+Overwrite: T
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/008-207.response b/Tests/WebDAV-Cyberduck/008-207.response
new file mode 100755
index 0000000..0c5e434
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/008-207.response
@@ -0,0 +1,15 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1448
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:51 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy%20(4:11:14,%209:52%20PM).txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/008-PROPFIND.request b/Tests/WebDAV-Cyberduck/008-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/008-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/009-200.response b/Tests/WebDAV-Cyberduck/009-200.response
new file mode 100755
index 0000000..1ed7386
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/009-200.response
@@ -0,0 +1,6 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:52:59 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/009-HEAD.request b/Tests/WebDAV-Cyberduck/009-HEAD.request
new file mode 100755
index 0000000..dba741b
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/009-HEAD.request
@@ -0,0 +1,6 @@
+HEAD / HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/010-200.response b/Tests/WebDAV-Cyberduck/010-200.response
new file mode 100755
index 0000000..944e0d5
Binary files /dev/null and b/Tests/WebDAV-Cyberduck/010-200.response differ
diff --git a/Tests/WebDAV-Cyberduck/010-GET.request b/Tests/WebDAV-Cyberduck/010-GET.request
new file mode 100755
index 0000000..e3b80fa
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/010-GET.request
@@ -0,0 +1,6 @@
+GET /images/capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/011-207.response b/Tests/WebDAV-Cyberduck/011-207.response
new file mode 100755
index 0000000..a56a724
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/011-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 998
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:07 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/capable_green_ipad_l.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+/images/hero_mba_11.jpg2014-04-10T21:51:14+00:00Thu, 10 Apr 2014 21:51:14 GMT106799HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/011-PROPFIND.request b/Tests/WebDAV-Cyberduck/011-PROPFIND.request
new file mode 100755
index 0000000..56d4e72
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/011-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND /images/ HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/012-204.response b/Tests/WebDAV-Cyberduck/012-204.response
new file mode 100755
index 0000000..223f472
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/012-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:07 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/012-DELETE.request b/Tests/WebDAV-Cyberduck/012-DELETE.request
new file mode 100755
index 0000000..9efec78
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/012-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /images/capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/013-204.response b/Tests/WebDAV-Cyberduck/013-204.response
new file mode 100755
index 0000000..223f472
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/013-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:07 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/013-DELETE.request b/Tests/WebDAV-Cyberduck/013-DELETE.request
new file mode 100755
index 0000000..4f5131f
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/013-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /images/hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/014-204.response b/Tests/WebDAV-Cyberduck/014-204.response
new file mode 100755
index 0000000..223f472
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/014-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:07 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/014-DELETE.request b/Tests/WebDAV-Cyberduck/014-DELETE.request
new file mode 100755
index 0000000..1353820
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/014-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /images/ HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/015-207.response b/Tests/WebDAV-Cyberduck/015-207.response
new file mode 100755
index 0000000..00263c8
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/015-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1214
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:07 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy%20(4:11:14,%209:52%20PM).txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/015-PROPFIND.request b/Tests/WebDAV-Cyberduck/015-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/015-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/016-201.response b/Tests/WebDAV-Cyberduck/016-201.response
new file mode 100755
index 0000000..eb039d5
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/016-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:13 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/016-MOVE.request b/Tests/WebDAV-Cyberduck/016-MOVE.request
new file mode 100755
index 0000000..63d2c39
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/016-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /Copy%20%284%3A11%3A14%2C%209%3A52%20PM%29.txt HTTP/1.1
+Destination: http://localhost:8080/Test.txt
+Overwrite: T
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/017-207.response b/Tests/WebDAV-Cyberduck/017-207.response
new file mode 100755
index 0000000..df39bff
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/017-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1189
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:13 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Test.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/017-PROPFIND.request b/Tests/WebDAV-Cyberduck/017-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/017-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/018-201.response b/Tests/WebDAV-Cyberduck/018-201.response
new file mode 100755
index 0000000..5ce2907
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/018-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:14 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/018-MOVE.request b/Tests/WebDAV-Cyberduck/018-MOVE.request
new file mode 100755
index 0000000..78015b7
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/018-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /Test.txt HTTP/1.1
+Destination: http://localhost:8080/PDF%20Reports/Test.txt
+Overwrite: T
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/019-207.response b/Tests/WebDAV-Cyberduck/019-207.response
new file mode 100755
index 0000000..9438079
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/019-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 872
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:14 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/019-PROPFIND.request b/Tests/WebDAV-Cyberduck/019-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/019-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/020-207.response b/Tests/WebDAV-Cyberduck/020-207.response
new file mode 100755
index 0000000..07f4464
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/020-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1031
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:14 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/PDF%20Reports/Test.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/020-PROPFIND.request b/Tests/WebDAV-Cyberduck/020-PROPFIND.request
new file mode 100755
index 0000000..932d41d
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/020-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/021-200.response b/Tests/WebDAV-Cyberduck/021-200.response
new file mode 100755
index 0000000..843b6c5
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/021-200.response
@@ -0,0 +1,6 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:22 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/021-HEAD.request b/Tests/WebDAV-Cyberduck/021-HEAD.request
new file mode 100755
index 0000000..dba741b
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/021-HEAD.request
@@ -0,0 +1,6 @@
+HEAD / HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/022-404.response b/Tests/WebDAV-Cyberduck/022-404.response
new file mode 100755
index 0000000..3757c13
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/022-404.response
@@ -0,0 +1,7 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:22 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/022-HEAD.request b/Tests/WebDAV-Cyberduck/022-HEAD.request
new file mode 100755
index 0000000..1ab6cee
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/022-HEAD.request
@@ -0,0 +1,6 @@
+HEAD /Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/023-201.response b/Tests/WebDAV-Cyberduck/023-201.response
new file mode 100755
index 0000000..ce4db7a
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/023-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:22 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/023-PUT.request b/Tests/WebDAV-Cyberduck/023-PUT.request
new file mode 100755
index 0000000..b94f128
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/023-PUT.request
@@ -0,0 +1,11 @@
+PUT /Test%20File.txt HTTP/1.1
+Content-Length: 21
+Content-Type: text/plain
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+X-GCDWebServer-CreationDate: 2014-04-12T04:53:22+00:00
+X-GCDWebServer-ModifiedDate: Sat, 12 Apr 2014 04:53:22 GMT
+
+Nothing to see here!
diff --git a/Tests/WebDAV-Cyberduck/024-207.response b/Tests/WebDAV-Cyberduck/024-207.response
new file mode 100755
index 0000000..63d3aba
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/024-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1195
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:22 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Test%20File.txt2014-04-12T04:53:22+00:00Sat, 12 Apr 2014 04:53:22 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/024-PROPFIND.request b/Tests/WebDAV-Cyberduck/024-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/024-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/025-201.response b/Tests/WebDAV-Cyberduck/025-201.response
new file mode 100755
index 0000000..e44e7e8
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/025-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:35 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/025-MKCOL.request b/Tests/WebDAV-Cyberduck/025-MKCOL.request
new file mode 100755
index 0000000..a731b57
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/025-MKCOL.request
@@ -0,0 +1,8 @@
+MKCOL /Text%20Files/ HTTP/1.1
+Content-Length: 0
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+X-GCDWebServer-CreationDate: 2014-04-12T04:53:35+00:00
+
diff --git a/Tests/WebDAV-Cyberduck/026-207.response b/Tests/WebDAV-Cyberduck/026-207.response
new file mode 100755
index 0000000..9caeb78
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/026-207.response
@@ -0,0 +1,15 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1435
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:35 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Test%20File.txt2014-04-12T04:53:22+00:00Sat, 12 Apr 2014 04:53:22 GMT21HTTP/1.1 200 OK
+/Text%20Files2014-04-12T04:53:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/026-PROPFIND.request b/Tests/WebDAV-Cyberduck/026-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/026-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/027-207.response b/Tests/WebDAV-Cyberduck/027-207.response
new file mode 100755
index 0000000..306ad7e
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/027-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 327
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:36 GMT
+
+
+/Text%20Files/2014-04-12T04:53:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/027-PROPFIND.request b/Tests/WebDAV-Cyberduck/027-PROPFIND.request
new file mode 100755
index 0000000..760fe73
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/027-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND /Text%20Files/ HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/028-201.response b/Tests/WebDAV-Cyberduck/028-201.response
new file mode 100755
index 0000000..444c34d
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/028-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:39 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/028-MOVE.request b/Tests/WebDAV-Cyberduck/028-MOVE.request
new file mode 100755
index 0000000..70cae94
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/028-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /Test%20File.txt HTTP/1.1
+Destination: http://localhost:8080/Text%20Files/Test%20File.txt
+Overwrite: T
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/029-201.response b/Tests/WebDAV-Cyberduck/029-201.response
new file mode 100755
index 0000000..444c34d
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/029-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:39 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/029-MOVE.request b/Tests/WebDAV-Cyberduck/029-MOVE.request
new file mode 100755
index 0000000..5f51f8e
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/029-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /Copy.txt HTTP/1.1
+Destination: http://localhost:8080/Text%20Files/Copy.txt
+Overwrite: T
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/030-207.response b/Tests/WebDAV-Cyberduck/030-207.response
new file mode 100755
index 0000000..263453e
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/030-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 795
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:39 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Text%20Files2014-04-12T04:53:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/030-PROPFIND.request b/Tests/WebDAV-Cyberduck/030-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/030-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/031-207.response b/Tests/WebDAV-Cyberduck/031-207.response
new file mode 100755
index 0000000..f61942b
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/031-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 993
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:39 GMT
+
+
+/Text%20Files/2014-04-12T04:53:35+00:00HTTP/1.1 200 OK
+/Text%20Files/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/Text%20Files/Test%20File.txt2014-04-12T04:53:22+00:00Sat, 12 Apr 2014 04:53:22 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/031-PROPFIND.request b/Tests/WebDAV-Cyberduck/031-PROPFIND.request
new file mode 100755
index 0000000..760fe73
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/031-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND /Text%20Files/ HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/032-207.response b/Tests/WebDAV-Cyberduck/032-207.response
new file mode 100755
index 0000000..3446e51
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/032-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1031
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:44 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/PDF%20Reports/Test.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/032-PROPFIND.request b/Tests/WebDAV-Cyberduck/032-PROPFIND.request
new file mode 100755
index 0000000..932d41d
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/032-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/033-204.response b/Tests/WebDAV-Cyberduck/033-204.response
new file mode 100755
index 0000000..224ed16
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/033-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:44 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/033-DELETE.request b/Tests/WebDAV-Cyberduck/033-DELETE.request
new file mode 100755
index 0000000..a0c3918
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/033-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/034-204.response b/Tests/WebDAV-Cyberduck/034-204.response
new file mode 100755
index 0000000..224ed16
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/034-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:44 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/034-DELETE.request b/Tests/WebDAV-Cyberduck/034-DELETE.request
new file mode 100755
index 0000000..4f402b1
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/034-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /PDF%20Reports/Test.txt HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/035-204.response b/Tests/WebDAV-Cyberduck/035-204.response
new file mode 100755
index 0000000..224ed16
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/035-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:44 GMT
+
diff --git a/Tests/WebDAV-Cyberduck/035-DELETE.request b/Tests/WebDAV-Cyberduck/035-DELETE.request
new file mode 100755
index 0000000..39479f4
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/035-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
diff --git a/Tests/WebDAV-Cyberduck/036-207.response b/Tests/WebDAV-Cyberduck/036-207.response
new file mode 100755
index 0000000..d513c3a
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/036-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 554
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:53:44 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Text%20Files2014-04-12T04:53:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Cyberduck/036-PROPFIND.request b/Tests/WebDAV-Cyberduck/036-PROPFIND.request
new file mode 100755
index 0000000..b1b74bc
--- /dev/null
+++ b/Tests/WebDAV-Cyberduck/036-PROPFIND.request
@@ -0,0 +1,10 @@
+PROPFIND / HTTP/1.1
+Depth: 1
+Content-Type: text/xml; charset=utf-8
+Content-Length: 99
+Host: localhost:8080
+Connection: Keep-Alive
+User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64)
+Accept-Encoding: gzip,deflate
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/001-200.response b/Tests/WebDAV-Finder/001-200.response
new file mode 100755
index 0000000..93df092
--- /dev/null
+++ b/Tests/WebDAV-Finder/001-200.response
@@ -0,0 +1,7 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+DAV: 1, 2
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
diff --git a/Tests/WebDAV-Finder/001-OPTIONS.request b/Tests/WebDAV-Finder/001-OPTIONS.request
new file mode 100755
index 0000000..76685b2
--- /dev/null
+++ b/Tests/WebDAV-Finder/001-OPTIONS.request
@@ -0,0 +1,7 @@
+OPTIONS / HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: close
+User-Agent: WebDAVLib/1.3
+
diff --git a/Tests/WebDAV-Finder/002-200.response b/Tests/WebDAV-Finder/002-200.response
new file mode 100755
index 0000000..93df092
--- /dev/null
+++ b/Tests/WebDAV-Finder/002-200.response
@@ -0,0 +1,7 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+DAV: 1, 2
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
diff --git a/Tests/WebDAV-Finder/002-OPTIONS.request b/Tests/WebDAV-Finder/002-OPTIONS.request
new file mode 100755
index 0000000..76685b2
--- /dev/null
+++ b/Tests/WebDAV-Finder/002-OPTIONS.request
@@ -0,0 +1,7 @@
+OPTIONS / HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: close
+User-Agent: WebDAVLib/1.3
+
diff --git a/Tests/WebDAV-Finder/003-200.response b/Tests/WebDAV-Finder/003-200.response
new file mode 100755
index 0000000..93df092
--- /dev/null
+++ b/Tests/WebDAV-Finder/003-200.response
@@ -0,0 +1,7 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+DAV: 1, 2
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
diff --git a/Tests/WebDAV-Finder/003-OPTIONS.request b/Tests/WebDAV-Finder/003-OPTIONS.request
new file mode 100755
index 0000000..aa5621f
--- /dev/null
+++ b/Tests/WebDAV-Finder/003-OPTIONS.request
@@ -0,0 +1,7 @@
+OPTIONS / HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/004-207.response b/Tests/WebDAV-Finder/004-207.response
new file mode 100755
index 0000000..2929d19
--- /dev/null
+++ b/Tests/WebDAV-Finder/004-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/004-PROPFIND.request b/Tests/WebDAV-Finder/004-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/004-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/005-207.response b/Tests/WebDAV-Finder/005-207.response
new file mode 100755
index 0000000..21f9bd3
--- /dev/null
+++ b/Tests/WebDAV-Finder/005-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 208
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/005-PROPFIND.request b/Tests/WebDAV-Finder/005-PROPFIND.request
new file mode 100755
index 0000000..22a5da6
--- /dev/null
+++ b/Tests/WebDAV-Finder/005-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 175
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/006-207.response b/Tests/WebDAV-Finder/006-207.response
new file mode 100755
index 0000000..2929d19
--- /dev/null
+++ b/Tests/WebDAV-Finder/006-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/006-PROPFIND.request b/Tests/WebDAV-Finder/006-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/006-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/007-207.response b/Tests/WebDAV-Finder/007-207.response
new file mode 100755
index 0000000..2929d19
--- /dev/null
+++ b/Tests/WebDAV-Finder/007-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/007-PROPFIND.request b/Tests/WebDAV-Finder/007-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/007-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/008-207.response b/Tests/WebDAV-Finder/008-207.response
new file mode 100755
index 0000000..2929d19
--- /dev/null
+++ b/Tests/WebDAV-Finder/008-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/008-PROPFIND.request b/Tests/WebDAV-Finder/008-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/008-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/009-207.response b/Tests/WebDAV-Finder/009-207.response
new file mode 100755
index 0000000..2929d19
--- /dev/null
+++ b/Tests/WebDAV-Finder/009-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/009-PROPFIND.request b/Tests/WebDAV-Finder/009-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/009-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/010-207.response b/Tests/WebDAV-Finder/010-207.response
new file mode 100755
index 0000000..2929d19
--- /dev/null
+++ b/Tests/WebDAV-Finder/010-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/010-PROPFIND.request b/Tests/WebDAV-Finder/010-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/010-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/011-207.response b/Tests/WebDAV-Finder/011-207.response
new file mode 100755
index 0000000..2929d19
--- /dev/null
+++ b/Tests/WebDAV-Finder/011-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/011-PROPFIND.request b/Tests/WebDAV-Finder/011-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/011-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/012-404.response b/Tests/WebDAV-Finder/012-404.response
new file mode 100755
index 0000000..9cd3d9e
--- /dev/null
+++ b/Tests/WebDAV-Finder/012-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/012-PROPFIND.request b/Tests/WebDAV-Finder/012-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/012-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/013-404.response b/Tests/WebDAV-Finder/013-404.response
new file mode 100755
index 0000000..cb84a14
--- /dev/null
+++ b/Tests/WebDAV-Finder/013-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 193
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/Backups.backupdb" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/013-PROPFIND.request b/Tests/WebDAV-Finder/013-PROPFIND.request
new file mode 100755
index 0000000..a5942bb
--- /dev/null
+++ b/Tests/WebDAV-Finder/013-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backups.backupdb HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/014-404.response b/Tests/WebDAV-Finder/014-404.response
new file mode 100755
index 0000000..73ac7c5
--- /dev/null
+++ b/Tests/WebDAV-Finder/014-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 184
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/.hidden" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/014-PROPFIND.request b/Tests/WebDAV-Finder/014-PROPFIND.request
new file mode 100755
index 0000000..777eab9
--- /dev/null
+++ b/Tests/WebDAV-Finder/014-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.hidden HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/015-404.response b/Tests/WebDAV-Finder/015-404.response
new file mode 100755
index 0000000..555266c
--- /dev/null
+++ b/Tests/WebDAV-Finder/015-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 188
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/mach_kernel" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/015-PROPFIND.request b/Tests/WebDAV-Finder/015-PROPFIND.request
new file mode 100755
index 0000000..c1279b8
--- /dev/null
+++ b/Tests/WebDAV-Finder/015-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /mach_kernel HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/016-404.response b/Tests/WebDAV-Finder/016-404.response
new file mode 100755
index 0000000..19917b2
--- /dev/null
+++ b/Tests/WebDAV-Finder/016-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/.Spotlight-V100" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/016-PROPFIND.request b/Tests/WebDAV-Finder/016-PROPFIND.request
new file mode 100755
index 0000000..e4fa6f6
--- /dev/null
+++ b/Tests/WebDAV-Finder/016-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.Spotlight-V100 HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/017-404.response b/Tests/WebDAV-Finder/017-404.response
new file mode 100755
index 0000000..27c5901
--- /dev/null
+++ b/Tests/WebDAV-Finder/017-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 198
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/.metadata_never_index" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/017-PROPFIND.request b/Tests/WebDAV-Finder/017-PROPFIND.request
new file mode 100755
index 0000000..6fa9198
--- /dev/null
+++ b/Tests/WebDAV-Finder/017-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.metadata_never_index HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/018-404.response b/Tests/WebDAV-Finder/018-404.response
new file mode 100755
index 0000000..f645c98
--- /dev/null
+++ b/Tests/WebDAV-Finder/018-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 212
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/.metadata_never_index_unless_rootfs" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/018-PROPFIND.request b/Tests/WebDAV-Finder/018-PROPFIND.request
new file mode 100755
index 0000000..7af5fd4
--- /dev/null
+++ b/Tests/WebDAV-Finder/018-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.metadata_never_index_unless_rootfs HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/019-403.response b/Tests/WebDAV-Finder/019-403.response
new file mode 100755
index 0000000..bd95aec
--- /dev/null
+++ b/Tests/WebDAV-Finder/019-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/019-PROPFIND.request b/Tests/WebDAV-Finder/019-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/019-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/020-403.response b/Tests/WebDAV-Finder/020-403.response
new file mode 100755
index 0000000..bd95aec
--- /dev/null
+++ b/Tests/WebDAV-Finder/020-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/020-PROPFIND.request b/Tests/WebDAV-Finder/020-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/020-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/021-403.response b/Tests/WebDAV-Finder/021-403.response
new file mode 100755
index 0000000..e423213
--- /dev/null
+++ b/Tests/WebDAV-Finder/021-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 205
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/021-PUT.request b/Tests/WebDAV-Finder/021-PUT.request
new file mode 100755
index 0000000..fa6a196
--- /dev/null
+++ b/Tests/WebDAV-Finder/021-PUT.request
@@ -0,0 +1,7 @@
+PUT /.DS_Store HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/022-403.response b/Tests/WebDAV-Finder/022-403.response
new file mode 100755
index 0000000..bd95aec
--- /dev/null
+++ b/Tests/WebDAV-Finder/022-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/022-PROPFIND.request b/Tests/WebDAV-Finder/022-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/022-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/023-207.response b/Tests/WebDAV-Finder/023-207.response
new file mode 100755
index 0000000..5dae825
--- /dev/null
+++ b/Tests/WebDAV-Finder/023-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1106
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/023-PROPFIND.request b/Tests/WebDAV-Finder/023-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/023-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/024-207.response b/Tests/WebDAV-Finder/024-207.response
new file mode 100755
index 0000000..2929d19
--- /dev/null
+++ b/Tests/WebDAV-Finder/024-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/024-PROPFIND.request b/Tests/WebDAV-Finder/024-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/024-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/025-404.response b/Tests/WebDAV-Finder/025-404.response
new file mode 100755
index 0000000..070948d
--- /dev/null
+++ b/Tests/WebDAV-Finder/025-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/025-PROPFIND.request b/Tests/WebDAV-Finder/025-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/025-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/026-404.response b/Tests/WebDAV-Finder/026-404.response
new file mode 100755
index 0000000..9c5fd6e
--- /dev/null
+++ b/Tests/WebDAV-Finder/026-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/026-PROPFIND.request b/Tests/WebDAV-Finder/026-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/026-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/027-404.response b/Tests/WebDAV-Finder/027-404.response
new file mode 100755
index 0000000..4e9ff12
--- /dev/null
+++ b/Tests/WebDAV-Finder/027-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:55 GMT
+
+HTTP Error 404HTTP Error 404: "/._PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/027-PROPFIND.request b/Tests/WebDAV-Finder/027-PROPFIND.request
new file mode 100755
index 0000000..bda68ad
--- /dev/null
+++ b/Tests/WebDAV-Finder/027-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/028-207.response b/Tests/WebDAV-Finder/028-207.response
new file mode 100755
index 0000000..1ad4faf
--- /dev/null
+++ b/Tests/WebDAV-Finder/028-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 998
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/capable_green_ipad_l.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+/images/hero_mba_11.jpg2014-04-10T21:51:14+00:00Thu, 10 Apr 2014 21:51:14 GMT106799HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/028-PROPFIND.request b/Tests/WebDAV-Finder/028-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/028-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/029-404.response b/Tests/WebDAV-Finder/029-404.response
new file mode 100755
index 0000000..6da8f28
--- /dev/null
+++ b/Tests/WebDAV-Finder/029-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/029-PROPFIND.request b/Tests/WebDAV-Finder/029-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/029-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/030-404.response b/Tests/WebDAV-Finder/030-404.response
new file mode 100755
index 0000000..549f3d8
--- /dev/null
+++ b/Tests/WebDAV-Finder/030-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/._PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/030-PROPFIND.request b/Tests/WebDAV-Finder/030-PROPFIND.request
new file mode 100755
index 0000000..bda68ad
--- /dev/null
+++ b/Tests/WebDAV-Finder/030-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/031-404.response b/Tests/WebDAV-Finder/031-404.response
new file mode 100755
index 0000000..fd967dd
--- /dev/null
+++ b/Tests/WebDAV-Finder/031-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 210
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._capable_green_ipad_l.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/031-PROPFIND.request b/Tests/WebDAV-Finder/031-PROPFIND.request
new file mode 100755
index 0000000..c1941c4
--- /dev/null
+++ b/Tests/WebDAV-Finder/031-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/032-404.response b/Tests/WebDAV-Finder/032-404.response
new file mode 100755
index 0000000..fd967dd
--- /dev/null
+++ b/Tests/WebDAV-Finder/032-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 210
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._capable_green_ipad_l.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/032-PROPFIND.request b/Tests/WebDAV-Finder/032-PROPFIND.request
new file mode 100755
index 0000000..c1941c4
--- /dev/null
+++ b/Tests/WebDAV-Finder/032-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/033-404.response b/Tests/WebDAV-Finder/033-404.response
new file mode 100755
index 0000000..6867241
--- /dev/null
+++ b/Tests/WebDAV-Finder/033-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 201
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._hero_mba_11.jpg" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/033-PROPFIND.request b/Tests/WebDAV-Finder/033-PROPFIND.request
new file mode 100755
index 0000000..709447a
--- /dev/null
+++ b/Tests/WebDAV-Finder/033-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/034-404.response b/Tests/WebDAV-Finder/034-404.response
new file mode 100755
index 0000000..9035641
--- /dev/null
+++ b/Tests/WebDAV-Finder/034-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/034-PROPFIND.request b/Tests/WebDAV-Finder/034-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/034-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/035-207.response b/Tests/WebDAV-Finder/035-207.response
new file mode 100755
index 0000000..aaee6cf
--- /dev/null
+++ b/Tests/WebDAV-Finder/035-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 700
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/035-PROPFIND.request b/Tests/WebDAV-Finder/035-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/035-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/036-404.response b/Tests/WebDAV-Finder/036-404.response
new file mode 100755
index 0000000..9a91358
--- /dev/null
+++ b/Tests/WebDAV-Finder/036-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/036-PROPFIND.request b/Tests/WebDAV-Finder/036-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/036-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/037-404.response b/Tests/WebDAV-Finder/037-404.response
new file mode 100755
index 0000000..7ebcb9f
--- /dev/null
+++ b/Tests/WebDAV-Finder/037-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 229
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/037-PROPFIND.request b/Tests/WebDAV-Finder/037-PROPFIND.request
new file mode 100755
index 0000000..8e86c09
--- /dev/null
+++ b/Tests/WebDAV-Finder/037-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/038-404.response b/Tests/WebDAV-Finder/038-404.response
new file mode 100755
index 0000000..7ebcb9f
--- /dev/null
+++ b/Tests/WebDAV-Finder/038-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 229
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/038-PROPFIND.request b/Tests/WebDAV-Finder/038-PROPFIND.request
new file mode 100755
index 0000000..8e86c09
--- /dev/null
+++ b/Tests/WebDAV-Finder/038-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/039-207.response b/Tests/WebDAV-Finder/039-207.response
new file mode 100755
index 0000000..8a2487e
--- /dev/null
+++ b/Tests/WebDAV-Finder/039-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1106
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/039-PROPFIND.request b/Tests/WebDAV-Finder/039-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/039-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/040-207.response b/Tests/WebDAV-Finder/040-207.response
new file mode 100755
index 0000000..8a2487e
--- /dev/null
+++ b/Tests/WebDAV-Finder/040-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1106
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:10:56 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/040-PROPFIND.request b/Tests/WebDAV-Finder/040-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/040-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/041-404.response b/Tests/WebDAV-Finder/041-404.response
new file mode 100755
index 0000000..7f22a52
--- /dev/null
+++ b/Tests/WebDAV-Finder/041-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+HTTP Error 404HTTP Error 404: "/._PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/041-PROPFIND.request b/Tests/WebDAV-Finder/041-PROPFIND.request
new file mode 100755
index 0000000..bda68ad
--- /dev/null
+++ b/Tests/WebDAV-Finder/041-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/042-207.response b/Tests/WebDAV-Finder/042-207.response
new file mode 100755
index 0000000..f2a9ca2
--- /dev/null
+++ b/Tests/WebDAV-Finder/042-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 328
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/042-PROPFIND.request b/Tests/WebDAV-Finder/042-PROPFIND.request
new file mode 100755
index 0000000..811a30f
--- /dev/null
+++ b/Tests/WebDAV-Finder/042-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/043-207.response b/Tests/WebDAV-Finder/043-207.response
new file mode 100755
index 0000000..16f55ee
--- /dev/null
+++ b/Tests/WebDAV-Finder/043-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 700
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/043-PROPFIND.request b/Tests/WebDAV-Finder/043-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/043-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/044-404.response b/Tests/WebDAV-Finder/044-404.response
new file mode 100755
index 0000000..55999f4
--- /dev/null
+++ b/Tests/WebDAV-Finder/044-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 229
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/044-PROPFIND.request b/Tests/WebDAV-Finder/044-PROPFIND.request
new file mode 100755
index 0000000..8e86c09
--- /dev/null
+++ b/Tests/WebDAV-Finder/044-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/045-404.response b/Tests/WebDAV-Finder/045-404.response
new file mode 100755
index 0000000..73ab452
--- /dev/null
+++ b/Tests/WebDAV-Finder/045-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 198
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/.DS_Store" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/045-PROPFIND.request b/Tests/WebDAV-Finder/045-PROPFIND.request
new file mode 100755
index 0000000..bd9e9fc
--- /dev/null
+++ b/Tests/WebDAV-Finder/045-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/046-207.response b/Tests/WebDAV-Finder/046-207.response
new file mode 100755
index 0000000..16f55ee
--- /dev/null
+++ b/Tests/WebDAV-Finder/046-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 700
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/046-PROPFIND.request b/Tests/WebDAV-Finder/046-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/046-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/047-404.response b/Tests/WebDAV-Finder/047-404.response
new file mode 100755
index 0000000..600d014
--- /dev/null
+++ b/Tests/WebDAV-Finder/047-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/047-PROPFIND.request b/Tests/WebDAV-Finder/047-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/047-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/048-207.response b/Tests/WebDAV-Finder/048-207.response
new file mode 100755
index 0000000..a23659f
--- /dev/null
+++ b/Tests/WebDAV-Finder/048-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 998
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/capable_green_ipad_l.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+/images/hero_mba_11.jpg2014-04-10T21:51:14+00:00Thu, 10 Apr 2014 21:51:14 GMT106799HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/048-PROPFIND.request b/Tests/WebDAV-Finder/048-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/048-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/049-404.response b/Tests/WebDAV-Finder/049-404.response
new file mode 100755
index 0000000..9962e32
--- /dev/null
+++ b/Tests/WebDAV-Finder/049-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 210
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._capable_green_ipad_l.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/049-PROPFIND.request b/Tests/WebDAV-Finder/049-PROPFIND.request
new file mode 100755
index 0000000..c1941c4
--- /dev/null
+++ b/Tests/WebDAV-Finder/049-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/050-207.response b/Tests/WebDAV-Finder/050-207.response
new file mode 100755
index 0000000..a77ee6c
--- /dev/null
+++ b/Tests/WebDAV-Finder/050-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 321
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/050-PROPFIND.request b/Tests/WebDAV-Finder/050-PROPFIND.request
new file mode 100755
index 0000000..9255288
--- /dev/null
+++ b/Tests/WebDAV-Finder/050-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/051-404.response b/Tests/WebDAV-Finder/051-404.response
new file mode 100755
index 0000000..1d51126
--- /dev/null
+++ b/Tests/WebDAV-Finder/051-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 201
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._hero_mba_11.jpg" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/051-PROPFIND.request b/Tests/WebDAV-Finder/051-PROPFIND.request
new file mode 100755
index 0000000..709447a
--- /dev/null
+++ b/Tests/WebDAV-Finder/051-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/052-404.response b/Tests/WebDAV-Finder/052-404.response
new file mode 100755
index 0000000..edca90b
--- /dev/null
+++ b/Tests/WebDAV-Finder/052-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 193
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:00 GMT
+
+HTTP Error 404HTTP Error 404: "/images/.DS_Store" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/052-PROPFIND.request b/Tests/WebDAV-Finder/052-PROPFIND.request
new file mode 100755
index 0000000..bac62b7
--- /dev/null
+++ b/Tests/WebDAV-Finder/052-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/053-403.response b/Tests/WebDAV-Finder/053-403.response
new file mode 100755
index 0000000..8a77d2a
--- /dev/null
+++ b/Tests/WebDAV-Finder/053-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:01 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/053-PROPFIND.request b/Tests/WebDAV-Finder/053-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/053-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/054-403.response b/Tests/WebDAV-Finder/054-403.response
new file mode 100755
index 0000000..8a77d2a
--- /dev/null
+++ b/Tests/WebDAV-Finder/054-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:01 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/054-PROPFIND.request b/Tests/WebDAV-Finder/054-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/054-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/055-403.response b/Tests/WebDAV-Finder/055-403.response
new file mode 100755
index 0000000..342c9dc
--- /dev/null
+++ b/Tests/WebDAV-Finder/055-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 205
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:01 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/055-PUT.request b/Tests/WebDAV-Finder/055-PUT.request
new file mode 100755
index 0000000..fa6a196
--- /dev/null
+++ b/Tests/WebDAV-Finder/055-PUT.request
@@ -0,0 +1,7 @@
+PUT /.DS_Store HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/056-403.response b/Tests/WebDAV-Finder/056-403.response
new file mode 100755
index 0000000..8a77d2a
--- /dev/null
+++ b/Tests/WebDAV-Finder/056-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:01 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/056-PROPFIND.request b/Tests/WebDAV-Finder/056-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/056-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/057-404.response b/Tests/WebDAV-Finder/057-404.response
new file mode 100755
index 0000000..0239b61
--- /dev/null
+++ b/Tests/WebDAV-Finder/057-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 201
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:03 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._hero_mba_11.jpg" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/057-PROPFIND.request b/Tests/WebDAV-Finder/057-PROPFIND.request
new file mode 100755
index 0000000..709447a
--- /dev/null
+++ b/Tests/WebDAV-Finder/057-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/058-200.response b/Tests/WebDAV-Finder/058-200.response
new file mode 100755
index 0000000..92ae6ab
Binary files /dev/null and b/Tests/WebDAV-Finder/058-200.response differ
diff --git a/Tests/WebDAV-Finder/058-GET.request b/Tests/WebDAV-Finder/058-GET.request
new file mode 100755
index 0000000..94adb24
--- /dev/null
+++ b/Tests/WebDAV-Finder/058-GET.request
@@ -0,0 +1,6 @@
+GET /images/hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Connection: keep-alive
+
diff --git a/Tests/WebDAV-Finder/059-200.response b/Tests/WebDAV-Finder/059-200.response
new file mode 100755
index 0000000..92ae6ab
Binary files /dev/null and b/Tests/WebDAV-Finder/059-200.response differ
diff --git a/Tests/WebDAV-Finder/059-GET.request b/Tests/WebDAV-Finder/059-GET.request
new file mode 100755
index 0000000..798dea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/059-GET.request
@@ -0,0 +1,8 @@
+GET /images/hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+If-Range: Thu, 10 Apr 2014 21:51:14 GMT
+Accept: */*
+Range: bytes=98304-
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/060-404.response b/Tests/WebDAV-Finder/060-404.response
new file mode 100755
index 0000000..757b5f9
--- /dev/null
+++ b/Tests/WebDAV-Finder/060-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 210
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:05 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._capable_green_ipad_l.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/060-PROPFIND.request b/Tests/WebDAV-Finder/060-PROPFIND.request
new file mode 100755
index 0000000..c1941c4
--- /dev/null
+++ b/Tests/WebDAV-Finder/060-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/061-200.response b/Tests/WebDAV-Finder/061-200.response
new file mode 100755
index 0000000..313335e
Binary files /dev/null and b/Tests/WebDAV-Finder/061-200.response differ
diff --git a/Tests/WebDAV-Finder/061-GET.request b/Tests/WebDAV-Finder/061-GET.request
new file mode 100755
index 0000000..ceaddf8
--- /dev/null
+++ b/Tests/WebDAV-Finder/061-GET.request
@@ -0,0 +1,6 @@
+GET /images/capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Connection: keep-alive
+
diff --git a/Tests/WebDAV-Finder/062-200.response b/Tests/WebDAV-Finder/062-200.response
new file mode 100755
index 0000000..313335e
Binary files /dev/null and b/Tests/WebDAV-Finder/062-200.response differ
diff --git a/Tests/WebDAV-Finder/062-GET.request b/Tests/WebDAV-Finder/062-GET.request
new file mode 100755
index 0000000..39559b8
--- /dev/null
+++ b/Tests/WebDAV-Finder/062-GET.request
@@ -0,0 +1,8 @@
+GET /images/capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+If-Range: Thu, 10 Apr 2014 21:46:56 GMT
+Accept: */*
+Range: bytes=98304-
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/063-404.response b/Tests/WebDAV-Finder/063-404.response
new file mode 100755
index 0000000..757b5f9
--- /dev/null
+++ b/Tests/WebDAV-Finder/063-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 210
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:05 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._capable_green_ipad_l.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/063-PROPFIND.request b/Tests/WebDAV-Finder/063-PROPFIND.request
new file mode 100755
index 0000000..c1941c4
--- /dev/null
+++ b/Tests/WebDAV-Finder/063-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/064-404.response b/Tests/WebDAV-Finder/064-404.response
new file mode 100755
index 0000000..a94e44c
--- /dev/null
+++ b/Tests/WebDAV-Finder/064-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 201
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:06 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._hero_mba_11.jpg" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/064-PROPFIND.request b/Tests/WebDAV-Finder/064-PROPFIND.request
new file mode 100755
index 0000000..709447a
--- /dev/null
+++ b/Tests/WebDAV-Finder/064-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/065-404.response b/Tests/WebDAV-Finder/065-404.response
new file mode 100755
index 0000000..c4d55df
--- /dev/null
+++ b/Tests/WebDAV-Finder/065-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/065-PROPFIND.request b/Tests/WebDAV-Finder/065-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/065-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/066-404.response b/Tests/WebDAV-Finder/066-404.response
new file mode 100755
index 0000000..a0dcf64
--- /dev/null
+++ b/Tests/WebDAV-Finder/066-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 198
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+HTTP Error 404HTTP Error 404: "/images/Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/066-PROPFIND.request b/Tests/WebDAV-Finder/066-PROPFIND.request
new file mode 100755
index 0000000..8261949
--- /dev/null
+++ b/Tests/WebDAV-Finder/066-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/067-404.response b/Tests/WebDAV-Finder/067-404.response
new file mode 100755
index 0000000..a0dcf64
--- /dev/null
+++ b/Tests/WebDAV-Finder/067-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 198
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+HTTP Error 404HTTP Error 404: "/images/Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/067-PROPFIND.request b/Tests/WebDAV-Finder/067-PROPFIND.request
new file mode 100755
index 0000000..8261949
--- /dev/null
+++ b/Tests/WebDAV-Finder/067-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/068-404.response b/Tests/WebDAV-Finder/068-404.response
new file mode 100755
index 0000000..bf36e4d
--- /dev/null
+++ b/Tests/WebDAV-Finder/068-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 210
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._capable_green_ipad_l.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/068-PROPFIND.request b/Tests/WebDAV-Finder/068-PROPFIND.request
new file mode 100755
index 0000000..c1941c4
--- /dev/null
+++ b/Tests/WebDAV-Finder/068-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/069-201.response b/Tests/WebDAV-Finder/069-201.response
new file mode 100755
index 0000000..489b75d
--- /dev/null
+++ b/Tests/WebDAV-Finder/069-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
diff --git a/Tests/WebDAV-Finder/069-MOVE.request b/Tests/WebDAV-Finder/069-MOVE.request
new file mode 100755
index 0000000..45df685
--- /dev/null
+++ b/Tests/WebDAV-Finder/069-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /images/capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Destination: http://localhost:8080/images/Green%20iPad.png
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/070-404.response b/Tests/WebDAV-Finder/070-404.response
new file mode 100755
index 0000000..223171b
--- /dev/null
+++ b/Tests/WebDAV-Finder/070-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/070-PROPFIND.request b/Tests/WebDAV-Finder/070-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/070-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/071-404.response b/Tests/WebDAV-Finder/071-404.response
new file mode 100755
index 0000000..63a2387
--- /dev/null
+++ b/Tests/WebDAV-Finder/071-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 208
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+HTTP Error 404HTTP Error 404: "/images/capable_green_ipad_l.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/071-PROPFIND.request b/Tests/WebDAV-Finder/071-PROPFIND.request
new file mode 100755
index 0000000..41853c0
--- /dev/null
+++ b/Tests/WebDAV-Finder/071-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/capable_green_ipad_l.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/072-404.response b/Tests/WebDAV-Finder/072-404.response
new file mode 100755
index 0000000..223171b
--- /dev/null
+++ b/Tests/WebDAV-Finder/072-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/072-PROPFIND.request b/Tests/WebDAV-Finder/072-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/072-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/073-207.response b/Tests/WebDAV-Finder/073-207.response
new file mode 100755
index 0000000..f7de08f
--- /dev/null
+++ b/Tests/WebDAV-Finder/073-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 990
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+/images/hero_mba_11.jpg2014-04-10T21:51:14+00:00Thu, 10 Apr 2014 21:51:14 GMT106799HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/073-PROPFIND.request b/Tests/WebDAV-Finder/073-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/073-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/074-404.response b/Tests/WebDAV-Finder/074-404.response
new file mode 100755
index 0000000..a320533
--- /dev/null
+++ b/Tests/WebDAV-Finder/074-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 201
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._hero_mba_11.jpg" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/074-PROPFIND.request b/Tests/WebDAV-Finder/074-PROPFIND.request
new file mode 100755
index 0000000..709447a
--- /dev/null
+++ b/Tests/WebDAV-Finder/074-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/075-207.response b/Tests/WebDAV-Finder/075-207.response
new file mode 100755
index 0000000..f7de08f
--- /dev/null
+++ b/Tests/WebDAV-Finder/075-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 990
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+/images/hero_mba_11.jpg2014-04-10T21:51:14+00:00Thu, 10 Apr 2014 21:51:14 GMT106799HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/075-PROPFIND.request b/Tests/WebDAV-Finder/075-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/075-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/076-207.response b/Tests/WebDAV-Finder/076-207.response
new file mode 100755
index 0000000..f7de08f
--- /dev/null
+++ b/Tests/WebDAV-Finder/076-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 990
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:13 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+/images/hero_mba_11.jpg2014-04-10T21:51:14+00:00Thu, 10 Apr 2014 21:51:14 GMT106799HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/076-PROPFIND.request b/Tests/WebDAV-Finder/076-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/076-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/077-207.response b/Tests/WebDAV-Finder/077-207.response
new file mode 100755
index 0000000..d786304
--- /dev/null
+++ b/Tests/WebDAV-Finder/077-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 321
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:14 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/077-PROPFIND.request b/Tests/WebDAV-Finder/077-PROPFIND.request
new file mode 100755
index 0000000..9255288
--- /dev/null
+++ b/Tests/WebDAV-Finder/077-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/078-207.response b/Tests/WebDAV-Finder/078-207.response
new file mode 100755
index 0000000..d20ae45
--- /dev/null
+++ b/Tests/WebDAV-Finder/078-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 421
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:14 GMT
+
+
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/078-PROPFIND.request b/Tests/WebDAV-Finder/078-PROPFIND.request
new file mode 100755
index 0000000..8261949
--- /dev/null
+++ b/Tests/WebDAV-Finder/078-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/079-404.response b/Tests/WebDAV-Finder/079-404.response
new file mode 100755
index 0000000..65832cb
--- /dev/null
+++ b/Tests/WebDAV-Finder/079-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 201
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:14 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._hero_mba_11.jpg" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/079-PROPFIND.request b/Tests/WebDAV-Finder/079-PROPFIND.request
new file mode 100755
index 0000000..709447a
--- /dev/null
+++ b/Tests/WebDAV-Finder/079-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/080-404.response b/Tests/WebDAV-Finder/080-404.response
new file mode 100755
index 0000000..09537e4
--- /dev/null
+++ b/Tests/WebDAV-Finder/080-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:14 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/080-PROPFIND.request b/Tests/WebDAV-Finder/080-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/080-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/081-204.response b/Tests/WebDAV-Finder/081-204.response
new file mode 100755
index 0000000..ba16ec2
--- /dev/null
+++ b/Tests/WebDAV-Finder/081-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:16 GMT
+
diff --git a/Tests/WebDAV-Finder/081-DELETE.request b/Tests/WebDAV-Finder/081-DELETE.request
new file mode 100755
index 0000000..8c37d38
--- /dev/null
+++ b/Tests/WebDAV-Finder/081-DELETE.request
@@ -0,0 +1,7 @@
+DELETE /images/hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/082-404.response b/Tests/WebDAV-Finder/082-404.response
new file mode 100755
index 0000000..45bff13
--- /dev/null
+++ b/Tests/WebDAV-Finder/082-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 201
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:16 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._hero_mba_11.jpg" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/082-PROPFIND.request b/Tests/WebDAV-Finder/082-PROPFIND.request
new file mode 100755
index 0000000..709447a
--- /dev/null
+++ b/Tests/WebDAV-Finder/082-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/083-207.response b/Tests/WebDAV-Finder/083-207.response
new file mode 100755
index 0000000..bceed93
--- /dev/null
+++ b/Tests/WebDAV-Finder/083-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 656
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:16 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/083-PROPFIND.request b/Tests/WebDAV-Finder/083-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/083-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/084-404.response b/Tests/WebDAV-Finder/084-404.response
new file mode 100755
index 0000000..c616472
--- /dev/null
+++ b/Tests/WebDAV-Finder/084-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:16 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/084-PROPFIND.request b/Tests/WebDAV-Finder/084-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/084-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/085-207.response b/Tests/WebDAV-Finder/085-207.response
new file mode 100755
index 0000000..bceed93
--- /dev/null
+++ b/Tests/WebDAV-Finder/085-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 656
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:16 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/085-PROPFIND.request b/Tests/WebDAV-Finder/085-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/085-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/086-404.response b/Tests/WebDAV-Finder/086-404.response
new file mode 100755
index 0000000..816c1c9
--- /dev/null
+++ b/Tests/WebDAV-Finder/086-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:16 GMT
+
+HTTP Error 404HTTP Error 404: "/._PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/086-PROPFIND.request b/Tests/WebDAV-Finder/086-PROPFIND.request
new file mode 100755
index 0000000..bda68ad
--- /dev/null
+++ b/Tests/WebDAV-Finder/086-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/087-207.response b/Tests/WebDAV-Finder/087-207.response
new file mode 100755
index 0000000..2caca34
--- /dev/null
+++ b/Tests/WebDAV-Finder/087-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 700
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:16 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/087-PROPFIND.request b/Tests/WebDAV-Finder/087-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/087-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/088-404.response b/Tests/WebDAV-Finder/088-404.response
new file mode 100755
index 0000000..db2bcb2
--- /dev/null
+++ b/Tests/WebDAV-Finder/088-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 229
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:16 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/088-PROPFIND.request b/Tests/WebDAV-Finder/088-PROPFIND.request
new file mode 100755
index 0000000..8e86c09
--- /dev/null
+++ b/Tests/WebDAV-Finder/088-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/089-207.response b/Tests/WebDAV-Finder/089-207.response
new file mode 100755
index 0000000..b4e4ba6
--- /dev/null
+++ b/Tests/WebDAV-Finder/089-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 656
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:17 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/089-PROPFIND.request b/Tests/WebDAV-Finder/089-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/089-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/090-404.response b/Tests/WebDAV-Finder/090-404.response
new file mode 100755
index 0000000..a7459fc
--- /dev/null
+++ b/Tests/WebDAV-Finder/090-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:17 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/090-PROPFIND.request b/Tests/WebDAV-Finder/090-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/090-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/091-404.response b/Tests/WebDAV-Finder/091-404.response
new file mode 100755
index 0000000..8aceaac
--- /dev/null
+++ b/Tests/WebDAV-Finder/091-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 199
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:17 GMT
+
+HTTP Error 404HTTP Error 404: "/images/hero_mba_11.jpg" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/091-PROPFIND.request b/Tests/WebDAV-Finder/091-PROPFIND.request
new file mode 100755
index 0000000..6e95d9e
--- /dev/null
+++ b/Tests/WebDAV-Finder/091-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/hero_mba_11.jpg HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/092-207.response b/Tests/WebDAV-Finder/092-207.response
new file mode 100755
index 0000000..586c0cb
--- /dev/null
+++ b/Tests/WebDAV-Finder/092-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 656
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:18 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/092-PROPFIND.request b/Tests/WebDAV-Finder/092-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/092-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/093-404.response b/Tests/WebDAV-Finder/093-404.response
new file mode 100755
index 0000000..6598cf5
--- /dev/null
+++ b/Tests/WebDAV-Finder/093-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:18 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/093-PROPFIND.request b/Tests/WebDAV-Finder/093-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/093-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/094-403.response b/Tests/WebDAV-Finder/094-403.response
new file mode 100755
index 0000000..339beb4
--- /dev/null
+++ b/Tests/WebDAV-Finder/094-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:22 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/094-PROPFIND.request b/Tests/WebDAV-Finder/094-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/094-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/095-403.response b/Tests/WebDAV-Finder/095-403.response
new file mode 100755
index 0000000..339beb4
--- /dev/null
+++ b/Tests/WebDAV-Finder/095-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:22 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/095-PROPFIND.request b/Tests/WebDAV-Finder/095-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/095-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/096-403.response b/Tests/WebDAV-Finder/096-403.response
new file mode 100755
index 0000000..afab35e
--- /dev/null
+++ b/Tests/WebDAV-Finder/096-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 205
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:22 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/096-PUT.request b/Tests/WebDAV-Finder/096-PUT.request
new file mode 100755
index 0000000..fa6a196
--- /dev/null
+++ b/Tests/WebDAV-Finder/096-PUT.request
@@ -0,0 +1,7 @@
+PUT /.DS_Store HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/097-403.response b/Tests/WebDAV-Finder/097-403.response
new file mode 100755
index 0000000..339beb4
--- /dev/null
+++ b/Tests/WebDAV-Finder/097-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:22 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/097-PROPFIND.request b/Tests/WebDAV-Finder/097-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/097-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/098-404.response b/Tests/WebDAV-Finder/098-404.response
new file mode 100755
index 0000000..68e2937
--- /dev/null
+++ b/Tests/WebDAV-Finder/098-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:25 GMT
+
+HTTP Error 404HTTP Error 404: "/._PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/098-PROPFIND.request b/Tests/WebDAV-Finder/098-PROPFIND.request
new file mode 100755
index 0000000..bda68ad
--- /dev/null
+++ b/Tests/WebDAV-Finder/098-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/099-404.response b/Tests/WebDAV-Finder/099-404.response
new file mode 100755
index 0000000..5af31ae
--- /dev/null
+++ b/Tests/WebDAV-Finder/099-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/._PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/099-PROPFIND.request b/Tests/WebDAV-Finder/099-PROPFIND.request
new file mode 100755
index 0000000..bda68ad
--- /dev/null
+++ b/Tests/WebDAV-Finder/099-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/100-404.response b/Tests/WebDAV-Finder/100-404.response
new file mode 100755
index 0000000..838ad85
--- /dev/null
+++ b/Tests/WebDAV-Finder/100-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 202
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/100-PROPFIND.request b/Tests/WebDAV-Finder/100-PROPFIND.request
new file mode 100755
index 0000000..eb48bd0
--- /dev/null
+++ b/Tests/WebDAV-Finder/100-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/101-404.response b/Tests/WebDAV-Finder/101-404.response
new file mode 100755
index 0000000..838ad85
--- /dev/null
+++ b/Tests/WebDAV-Finder/101-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 202
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/101-PROPFIND.request b/Tests/WebDAV-Finder/101-PROPFIND.request
new file mode 100755
index 0000000..eb48bd0
--- /dev/null
+++ b/Tests/WebDAV-Finder/101-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/102-201.response b/Tests/WebDAV-Finder/102-201.response
new file mode 100755
index 0000000..3463528
--- /dev/null
+++ b/Tests/WebDAV-Finder/102-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/102-PUT.request b/Tests/WebDAV-Finder/102-PUT.request
new file mode 100755
index 0000000..452c46e
--- /dev/null
+++ b/Tests/WebDAV-Finder/102-PUT.request
@@ -0,0 +1,9 @@
+PUT /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+X-GCDWebServer-CreationDate: 2014-04-12T05:11:26+00:00
+X-GCDWebServer-ModifiedDate: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/103-404.response b/Tests/WebDAV-Finder/103-404.response
new file mode 100755
index 0000000..26c1fe7
--- /dev/null
+++ b/Tests/WebDAV-Finder/103-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/103-PROPFIND.request b/Tests/WebDAV-Finder/103-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/103-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/104-200.response b/Tests/WebDAV-Finder/104-200.response
new file mode 100755
index 0000000..a7d6ce3
--- /dev/null
+++ b/Tests/WebDAV-Finder/104-200.response
@@ -0,0 +1,21 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Content-Length: 522
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+
+
+
+
+0
+http://www.apple.com/webdav_fs/
+Second-600
+urn:uuid:53F6E66F-FEAE-46B7-B8D7-7E8FFBD6A5C5
+http://localhost:8080//PDF Reports/Test File.txt
+
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/104-LOCK.request b/Tests/WebDAV-Finder/104-LOCK.request
new file mode 100755
index 0000000..8cd3862
--- /dev/null
+++ b/Tests/WebDAV-Finder/104-LOCK.request
@@ -0,0 +1,19 @@
+LOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml; charset="utf-8"
+Depth: 0
+Timeout: Second-600
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 229
+Connection: keep-alive
+X-GCDWebServer-LockToken: urn:uuid:53F6E66F-FEAE-46B7-B8D7-7E8FFBD6A5C5
+
+
+
+
+
+
+http://www.apple.com/webdav_fs/
+
+
diff --git a/Tests/WebDAV-Finder/105-204.response b/Tests/WebDAV-Finder/105-204.response
new file mode 100755
index 0000000..8edf9f5
--- /dev/null
+++ b/Tests/WebDAV-Finder/105-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/105-UNLOCK.request b/Tests/WebDAV-Finder/105-UNLOCK.request
new file mode 100755
index 0000000..9b42a9f
--- /dev/null
+++ b/Tests/WebDAV-Finder/105-UNLOCK.request
@@ -0,0 +1,8 @@
+UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Lock-Token:
+
diff --git a/Tests/WebDAV-Finder/106-200.response b/Tests/WebDAV-Finder/106-200.response
new file mode 100755
index 0000000..d2f6f7d
--- /dev/null
+++ b/Tests/WebDAV-Finder/106-200.response
@@ -0,0 +1,21 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Content-Length: 522
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+
+
+
+
+0
+http://www.apple.com/webdav_fs/
+Second-600
+urn:uuid:2D01C33C-FCF8-4D67-B461-AD503BE4E673
+http://localhost:8080//PDF Reports/Test File.txt
+
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/106-LOCK.request b/Tests/WebDAV-Finder/106-LOCK.request
new file mode 100755
index 0000000..f8ce587
--- /dev/null
+++ b/Tests/WebDAV-Finder/106-LOCK.request
@@ -0,0 +1,19 @@
+LOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml; charset="utf-8"
+Depth: 0
+Timeout: Second-600
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 229
+Connection: keep-alive
+X-GCDWebServer-LockToken: urn:uuid:2D01C33C-FCF8-4D67-B461-AD503BE4E673
+
+
+
+
+
+
+http://www.apple.com/webdav_fs/
+
+
diff --git a/Tests/WebDAV-Finder/107-204.response b/Tests/WebDAV-Finder/107-204.response
new file mode 100755
index 0000000..8edf9f5
--- /dev/null
+++ b/Tests/WebDAV-Finder/107-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/107-UNLOCK.request b/Tests/WebDAV-Finder/107-UNLOCK.request
new file mode 100755
index 0000000..7f85175
--- /dev/null
+++ b/Tests/WebDAV-Finder/107-UNLOCK.request
@@ -0,0 +1,8 @@
+UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Lock-Token:
+
diff --git a/Tests/WebDAV-Finder/108-404.response b/Tests/WebDAV-Finder/108-404.response
new file mode 100755
index 0000000..26c1fe7
--- /dev/null
+++ b/Tests/WebDAV-Finder/108-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/108-PROPFIND.request b/Tests/WebDAV-Finder/108-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/108-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/109-403.response b/Tests/WebDAV-Finder/109-403.response
new file mode 100755
index 0000000..f5f634c
--- /dev/null
+++ b/Tests/WebDAV-Finder/109-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 211
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name "._Test File.txt" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/109-PUT.request b/Tests/WebDAV-Finder/109-PUT.request
new file mode 100755
index 0000000..a8c918d
--- /dev/null
+++ b/Tests/WebDAV-Finder/109-PUT.request
@@ -0,0 +1,7 @@
+PUT /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/110-404.response b/Tests/WebDAV-Finder/110-404.response
new file mode 100755
index 0000000..26c1fe7
--- /dev/null
+++ b/Tests/WebDAV-Finder/110-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/110-PROPFIND.request b/Tests/WebDAV-Finder/110-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/110-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/111-207.response b/Tests/WebDAV-Finder/111-207.response
new file mode 100755
index 0000000..e8e3042
--- /dev/null
+++ b/Tests/WebDAV-Finder/111-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 328
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/111-PROPFIND.request b/Tests/WebDAV-Finder/111-PROPFIND.request
new file mode 100755
index 0000000..811a30f
--- /dev/null
+++ b/Tests/WebDAV-Finder/111-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/112-207.response b/Tests/WebDAV-Finder/112-207.response
new file mode 100755
index 0000000..071018a
--- /dev/null
+++ b/Tests/WebDAV-Finder/112-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 422
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/PDF%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT0HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/112-PROPFIND.request b/Tests/WebDAV-Finder/112-PROPFIND.request
new file mode 100755
index 0000000..eb48bd0
--- /dev/null
+++ b/Tests/WebDAV-Finder/112-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/113-404.response b/Tests/WebDAV-Finder/113-404.response
new file mode 100755
index 0000000..bd267fa
--- /dev/null
+++ b/Tests/WebDAV-Finder/113-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/113-PROPFIND.request b/Tests/WebDAV-Finder/113-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/113-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/114-204.response b/Tests/WebDAV-Finder/114-204.response
new file mode 100755
index 0000000..8edf9f5
--- /dev/null
+++ b/Tests/WebDAV-Finder/114-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/114-DELETE.request b/Tests/WebDAV-Finder/114-DELETE.request
new file mode 100755
index 0000000..fb4f0af
--- /dev/null
+++ b/Tests/WebDAV-Finder/114-DELETE.request
@@ -0,0 +1,7 @@
+DELETE /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/115-404.response b/Tests/WebDAV-Finder/115-404.response
new file mode 100755
index 0000000..26c1fe7
--- /dev/null
+++ b/Tests/WebDAV-Finder/115-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/115-PROPFIND.request b/Tests/WebDAV-Finder/115-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/115-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/116-404.response b/Tests/WebDAV-Finder/116-404.response
new file mode 100755
index 0000000..838ad85
--- /dev/null
+++ b/Tests/WebDAV-Finder/116-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 202
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/116-PROPFIND.request b/Tests/WebDAV-Finder/116-PROPFIND.request
new file mode 100755
index 0000000..eb48bd0
--- /dev/null
+++ b/Tests/WebDAV-Finder/116-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/117-201.response b/Tests/WebDAV-Finder/117-201.response
new file mode 100755
index 0000000..3463528
--- /dev/null
+++ b/Tests/WebDAV-Finder/117-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/117-PUT.request b/Tests/WebDAV-Finder/117-PUT.request
new file mode 100755
index 0000000..2eb2f3a
--- /dev/null
+++ b/Tests/WebDAV-Finder/117-PUT.request
@@ -0,0 +1,7 @@
+PUT /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/118-404.response b/Tests/WebDAV-Finder/118-404.response
new file mode 100755
index 0000000..26c1fe7
--- /dev/null
+++ b/Tests/WebDAV-Finder/118-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/118-PROPFIND.request b/Tests/WebDAV-Finder/118-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/118-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/119-200.response b/Tests/WebDAV-Finder/119-200.response
new file mode 100755
index 0000000..2c06984
--- /dev/null
+++ b/Tests/WebDAV-Finder/119-200.response
@@ -0,0 +1,21 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Content-Length: 522
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+
+
+
+
+0
+http://www.apple.com/webdav_fs/
+Second-600
+urn:uuid:CD24F78B-42E4-4357-98CA-94F47DCF0818
+http://localhost:8080//PDF Reports/Test File.txt
+
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/119-LOCK.request b/Tests/WebDAV-Finder/119-LOCK.request
new file mode 100755
index 0000000..eb5ed11
--- /dev/null
+++ b/Tests/WebDAV-Finder/119-LOCK.request
@@ -0,0 +1,19 @@
+LOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml; charset="utf-8"
+Depth: 0
+Timeout: Second-600
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 229
+Connection: keep-alive
+X-GCDWebServer-LockToken: urn:uuid:CD24F78B-42E4-4357-98CA-94F47DCF0818
+
+
+
+
+
+
+http://www.apple.com/webdav_fs/
+
+
diff --git a/Tests/WebDAV-Finder/120-204.response b/Tests/WebDAV-Finder/120-204.response
new file mode 100755
index 0000000..8edf9f5
--- /dev/null
+++ b/Tests/WebDAV-Finder/120-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/120-PUT.request b/Tests/WebDAV-Finder/120-PUT.request
new file mode 100755
index 0000000..c8087e9
--- /dev/null
+++ b/Tests/WebDAV-Finder/120-PUT.request
@@ -0,0 +1,16 @@
+PUT /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+X-Expected-Entity-Length: 21
+If: ()
+Transfer-Encoding: Chunked
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Connection: close
+X-GCDWebServer-CreationDate: 2014-04-12T05:11:26+00:00
+X-GCDWebServer-ModifiedDate: Sat, 12 Apr 2014 05:11:26 GMT
+
+15
+Nothing to see here!
+
+0
+
diff --git a/Tests/WebDAV-Finder/121-404.response b/Tests/WebDAV-Finder/121-404.response
new file mode 100755
index 0000000..26c1fe7
--- /dev/null
+++ b/Tests/WebDAV-Finder/121-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/121-PROPFIND.request b/Tests/WebDAV-Finder/121-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/121-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/122-403.response b/Tests/WebDAV-Finder/122-403.response
new file mode 100755
index 0000000..f5f634c
--- /dev/null
+++ b/Tests/WebDAV-Finder/122-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 211
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name "._Test File.txt" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/122-PUT.request b/Tests/WebDAV-Finder/122-PUT.request
new file mode 100755
index 0000000..a8c918d
--- /dev/null
+++ b/Tests/WebDAV-Finder/122-PUT.request
@@ -0,0 +1,7 @@
+PUT /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/123-404.response b/Tests/WebDAV-Finder/123-404.response
new file mode 100755
index 0000000..26c1fe7
--- /dev/null
+++ b/Tests/WebDAV-Finder/123-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/123-PROPFIND.request b/Tests/WebDAV-Finder/123-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/123-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/124-403.response b/Tests/WebDAV-Finder/124-403.response
new file mode 100755
index 0000000..f5f634c
--- /dev/null
+++ b/Tests/WebDAV-Finder/124-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 211
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name "._Test File.txt" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/124-PUT.request b/Tests/WebDAV-Finder/124-PUT.request
new file mode 100755
index 0000000..a8c918d
--- /dev/null
+++ b/Tests/WebDAV-Finder/124-PUT.request
@@ -0,0 +1,7 @@
+PUT /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/125-204.response b/Tests/WebDAV-Finder/125-204.response
new file mode 100755
index 0000000..8edf9f5
--- /dev/null
+++ b/Tests/WebDAV-Finder/125-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/125-UNLOCK.request b/Tests/WebDAV-Finder/125-UNLOCK.request
new file mode 100755
index 0000000..bd22378
--- /dev/null
+++ b/Tests/WebDAV-Finder/125-UNLOCK.request
@@ -0,0 +1,8 @@
+UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Lock-Token:
+
diff --git a/Tests/WebDAV-Finder/126-404.response b/Tests/WebDAV-Finder/126-404.response
new file mode 100755
index 0000000..26c1fe7
--- /dev/null
+++ b/Tests/WebDAV-Finder/126-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/126-PROPFIND.request b/Tests/WebDAV-Finder/126-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/126-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/127-200.response b/Tests/WebDAV-Finder/127-200.response
new file mode 100755
index 0000000..e9dc065
--- /dev/null
+++ b/Tests/WebDAV-Finder/127-200.response
@@ -0,0 +1,21 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Content-Length: 522
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+
+
+
+
+0
+http://www.apple.com/webdav_fs/
+Second-600
+urn:uuid:50EA272F-C8AB-4057-8B49-9C70CBCC2E33
+http://localhost:8080//PDF Reports/Test File.txt
+
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/127-LOCK.request b/Tests/WebDAV-Finder/127-LOCK.request
new file mode 100755
index 0000000..5cc632d
--- /dev/null
+++ b/Tests/WebDAV-Finder/127-LOCK.request
@@ -0,0 +1,19 @@
+LOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml; charset="utf-8"
+Depth: 0
+Timeout: Second-600
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 229
+Connection: keep-alive
+X-GCDWebServer-LockToken: urn:uuid:50EA272F-C8AB-4057-8B49-9C70CBCC2E33
+
+
+
+
+
+
+http://www.apple.com/webdav_fs/
+
+
diff --git a/Tests/WebDAV-Finder/128-204.response b/Tests/WebDAV-Finder/128-204.response
new file mode 100755
index 0000000..8edf9f5
--- /dev/null
+++ b/Tests/WebDAV-Finder/128-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/128-UNLOCK.request b/Tests/WebDAV-Finder/128-UNLOCK.request
new file mode 100755
index 0000000..8f19e43
--- /dev/null
+++ b/Tests/WebDAV-Finder/128-UNLOCK.request
@@ -0,0 +1,8 @@
+UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Lock-Token:
+
diff --git a/Tests/WebDAV-Finder/129-200.response b/Tests/WebDAV-Finder/129-200.response
new file mode 100755
index 0000000..0023b4a
--- /dev/null
+++ b/Tests/WebDAV-Finder/129-200.response
@@ -0,0 +1,21 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+Content-Length: 522
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+
+
+
+
+0
+http://www.apple.com/webdav_fs/
+Second-600
+urn:uuid:34F304E0-C45C-4CA7-9DF7-23833547F994
+http://localhost:8080//PDF Reports/Test File.txt
+
+
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/129-LOCK.request b/Tests/WebDAV-Finder/129-LOCK.request
new file mode 100755
index 0000000..a96da23
--- /dev/null
+++ b/Tests/WebDAV-Finder/129-LOCK.request
@@ -0,0 +1,19 @@
+LOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml; charset="utf-8"
+Depth: 0
+Timeout: Second-600
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 229
+Connection: keep-alive
+X-GCDWebServer-LockToken: urn:uuid:34F304E0-C45C-4CA7-9DF7-23833547F994
+
+
+
+
+
+
+http://www.apple.com/webdav_fs/
+
+
diff --git a/Tests/WebDAV-Finder/130-204.response b/Tests/WebDAV-Finder/130-204.response
new file mode 100755
index 0000000..8edf9f5
--- /dev/null
+++ b/Tests/WebDAV-Finder/130-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
diff --git a/Tests/WebDAV-Finder/130-UNLOCK.request b/Tests/WebDAV-Finder/130-UNLOCK.request
new file mode 100755
index 0000000..fe48acf
--- /dev/null
+++ b/Tests/WebDAV-Finder/130-UNLOCK.request
@@ -0,0 +1,8 @@
+UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Lock-Token:
+
diff --git a/Tests/WebDAV-Finder/131-207.response b/Tests/WebDAV-Finder/131-207.response
new file mode 100755
index 0000000..7094cd4
--- /dev/null
+++ b/Tests/WebDAV-Finder/131-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1106
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/131-PROPFIND.request b/Tests/WebDAV-Finder/131-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/131-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/132-404.response b/Tests/WebDAV-Finder/132-404.response
new file mode 100755
index 0000000..79732e7
--- /dev/null
+++ b/Tests/WebDAV-Finder/132-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/132-PROPFIND.request b/Tests/WebDAV-Finder/132-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/132-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/133-404.response b/Tests/WebDAV-Finder/133-404.response
new file mode 100755
index 0000000..80e3f58
--- /dev/null
+++ b/Tests/WebDAV-Finder/133-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/133-PROPFIND.request b/Tests/WebDAV-Finder/133-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/133-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/134-207.response b/Tests/WebDAV-Finder/134-207.response
new file mode 100755
index 0000000..3d326f0
--- /dev/null
+++ b/Tests/WebDAV-Finder/134-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1037
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/PDF%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/134-PROPFIND.request b/Tests/WebDAV-Finder/134-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/134-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/135-404.response b/Tests/WebDAV-Finder/135-404.response
new file mode 100755
index 0000000..5864003
--- /dev/null
+++ b/Tests/WebDAV-Finder/135-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 229
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/135-PROPFIND.request b/Tests/WebDAV-Finder/135-PROPFIND.request
new file mode 100755
index 0000000..8e86c09
--- /dev/null
+++ b/Tests/WebDAV-Finder/135-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/136-207.response b/Tests/WebDAV-Finder/136-207.response
new file mode 100755
index 0000000..e8e3042
--- /dev/null
+++ b/Tests/WebDAV-Finder/136-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 328
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/136-PROPFIND.request b/Tests/WebDAV-Finder/136-PROPFIND.request
new file mode 100755
index 0000000..811a30f
--- /dev/null
+++ b/Tests/WebDAV-Finder/136-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/137-207.response b/Tests/WebDAV-Finder/137-207.response
new file mode 100755
index 0000000..736c4a4
--- /dev/null
+++ b/Tests/WebDAV-Finder/137-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 423
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/PDF%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/137-PROPFIND.request b/Tests/WebDAV-Finder/137-PROPFIND.request
new file mode 100755
index 0000000..eb48bd0
--- /dev/null
+++ b/Tests/WebDAV-Finder/137-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/138-207.response b/Tests/WebDAV-Finder/138-207.response
new file mode 100755
index 0000000..3d326f0
--- /dev/null
+++ b/Tests/WebDAV-Finder/138-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1037
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/PDF%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/138-PROPFIND.request b/Tests/WebDAV-Finder/138-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/138-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/139-207.response b/Tests/WebDAV-Finder/139-207.response
new file mode 100755
index 0000000..3d326f0
--- /dev/null
+++ b/Tests/WebDAV-Finder/139-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1037
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/PDF%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/139-PROPFIND.request b/Tests/WebDAV-Finder/139-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/139-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/140-207.response b/Tests/WebDAV-Finder/140-207.response
new file mode 100755
index 0000000..3d326f0
--- /dev/null
+++ b/Tests/WebDAV-Finder/140-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1037
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:26 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/PDF%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/140-PROPFIND.request b/Tests/WebDAV-Finder/140-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/140-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/141-404.response b/Tests/WebDAV-Finder/141-404.response
new file mode 100755
index 0000000..e6858a2
--- /dev/null
+++ b/Tests/WebDAV-Finder/141-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/141-PROPFIND.request b/Tests/WebDAV-Finder/141-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/141-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/142-207.response b/Tests/WebDAV-Finder/142-207.response
new file mode 100755
index 0000000..84f4ff7
--- /dev/null
+++ b/Tests/WebDAV-Finder/142-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1106
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/142-PROPFIND.request b/Tests/WebDAV-Finder/142-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/142-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/143-404.response b/Tests/WebDAV-Finder/143-404.response
new file mode 100755
index 0000000..bf8051c
--- /dev/null
+++ b/Tests/WebDAV-Finder/143-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/143-PROPFIND.request b/Tests/WebDAV-Finder/143-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/143-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/144-404.response b/Tests/WebDAV-Finder/144-404.response
new file mode 100755
index 0000000..9f0b2e9
--- /dev/null
+++ b/Tests/WebDAV-Finder/144-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/144-PROPFIND.request b/Tests/WebDAV-Finder/144-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/144-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/145-404.response b/Tests/WebDAV-Finder/145-404.response
new file mode 100755
index 0000000..57b79e9
--- /dev/null
+++ b/Tests/WebDAV-Finder/145-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+HTTP Error 404HTTP Error 404: "/._PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/145-PROPFIND.request b/Tests/WebDAV-Finder/145-PROPFIND.request
new file mode 100755
index 0000000..bda68ad
--- /dev/null
+++ b/Tests/WebDAV-Finder/145-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/146-207.response b/Tests/WebDAV-Finder/146-207.response
new file mode 100755
index 0000000..189fba2
--- /dev/null
+++ b/Tests/WebDAV-Finder/146-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 656
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/146-PROPFIND.request b/Tests/WebDAV-Finder/146-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/146-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/147-404.response b/Tests/WebDAV-Finder/147-404.response
new file mode 100755
index 0000000..cef01db
--- /dev/null
+++ b/Tests/WebDAV-Finder/147-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/147-PROPFIND.request b/Tests/WebDAV-Finder/147-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/147-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/148-207.response b/Tests/WebDAV-Finder/148-207.response
new file mode 100755
index 0000000..bf2e052
--- /dev/null
+++ b/Tests/WebDAV-Finder/148-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1037
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/PDF%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/148-PROPFIND.request b/Tests/WebDAV-Finder/148-PROPFIND.request
new file mode 100755
index 0000000..8f16b05
--- /dev/null
+++ b/Tests/WebDAV-Finder/148-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/149-404.response b/Tests/WebDAV-Finder/149-404.response
new file mode 100755
index 0000000..4428bb3
--- /dev/null
+++ b/Tests/WebDAV-Finder/149-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 229
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/149-PROPFIND.request b/Tests/WebDAV-Finder/149-PROPFIND.request
new file mode 100755
index 0000000..8e86c09
--- /dev/null
+++ b/Tests/WebDAV-Finder/149-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/150-404.response b/Tests/WebDAV-Finder/150-404.response
new file mode 100755
index 0000000..bc9b806
--- /dev/null
+++ b/Tests/WebDAV-Finder/150-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 204
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/150-PROPFIND.request b/Tests/WebDAV-Finder/150-PROPFIND.request
new file mode 100755
index 0000000..d28ab94
--- /dev/null
+++ b/Tests/WebDAV-Finder/150-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/151-207.response b/Tests/WebDAV-Finder/151-207.response
new file mode 100755
index 0000000..8a0d157
--- /dev/null
+++ b/Tests/WebDAV-Finder/151-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 328
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/151-PROPFIND.request b/Tests/WebDAV-Finder/151-PROPFIND.request
new file mode 100755
index 0000000..811a30f
--- /dev/null
+++ b/Tests/WebDAV-Finder/151-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/152-207.response b/Tests/WebDAV-Finder/152-207.response
new file mode 100755
index 0000000..376ed3b
--- /dev/null
+++ b/Tests/WebDAV-Finder/152-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 423
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+
+/PDF%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/152-PROPFIND.request b/Tests/WebDAV-Finder/152-PROPFIND.request
new file mode 100755
index 0000000..eb48bd0
--- /dev/null
+++ b/Tests/WebDAV-Finder/152-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports/Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/153-207.response b/Tests/WebDAV-Finder/153-207.response
new file mode 100755
index 0000000..84f4ff7
--- /dev/null
+++ b/Tests/WebDAV-Finder/153-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1106
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:27 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/153-PROPFIND.request b/Tests/WebDAV-Finder/153-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/153-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/154-403.response b/Tests/WebDAV-Finder/154-403.response
new file mode 100755
index 0000000..91d9f62
--- /dev/null
+++ b/Tests/WebDAV-Finder/154-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:28 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/154-PROPFIND.request b/Tests/WebDAV-Finder/154-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/154-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/155-403.response b/Tests/WebDAV-Finder/155-403.response
new file mode 100755
index 0000000..91d9f62
--- /dev/null
+++ b/Tests/WebDAV-Finder/155-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:28 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/155-PROPFIND.request b/Tests/WebDAV-Finder/155-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/155-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/156-403.response b/Tests/WebDAV-Finder/156-403.response
new file mode 100755
index 0000000..48bbcc5
--- /dev/null
+++ b/Tests/WebDAV-Finder/156-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 205
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:28 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/156-PUT.request b/Tests/WebDAV-Finder/156-PUT.request
new file mode 100755
index 0000000..fa6a196
--- /dev/null
+++ b/Tests/WebDAV-Finder/156-PUT.request
@@ -0,0 +1,7 @@
+PUT /.DS_Store HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/157-403.response b/Tests/WebDAV-Finder/157-403.response
new file mode 100755
index 0000000..91d9f62
--- /dev/null
+++ b/Tests/WebDAV-Finder/157-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:28 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/157-PROPFIND.request b/Tests/WebDAV-Finder/157-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/157-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/158-404.response b/Tests/WebDAV-Finder/158-404.response
new file mode 100755
index 0000000..df0f866
--- /dev/null
+++ b/Tests/WebDAV-Finder/158-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/158-PROPFIND.request b/Tests/WebDAV-Finder/158-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/158-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/159-404.response b/Tests/WebDAV-Finder/159-404.response
new file mode 100755
index 0000000..cc06ac1
--- /dev/null
+++ b/Tests/WebDAV-Finder/159-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/159-PROPFIND.request b/Tests/WebDAV-Finder/159-PROPFIND.request
new file mode 100755
index 0000000..a34a5cc
--- /dev/null
+++ b/Tests/WebDAV-Finder/159-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/160-404.response b/Tests/WebDAV-Finder/160-404.response
new file mode 100755
index 0000000..cc06ac1
--- /dev/null
+++ b/Tests/WebDAV-Finder/160-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/160-PROPFIND.request b/Tests/WebDAV-Finder/160-PROPFIND.request
new file mode 100755
index 0000000..a34a5cc
--- /dev/null
+++ b/Tests/WebDAV-Finder/160-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/161-404.response b/Tests/WebDAV-Finder/161-404.response
new file mode 100755
index 0000000..3072e9e
--- /dev/null
+++ b/Tests/WebDAV-Finder/161-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 190
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/._PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/161-PROPFIND.request b/Tests/WebDAV-Finder/161-PROPFIND.request
new file mode 100755
index 0000000..bda68ad
--- /dev/null
+++ b/Tests/WebDAV-Finder/161-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/162-201.response b/Tests/WebDAV-Finder/162-201.response
new file mode 100755
index 0000000..5faa439
--- /dev/null
+++ b/Tests/WebDAV-Finder/162-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
diff --git a/Tests/WebDAV-Finder/162-MOVE.request b/Tests/WebDAV-Finder/162-MOVE.request
new file mode 100755
index 0000000..d94c216
--- /dev/null
+++ b/Tests/WebDAV-Finder/162-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /PDF%20Reports/ HTTP/1.1
+Host: localhost:8080
+Destination: http://localhost:8080/Apple%20Reports
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/163-404.response b/Tests/WebDAV-Finder/163-404.response
new file mode 100755
index 0000000..797c1bb
--- /dev/null
+++ b/Tests/WebDAV-Finder/163-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/163-PROPFIND.request b/Tests/WebDAV-Finder/163-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/163-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/164-404.response b/Tests/WebDAV-Finder/164-404.response
new file mode 100755
index 0000000..1b7c84f
--- /dev/null
+++ b/Tests/WebDAV-Finder/164-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 188
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/164-PROPFIND.request b/Tests/WebDAV-Finder/164-PROPFIND.request
new file mode 100755
index 0000000..0ab0250
--- /dev/null
+++ b/Tests/WebDAV-Finder/164-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/165-404.response b/Tests/WebDAV-Finder/165-404.response
new file mode 100755
index 0000000..797c1bb
--- /dev/null
+++ b/Tests/WebDAV-Finder/165-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/165-PROPFIND.request b/Tests/WebDAV-Finder/165-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/165-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/166-404.response b/Tests/WebDAV-Finder/166-404.response
new file mode 100755
index 0000000..df0f866
--- /dev/null
+++ b/Tests/WebDAV-Finder/166-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/166-PROPFIND.request b/Tests/WebDAV-Finder/166-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/166-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/167-207.response b/Tests/WebDAV-Finder/167-207.response
new file mode 100755
index 0000000..a9b749b
--- /dev/null
+++ b/Tests/WebDAV-Finder/167-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1108
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/167-PROPFIND.request b/Tests/WebDAV-Finder/167-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/167-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/168-404.response b/Tests/WebDAV-Finder/168-404.response
new file mode 100755
index 0000000..b61831a
--- /dev/null
+++ b/Tests/WebDAV-Finder/168-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/168-PROPFIND.request b/Tests/WebDAV-Finder/168-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/168-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/169-404.response b/Tests/WebDAV-Finder/169-404.response
new file mode 100755
index 0000000..dd81c63
--- /dev/null
+++ b/Tests/WebDAV-Finder/169-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:31 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/169-PROPFIND.request b/Tests/WebDAV-Finder/169-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/169-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/170-404.response b/Tests/WebDAV-Finder/170-404.response
new file mode 100755
index 0000000..5aa7248
--- /dev/null
+++ b/Tests/WebDAV-Finder/170-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/170-PROPFIND.request b/Tests/WebDAV-Finder/170-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/170-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/171-404.response b/Tests/WebDAV-Finder/171-404.response
new file mode 100755
index 0000000..435034f
--- /dev/null
+++ b/Tests/WebDAV-Finder/171-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/171-PROPFIND.request b/Tests/WebDAV-Finder/171-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/171-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/172-207.response b/Tests/WebDAV-Finder/172-207.response
new file mode 100755
index 0000000..b4f98de
--- /dev/null
+++ b/Tests/WebDAV-Finder/172-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1043
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+
+/Apple%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/Apple%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/172-PROPFIND.request b/Tests/WebDAV-Finder/172-PROPFIND.request
new file mode 100755
index 0000000..08f95e5
--- /dev/null
+++ b/Tests/WebDAV-Finder/172-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/173-404.response b/Tests/WebDAV-Finder/173-404.response
new file mode 100755
index 0000000..1d8c9cd
--- /dev/null
+++ b/Tests/WebDAV-Finder/173-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 231
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/173-PROPFIND.request b/Tests/WebDAV-Finder/173-PROPFIND.request
new file mode 100755
index 0000000..ff49099
--- /dev/null
+++ b/Tests/WebDAV-Finder/173-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/174-404.response b/Tests/WebDAV-Finder/174-404.response
new file mode 100755
index 0000000..0cf58ae
--- /dev/null
+++ b/Tests/WebDAV-Finder/174-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 206
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/174-PROPFIND.request b/Tests/WebDAV-Finder/174-PROPFIND.request
new file mode 100755
index 0000000..1e426d6
--- /dev/null
+++ b/Tests/WebDAV-Finder/174-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/175-404.response b/Tests/WebDAV-Finder/175-404.response
new file mode 100755
index 0000000..0f2ab24
--- /dev/null
+++ b/Tests/WebDAV-Finder/175-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/175-PROPFIND.request b/Tests/WebDAV-Finder/175-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/175-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/176-207.response b/Tests/WebDAV-Finder/176-207.response
new file mode 100755
index 0000000..5ca368b
--- /dev/null
+++ b/Tests/WebDAV-Finder/176-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1108
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/176-PROPFIND.request b/Tests/WebDAV-Finder/176-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/176-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/177-404.response b/Tests/WebDAV-Finder/177-404.response
new file mode 100755
index 0000000..7fc3347
--- /dev/null
+++ b/Tests/WebDAV-Finder/177-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/177-PROPFIND.request b/Tests/WebDAV-Finder/177-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/177-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/178-404.response b/Tests/WebDAV-Finder/178-404.response
new file mode 100755
index 0000000..c859d4d
--- /dev/null
+++ b/Tests/WebDAV-Finder/178-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/178-PROPFIND.request b/Tests/WebDAV-Finder/178-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/178-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/179-404.response b/Tests/WebDAV-Finder/179-404.response
new file mode 100755
index 0000000..79c6d4d
--- /dev/null
+++ b/Tests/WebDAV-Finder/179-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 188
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:32 GMT
+
+HTTP Error 404HTTP Error 404: "/PDF Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/179-PROPFIND.request b/Tests/WebDAV-Finder/179-PROPFIND.request
new file mode 100755
index 0000000..0ab0250
--- /dev/null
+++ b/Tests/WebDAV-Finder/179-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /PDF%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/180-207.response b/Tests/WebDAV-Finder/180-207.response
new file mode 100755
index 0000000..0cf330f
--- /dev/null
+++ b/Tests/WebDAV-Finder/180-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 330
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:33 GMT
+
+
+/Apple%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/180-PROPFIND.request b/Tests/WebDAV-Finder/180-PROPFIND.request
new file mode 100755
index 0000000..90ce87d
--- /dev/null
+++ b/Tests/WebDAV-Finder/180-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/181-404.response b/Tests/WebDAV-Finder/181-404.response
new file mode 100755
index 0000000..69d619a
--- /dev/null
+++ b/Tests/WebDAV-Finder/181-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/untitled folder" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/181-PROPFIND.request b/Tests/WebDAV-Finder/181-PROPFIND.request
new file mode 100755
index 0000000..a16130c
--- /dev/null
+++ b/Tests/WebDAV-Finder/181-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /untitled%20folder HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/182-201.response b/Tests/WebDAV-Finder/182-201.response
new file mode 100755
index 0000000..3b40c52
--- /dev/null
+++ b/Tests/WebDAV-Finder/182-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
diff --git a/Tests/WebDAV-Finder/182-MKCOL.request b/Tests/WebDAV-Finder/182-MKCOL.request
new file mode 100755
index 0000000..63f98ee
--- /dev/null
+++ b/Tests/WebDAV-Finder/182-MKCOL.request
@@ -0,0 +1,8 @@
+MKCOL /untitled%20folder HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+X-GCDWebServer-CreationDate: 2014-04-12T05:11:35+00:00
+
diff --git a/Tests/WebDAV-Finder/183-404.response b/Tests/WebDAV-Finder/183-404.response
new file mode 100755
index 0000000..af185d8
--- /dev/null
+++ b/Tests/WebDAV-Finder/183-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 194
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/._untitled folder" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/183-PROPFIND.request b/Tests/WebDAV-Finder/183-PROPFIND.request
new file mode 100755
index 0000000..e89dfb4
--- /dev/null
+++ b/Tests/WebDAV-Finder/183-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._untitled%20folder HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/184-404.response b/Tests/WebDAV-Finder/184-404.response
new file mode 100755
index 0000000..54e5d6e
--- /dev/null
+++ b/Tests/WebDAV-Finder/184-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/184-PROPFIND.request b/Tests/WebDAV-Finder/184-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/184-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/185-403.response b/Tests/WebDAV-Finder/185-403.response
new file mode 100755
index 0000000..78206ff
--- /dev/null
+++ b/Tests/WebDAV-Finder/185-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/185-PROPFIND.request b/Tests/WebDAV-Finder/185-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/185-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/186-403.response b/Tests/WebDAV-Finder/186-403.response
new file mode 100755
index 0000000..78206ff
--- /dev/null
+++ b/Tests/WebDAV-Finder/186-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/186-PROPFIND.request b/Tests/WebDAV-Finder/186-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/186-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/187-403.response b/Tests/WebDAV-Finder/187-403.response
new file mode 100755
index 0000000..e5a3b63
--- /dev/null
+++ b/Tests/WebDAV-Finder/187-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 205
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/187-PUT.request b/Tests/WebDAV-Finder/187-PUT.request
new file mode 100755
index 0000000..fa6a196
--- /dev/null
+++ b/Tests/WebDAV-Finder/187-PUT.request
@@ -0,0 +1,7 @@
+PUT /.DS_Store HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/188-404.response b/Tests/WebDAV-Finder/188-404.response
new file mode 100755
index 0000000..af185d8
--- /dev/null
+++ b/Tests/WebDAV-Finder/188-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 194
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/._untitled folder" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/188-PROPFIND.request b/Tests/WebDAV-Finder/188-PROPFIND.request
new file mode 100755
index 0000000..e89dfb4
--- /dev/null
+++ b/Tests/WebDAV-Finder/188-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._untitled%20folder HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/189-403.response b/Tests/WebDAV-Finder/189-403.response
new file mode 100755
index 0000000..78206ff
--- /dev/null
+++ b/Tests/WebDAV-Finder/189-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/189-PROPFIND.request b/Tests/WebDAV-Finder/189-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/189-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/190-207.response b/Tests/WebDAV-Finder/190-207.response
new file mode 100755
index 0000000..197a431
--- /dev/null
+++ b/Tests/WebDAV-Finder/190-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 332
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+
+/untitled%20folder/2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/190-PROPFIND.request b/Tests/WebDAV-Finder/190-PROPFIND.request
new file mode 100755
index 0000000..8370892
--- /dev/null
+++ b/Tests/WebDAV-Finder/190-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /untitled%20folder/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/191-404.response b/Tests/WebDAV-Finder/191-404.response
new file mode 100755
index 0000000..31ab01a
--- /dev/null
+++ b/Tests/WebDAV-Finder/191-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/191-PROPFIND.request b/Tests/WebDAV-Finder/191-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/191-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/192-404.response b/Tests/WebDAV-Finder/192-404.response
new file mode 100755
index 0000000..2331848
--- /dev/null
+++ b/Tests/WebDAV-Finder/192-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/192-PROPFIND.request b/Tests/WebDAV-Finder/192-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/192-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/193-404.response b/Tests/WebDAV-Finder/193-404.response
new file mode 100755
index 0000000..0f00b13
--- /dev/null
+++ b/Tests/WebDAV-Finder/193-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/193-PROPFIND.request b/Tests/WebDAV-Finder/193-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/193-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/194-404.response b/Tests/WebDAV-Finder/194-404.response
new file mode 100755
index 0000000..2de2c4c
--- /dev/null
+++ b/Tests/WebDAV-Finder/194-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 206
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/194-PROPFIND.request b/Tests/WebDAV-Finder/194-PROPFIND.request
new file mode 100755
index 0000000..1e426d6
--- /dev/null
+++ b/Tests/WebDAV-Finder/194-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/195-404.response b/Tests/WebDAV-Finder/195-404.response
new file mode 100755
index 0000000..601d76d
--- /dev/null
+++ b/Tests/WebDAV-Finder/195-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 231
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/195-PROPFIND.request b/Tests/WebDAV-Finder/195-PROPFIND.request
new file mode 100755
index 0000000..ff49099
--- /dev/null
+++ b/Tests/WebDAV-Finder/195-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/196-404.response b/Tests/WebDAV-Finder/196-404.response
new file mode 100755
index 0000000..5f51946
--- /dev/null
+++ b/Tests/WebDAV-Finder/196-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:35 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/196-PROPFIND.request b/Tests/WebDAV-Finder/196-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/196-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/197-207.response b/Tests/WebDAV-Finder/197-207.response
new file mode 100755
index 0000000..de91e7b4
--- /dev/null
+++ b/Tests/WebDAV-Finder/197-207.response
@@ -0,0 +1,15 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1353
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/untitled%20folder2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/197-PROPFIND.request b/Tests/WebDAV-Finder/197-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/197-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/198-207.response b/Tests/WebDAV-Finder/198-207.response
new file mode 100755
index 0000000..1584e52
--- /dev/null
+++ b/Tests/WebDAV-Finder/198-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 332
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+
+/untitled%20folder/2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/198-PROPFIND.request b/Tests/WebDAV-Finder/198-PROPFIND.request
new file mode 100755
index 0000000..1072da6
--- /dev/null
+++ b/Tests/WebDAV-Finder/198-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /untitled%20folder/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/199-404.response b/Tests/WebDAV-Finder/199-404.response
new file mode 100755
index 0000000..bdf45ca
--- /dev/null
+++ b/Tests/WebDAV-Finder/199-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/199-PROPFIND.request b/Tests/WebDAV-Finder/199-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/199-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/200-404.response b/Tests/WebDAV-Finder/200-404.response
new file mode 100755
index 0000000..7bbeb21
--- /dev/null
+++ b/Tests/WebDAV-Finder/200-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 183
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+HTTP Error 404HTTP Error 404: "/Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/200-PROPFIND.request b/Tests/WebDAV-Finder/200-PROPFIND.request
new file mode 100755
index 0000000..afc1cc6
--- /dev/null
+++ b/Tests/WebDAV-Finder/200-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/201-404.response b/Tests/WebDAV-Finder/201-404.response
new file mode 100755
index 0000000..7bbeb21
--- /dev/null
+++ b/Tests/WebDAV-Finder/201-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 183
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+HTTP Error 404HTTP Error 404: "/Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/201-PROPFIND.request b/Tests/WebDAV-Finder/201-PROPFIND.request
new file mode 100755
index 0000000..afc1cc6
--- /dev/null
+++ b/Tests/WebDAV-Finder/201-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/202-404.response b/Tests/WebDAV-Finder/202-404.response
new file mode 100755
index 0000000..ed068af
--- /dev/null
+++ b/Tests/WebDAV-Finder/202-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 194
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+HTTP Error 404HTTP Error 404: "/._untitled folder" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/202-PROPFIND.request b/Tests/WebDAV-Finder/202-PROPFIND.request
new file mode 100755
index 0000000..e89dfb4
--- /dev/null
+++ b/Tests/WebDAV-Finder/202-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._untitled%20folder HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/203-201.response b/Tests/WebDAV-Finder/203-201.response
new file mode 100755
index 0000000..e7eec91
--- /dev/null
+++ b/Tests/WebDAV-Finder/203-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
diff --git a/Tests/WebDAV-Finder/203-MOVE.request b/Tests/WebDAV-Finder/203-MOVE.request
new file mode 100755
index 0000000..afbbc68
--- /dev/null
+++ b/Tests/WebDAV-Finder/203-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /untitled%20folder/ HTTP/1.1
+Host: localhost:8080
+Destination: http://localhost:8080/Backup
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/204-404.response b/Tests/WebDAV-Finder/204-404.response
new file mode 100755
index 0000000..739c2c7
--- /dev/null
+++ b/Tests/WebDAV-Finder/204-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/204-PROPFIND.request b/Tests/WebDAV-Finder/204-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/204-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/205-404.response b/Tests/WebDAV-Finder/205-404.response
new file mode 100755
index 0000000..09d77a7
--- /dev/null
+++ b/Tests/WebDAV-Finder/205-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+HTTP Error 404HTTP Error 404: "/untitled folder" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/205-PROPFIND.request b/Tests/WebDAV-Finder/205-PROPFIND.request
new file mode 100755
index 0000000..a16130c
--- /dev/null
+++ b/Tests/WebDAV-Finder/205-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /untitled%20folder HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/206-404.response b/Tests/WebDAV-Finder/206-404.response
new file mode 100755
index 0000000..739c2c7
--- /dev/null
+++ b/Tests/WebDAV-Finder/206-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:36 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/206-PROPFIND.request b/Tests/WebDAV-Finder/206-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/206-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/207-404.response b/Tests/WebDAV-Finder/207-404.response
new file mode 100755
index 0000000..d30b64c
--- /dev/null
+++ b/Tests/WebDAV-Finder/207-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/207-PROPFIND.request b/Tests/WebDAV-Finder/207-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/207-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/208-207.response b/Tests/WebDAV-Finder/208-207.response
new file mode 100755
index 0000000..5a0aadf
--- /dev/null
+++ b/Tests/WebDAV-Finder/208-207.response
@@ -0,0 +1,15 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1342
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/208-PROPFIND.request b/Tests/WebDAV-Finder/208-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/208-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/209-404.response b/Tests/WebDAV-Finder/209-404.response
new file mode 100755
index 0000000..443b50f
--- /dev/null
+++ b/Tests/WebDAV-Finder/209-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/209-PROPFIND.request b/Tests/WebDAV-Finder/209-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/209-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/210-404.response b/Tests/WebDAV-Finder/210-404.response
new file mode 100755
index 0000000..e937eda
--- /dev/null
+++ b/Tests/WebDAV-Finder/210-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/210-PROPFIND.request b/Tests/WebDAV-Finder/210-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/210-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/211-404.response b/Tests/WebDAV-Finder/211-404.response
new file mode 100755
index 0000000..1af269c
--- /dev/null
+++ b/Tests/WebDAV-Finder/211-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/211-PROPFIND.request b/Tests/WebDAV-Finder/211-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/211-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/212-404.response b/Tests/WebDAV-Finder/212-404.response
new file mode 100755
index 0000000..d30b64c
--- /dev/null
+++ b/Tests/WebDAV-Finder/212-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/212-PROPFIND.request b/Tests/WebDAV-Finder/212-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/212-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/213-207.response b/Tests/WebDAV-Finder/213-207.response
new file mode 100755
index 0000000..5a0aadf
--- /dev/null
+++ b/Tests/WebDAV-Finder/213-207.response
@@ -0,0 +1,15 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1342
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/213-PROPFIND.request b/Tests/WebDAV-Finder/213-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/213-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/214-404.response b/Tests/WebDAV-Finder/214-404.response
new file mode 100755
index 0000000..443b50f
--- /dev/null
+++ b/Tests/WebDAV-Finder/214-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/214-PROPFIND.request b/Tests/WebDAV-Finder/214-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/214-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/215-404.response b/Tests/WebDAV-Finder/215-404.response
new file mode 100755
index 0000000..911392f
--- /dev/null
+++ b/Tests/WebDAV-Finder/215-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/215-PROPFIND.request b/Tests/WebDAV-Finder/215-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/215-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/216-404.response b/Tests/WebDAV-Finder/216-404.response
new file mode 100755
index 0000000..e937eda
--- /dev/null
+++ b/Tests/WebDAV-Finder/216-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/216-PROPFIND.request b/Tests/WebDAV-Finder/216-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/216-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/217-404.response b/Tests/WebDAV-Finder/217-404.response
new file mode 100755
index 0000000..1af269c
--- /dev/null
+++ b/Tests/WebDAV-Finder/217-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/217-PROPFIND.request b/Tests/WebDAV-Finder/217-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/217-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/218-404.response b/Tests/WebDAV-Finder/218-404.response
new file mode 100755
index 0000000..e0f7111
--- /dev/null
+++ b/Tests/WebDAV-Finder/218-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/218-PROPFIND.request b/Tests/WebDAV-Finder/218-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/218-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/219-404.response b/Tests/WebDAV-Finder/219-404.response
new file mode 100755
index 0000000..7481ef2
--- /dev/null
+++ b/Tests/WebDAV-Finder/219-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 206
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/219-PROPFIND.request b/Tests/WebDAV-Finder/219-PROPFIND.request
new file mode 100755
index 0000000..1e426d6
--- /dev/null
+++ b/Tests/WebDAV-Finder/219-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/220-404.response b/Tests/WebDAV-Finder/220-404.response
new file mode 100755
index 0000000..aa68721
--- /dev/null
+++ b/Tests/WebDAV-Finder/220-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 231
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/220-PROPFIND.request b/Tests/WebDAV-Finder/220-PROPFIND.request
new file mode 100755
index 0000000..ff49099
--- /dev/null
+++ b/Tests/WebDAV-Finder/220-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/221-404.response b/Tests/WebDAV-Finder/221-404.response
new file mode 100755
index 0000000..b6a9b39
--- /dev/null
+++ b/Tests/WebDAV-Finder/221-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:37 GMT
+
+HTTP Error 404HTTP Error 404: "/untitled folder" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/221-PROPFIND.request b/Tests/WebDAV-Finder/221-PROPFIND.request
new file mode 100755
index 0000000..a16130c
--- /dev/null
+++ b/Tests/WebDAV-Finder/221-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /untitled%20folder HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/222-207.response b/Tests/WebDAV-Finder/222-207.response
new file mode 100755
index 0000000..4801ad6
--- /dev/null
+++ b/Tests/WebDAV-Finder/222-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 321
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:38 GMT
+
+
+/Backup/2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/222-PROPFIND.request b/Tests/WebDAV-Finder/222-PROPFIND.request
new file mode 100755
index 0000000..a57ebaf
--- /dev/null
+++ b/Tests/WebDAV-Finder/222-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/223-404.response b/Tests/WebDAV-Finder/223-404.response
new file mode 100755
index 0000000..a58f70e
--- /dev/null
+++ b/Tests/WebDAV-Finder/223-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/223-PROPFIND.request b/Tests/WebDAV-Finder/223-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/223-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/224-404.response b/Tests/WebDAV-Finder/224-404.response
new file mode 100755
index 0000000..787fa06
--- /dev/null
+++ b/Tests/WebDAV-Finder/224-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/224-PROPFIND.request b/Tests/WebDAV-Finder/224-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/224-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/225-403.response b/Tests/WebDAV-Finder/225-403.response
new file mode 100755
index 0000000..a305bd8
--- /dev/null
+++ b/Tests/WebDAV-Finder/225-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/225-PROPFIND.request b/Tests/WebDAV-Finder/225-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/225-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/226-403.response b/Tests/WebDAV-Finder/226-403.response
new file mode 100755
index 0000000..a305bd8
--- /dev/null
+++ b/Tests/WebDAV-Finder/226-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/226-PROPFIND.request b/Tests/WebDAV-Finder/226-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/226-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/227-403.response b/Tests/WebDAV-Finder/227-403.response
new file mode 100755
index 0000000..48c41bc
--- /dev/null
+++ b/Tests/WebDAV-Finder/227-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 205
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/227-PUT.request b/Tests/WebDAV-Finder/227-PUT.request
new file mode 100755
index 0000000..fa6a196
--- /dev/null
+++ b/Tests/WebDAV-Finder/227-PUT.request
@@ -0,0 +1,7 @@
+PUT /.DS_Store HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/228-403.response b/Tests/WebDAV-Finder/228-403.response
new file mode 100755
index 0000000..a305bd8
--- /dev/null
+++ b/Tests/WebDAV-Finder/228-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/228-PROPFIND.request b/Tests/WebDAV-Finder/228-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/228-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/229-404.response b/Tests/WebDAV-Finder/229-404.response
new file mode 100755
index 0000000..8522102
--- /dev/null
+++ b/Tests/WebDAV-Finder/229-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/Backup/Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/229-PROPFIND.request b/Tests/WebDAV-Finder/229-PROPFIND.request
new file mode 100755
index 0000000..c520f17
--- /dev/null
+++ b/Tests/WebDAV-Finder/229-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/230-404.response b/Tests/WebDAV-Finder/230-404.response
new file mode 100755
index 0000000..8522102
--- /dev/null
+++ b/Tests/WebDAV-Finder/230-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/Backup/Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/230-PROPFIND.request b/Tests/WebDAV-Finder/230-PROPFIND.request
new file mode 100755
index 0000000..c520f17
--- /dev/null
+++ b/Tests/WebDAV-Finder/230-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/231-404.response b/Tests/WebDAV-Finder/231-404.response
new file mode 100755
index 0000000..a58f70e
--- /dev/null
+++ b/Tests/WebDAV-Finder/231-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 187
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/231-PROPFIND.request b/Tests/WebDAV-Finder/231-PROPFIND.request
new file mode 100755
index 0000000..b446ea8
--- /dev/null
+++ b/Tests/WebDAV-Finder/231-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/232-201.response b/Tests/WebDAV-Finder/232-201.response
new file mode 100755
index 0000000..f4baded
--- /dev/null
+++ b/Tests/WebDAV-Finder/232-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
diff --git a/Tests/WebDAV-Finder/232-MOVE.request b/Tests/WebDAV-Finder/232-MOVE.request
new file mode 100755
index 0000000..7932b4e
--- /dev/null
+++ b/Tests/WebDAV-Finder/232-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /Copy.txt HTTP/1.1
+Host: localhost:8080
+Destination: http://localhost:8080/Backup/Copy.txt
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/233-404.response b/Tests/WebDAV-Finder/233-404.response
new file mode 100755
index 0000000..851afa8
--- /dev/null
+++ b/Tests/WebDAV-Finder/233-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 194
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/Backup/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/233-PROPFIND.request b/Tests/WebDAV-Finder/233-PROPFIND.request
new file mode 100755
index 0000000..3f78310
--- /dev/null
+++ b/Tests/WebDAV-Finder/233-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/234-404.response b/Tests/WebDAV-Finder/234-404.response
new file mode 100755
index 0000000..851afa8
--- /dev/null
+++ b/Tests/WebDAV-Finder/234-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 194
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/Backup/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/234-PROPFIND.request b/Tests/WebDAV-Finder/234-PROPFIND.request
new file mode 100755
index 0000000..3f78310
--- /dev/null
+++ b/Tests/WebDAV-Finder/234-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/235-404.response b/Tests/WebDAV-Finder/235-404.response
new file mode 100755
index 0000000..25f9d52
--- /dev/null
+++ b/Tests/WebDAV-Finder/235-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 193
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/Backup/.DS_Store" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/235-PROPFIND.request b/Tests/WebDAV-Finder/235-PROPFIND.request
new file mode 100755
index 0000000..2bbb8cb
--- /dev/null
+++ b/Tests/WebDAV-Finder/235-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/236-207.response b/Tests/WebDAV-Finder/236-207.response
new file mode 100755
index 0000000..8c04c3b
--- /dev/null
+++ b/Tests/WebDAV-Finder/236-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 645
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+
+/Backup/2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+/Backup/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/236-PROPFIND.request b/Tests/WebDAV-Finder/236-PROPFIND.request
new file mode 100755
index 0000000..fdb35f2
--- /dev/null
+++ b/Tests/WebDAV-Finder/236-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/237-404.response b/Tests/WebDAV-Finder/237-404.response
new file mode 100755
index 0000000..9ff0206
--- /dev/null
+++ b/Tests/WebDAV-Finder/237-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/237-PROPFIND.request b/Tests/WebDAV-Finder/237-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/237-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/238-207.response b/Tests/WebDAV-Finder/238-207.response
new file mode 100755
index 0000000..5a48564
--- /dev/null
+++ b/Tests/WebDAV-Finder/238-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1025
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/238-PROPFIND.request b/Tests/WebDAV-Finder/238-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/238-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/239-207.response b/Tests/WebDAV-Finder/239-207.response
new file mode 100755
index 0000000..b8d8541
--- /dev/null
+++ b/Tests/WebDAV-Finder/239-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 321
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+
+/Backup/2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/239-PROPFIND.request b/Tests/WebDAV-Finder/239-PROPFIND.request
new file mode 100755
index 0000000..a57ebaf
--- /dev/null
+++ b/Tests/WebDAV-Finder/239-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/240-404.response b/Tests/WebDAV-Finder/240-404.response
new file mode 100755
index 0000000..4128a6a
--- /dev/null
+++ b/Tests/WebDAV-Finder/240-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/240-PROPFIND.request b/Tests/WebDAV-Finder/240-PROPFIND.request
new file mode 100755
index 0000000..e8c943d
--- /dev/null
+++ b/Tests/WebDAV-Finder/240-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/241-404.response b/Tests/WebDAV-Finder/241-404.response
new file mode 100755
index 0000000..770e8ac
--- /dev/null
+++ b/Tests/WebDAV-Finder/241-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/241-PROPFIND.request b/Tests/WebDAV-Finder/241-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/241-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/242-207.response b/Tests/WebDAV-Finder/242-207.response
new file mode 100755
index 0000000..b8d8541
--- /dev/null
+++ b/Tests/WebDAV-Finder/242-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 321
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+
+/Backup/2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/242-PROPFIND.request b/Tests/WebDAV-Finder/242-PROPFIND.request
new file mode 100755
index 0000000..a57ebaf
--- /dev/null
+++ b/Tests/WebDAV-Finder/242-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/243-404.response b/Tests/WebDAV-Finder/243-404.response
new file mode 100755
index 0000000..63f019f
--- /dev/null
+++ b/Tests/WebDAV-Finder/243-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:39 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/243-PROPFIND.request b/Tests/WebDAV-Finder/243-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/243-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/244-404.response b/Tests/WebDAV-Finder/244-404.response
new file mode 100755
index 0000000..9b93229
--- /dev/null
+++ b/Tests/WebDAV-Finder/244-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/244-PROPFIND.request b/Tests/WebDAV-Finder/244-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/244-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/245-404.response b/Tests/WebDAV-Finder/245-404.response
new file mode 100755
index 0000000..d5b2a51
--- /dev/null
+++ b/Tests/WebDAV-Finder/245-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/245-PROPFIND.request b/Tests/WebDAV-Finder/245-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/245-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/246-207.response b/Tests/WebDAV-Finder/246-207.response
new file mode 100755
index 0000000..6ec4e1a
--- /dev/null
+++ b/Tests/WebDAV-Finder/246-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1025
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/246-PROPFIND.request b/Tests/WebDAV-Finder/246-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/246-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/247-404.response b/Tests/WebDAV-Finder/247-404.response
new file mode 100755
index 0000000..0e3a468
--- /dev/null
+++ b/Tests/WebDAV-Finder/247-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/247-PROPFIND.request b/Tests/WebDAV-Finder/247-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/247-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/248-404.response b/Tests/WebDAV-Finder/248-404.response
new file mode 100755
index 0000000..58c6244
--- /dev/null
+++ b/Tests/WebDAV-Finder/248-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/248-PROPFIND.request b/Tests/WebDAV-Finder/248-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/248-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/249-207.response b/Tests/WebDAV-Finder/249-207.response
new file mode 100755
index 0000000..c002c72
--- /dev/null
+++ b/Tests/WebDAV-Finder/249-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 645
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+
+/Backup/2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+/Backup/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/249-PROPFIND.request b/Tests/WebDAV-Finder/249-PROPFIND.request
new file mode 100755
index 0000000..fdb35f2
--- /dev/null
+++ b/Tests/WebDAV-Finder/249-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/250-404.response b/Tests/WebDAV-Finder/250-404.response
new file mode 100755
index 0000000..adaac3a
--- /dev/null
+++ b/Tests/WebDAV-Finder/250-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 194
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+HTTP Error 404HTTP Error 404: "/Backup/._Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/250-PROPFIND.request b/Tests/WebDAV-Finder/250-PROPFIND.request
new file mode 100755
index 0000000..3f78310
--- /dev/null
+++ b/Tests/WebDAV-Finder/250-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/._Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/251-404.response b/Tests/WebDAV-Finder/251-404.response
new file mode 100755
index 0000000..30bc06a
--- /dev/null
+++ b/Tests/WebDAV-Finder/251-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+HTTP Error 404HTTP Error 404: "/Copy.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/251-PROPFIND.request b/Tests/WebDAV-Finder/251-PROPFIND.request
new file mode 100755
index 0000000..e8c943d
--- /dev/null
+++ b/Tests/WebDAV-Finder/251-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/252-207.response b/Tests/WebDAV-Finder/252-207.response
new file mode 100755
index 0000000..ed147cd
--- /dev/null
+++ b/Tests/WebDAV-Finder/252-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 321
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+
+/Backup/2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/252-PROPFIND.request b/Tests/WebDAV-Finder/252-PROPFIND.request
new file mode 100755
index 0000000..a57ebaf
--- /dev/null
+++ b/Tests/WebDAV-Finder/252-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/253-207.response b/Tests/WebDAV-Finder/253-207.response
new file mode 100755
index 0000000..2aabcdf
--- /dev/null
+++ b/Tests/WebDAV-Finder/253-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 410
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:40 GMT
+
+
+/Backup/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/253-PROPFIND.request b/Tests/WebDAV-Finder/253-PROPFIND.request
new file mode 100755
index 0000000..c520f17
--- /dev/null
+++ b/Tests/WebDAV-Finder/253-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Backup/Copy.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/254-404.response b/Tests/WebDAV-Finder/254-404.response
new file mode 100755
index 0000000..993fe04
--- /dev/null
+++ b/Tests/WebDAV-Finder/254-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:42 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/254-PROPFIND.request b/Tests/WebDAV-Finder/254-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/254-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/255-207.response b/Tests/WebDAV-Finder/255-207.response
new file mode 100755
index 0000000..d0277a1
--- /dev/null
+++ b/Tests/WebDAV-Finder/255-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 656
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:42 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/255-PROPFIND.request b/Tests/WebDAV-Finder/255-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/255-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/256-404.response b/Tests/WebDAV-Finder/256-404.response
new file mode 100755
index 0000000..e142501
--- /dev/null
+++ b/Tests/WebDAV-Finder/256-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:42 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/256-PROPFIND.request b/Tests/WebDAV-Finder/256-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/256-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/257-403.response b/Tests/WebDAV-Finder/257-403.response
new file mode 100755
index 0000000..02ed998
--- /dev/null
+++ b/Tests/WebDAV-Finder/257-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/257-PROPFIND.request b/Tests/WebDAV-Finder/257-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/257-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/258-403.response b/Tests/WebDAV-Finder/258-403.response
new file mode 100755
index 0000000..02ed998
--- /dev/null
+++ b/Tests/WebDAV-Finder/258-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/258-PROPFIND.request b/Tests/WebDAV-Finder/258-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/258-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/259-403.response b/Tests/WebDAV-Finder/259-403.response
new file mode 100755
index 0000000..5bb96ab
--- /dev/null
+++ b/Tests/WebDAV-Finder/259-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 205
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/259-PUT.request b/Tests/WebDAV-Finder/259-PUT.request
new file mode 100755
index 0000000..fa6a196
--- /dev/null
+++ b/Tests/WebDAV-Finder/259-PUT.request
@@ -0,0 +1,7 @@
+PUT /.DS_Store HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/260-403.response b/Tests/WebDAV-Finder/260-403.response
new file mode 100755
index 0000000..02ed998
--- /dev/null
+++ b/Tests/WebDAV-Finder/260-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 221
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 403HTTP Error 403: Retrieving properties for item name ".DS_Store" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/260-PROPFIND.request b/Tests/WebDAV-Finder/260-PROPFIND.request
new file mode 100755
index 0000000..1243b70
--- /dev/null
+++ b/Tests/WebDAV-Finder/260-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.DS_Store HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/261-207.response b/Tests/WebDAV-Finder/261-207.response
new file mode 100755
index 0000000..e6d9283
--- /dev/null
+++ b/Tests/WebDAV-Finder/261-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 656
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/261-PROPFIND.request b/Tests/WebDAV-Finder/261-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/261-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/262-404.response b/Tests/WebDAV-Finder/262-404.response
new file mode 100755
index 0000000..ba27008
--- /dev/null
+++ b/Tests/WebDAV-Finder/262-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/262-PROPFIND.request b/Tests/WebDAV-Finder/262-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/262-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/263-404.response b/Tests/WebDAV-Finder/263-404.response
new file mode 100755
index 0000000..4a6bab5
--- /dev/null
+++ b/Tests/WebDAV-Finder/263-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 239
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 404HTTP Error 404: "/images/.fde3d915-75dd-4368-a060-890a3c537750-67a2f-0-Spotlight" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/263-PROPFIND.request b/Tests/WebDAV-Finder/263-PROPFIND.request
new file mode 100755
index 0000000..bfdcefa
--- /dev/null
+++ b/Tests/WebDAV-Finder/263-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/.fde3d915-75dd-4368-a060-890a3c537750-67a2f-0-Spotlight HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/264-403.response b/Tests/WebDAV-Finder/264-403.response
new file mode 100755
index 0000000..e016214
--- /dev/null
+++ b/Tests/WebDAV-Finder/264-403.response
@@ -0,0 +1,8 @@
+HTTP/1.1 403 Forbidden
+Content-Length: 251
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 403HTTP Error 403: Uploading file name ".fde3d915-75dd-4368-a060-890a3c537750-67a2f-0-Spotlight" is not allowed
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/264-PUT.request b/Tests/WebDAV-Finder/264-PUT.request
new file mode 100755
index 0000000..04c37f3
--- /dev/null
+++ b/Tests/WebDAV-Finder/264-PUT.request
@@ -0,0 +1,7 @@
+PUT /images/.fde3d915-75dd-4368-a060-890a3c537750-67a2f-0-Spotlight HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/265-207.response b/Tests/WebDAV-Finder/265-207.response
new file mode 100755
index 0000000..e6d9283
--- /dev/null
+++ b/Tests/WebDAV-Finder/265-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 656
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/Green%20iPad.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/265-PROPFIND.request b/Tests/WebDAV-Finder/265-PROPFIND.request
new file mode 100755
index 0000000..ded319a
--- /dev/null
+++ b/Tests/WebDAV-Finder/265-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/266-204.response b/Tests/WebDAV-Finder/266-204.response
new file mode 100755
index 0000000..4417fb0
--- /dev/null
+++ b/Tests/WebDAV-Finder/266-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
diff --git a/Tests/WebDAV-Finder/266-DELETE.request b/Tests/WebDAV-Finder/266-DELETE.request
new file mode 100755
index 0000000..25a057b
--- /dev/null
+++ b/Tests/WebDAV-Finder/266-DELETE.request
@@ -0,0 +1,7 @@
+DELETE /images/Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/267-404.response b/Tests/WebDAV-Finder/267-404.response
new file mode 100755
index 0000000..ba27008
--- /dev/null
+++ b/Tests/WebDAV-Finder/267-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 200
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 404HTTP Error 404: "/images/._Green iPad.png" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/267-PROPFIND.request b/Tests/WebDAV-Finder/267-PROPFIND.request
new file mode 100755
index 0000000..be72318
--- /dev/null
+++ b/Tests/WebDAV-Finder/267-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images/._Green%20iPad.png HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/268-207.response b/Tests/WebDAV-Finder/268-207.response
new file mode 100755
index 0000000..bcf6f0e
--- /dev/null
+++ b/Tests/WebDAV-Finder/268-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 263
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+
+/images/HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/268-PROPFIND.request b/Tests/WebDAV-Finder/268-PROPFIND.request
new file mode 100755
index 0000000..e07634e
--- /dev/null
+++ b/Tests/WebDAV-Finder/268-PROPFIND.request
@@ -0,0 +1,15 @@
+PROPFIND /images/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 118
+Connection: keep-alive
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/269-204.response b/Tests/WebDAV-Finder/269-204.response
new file mode 100755
index 0000000..4417fb0
--- /dev/null
+++ b/Tests/WebDAV-Finder/269-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
diff --git a/Tests/WebDAV-Finder/269-DELETE.request b/Tests/WebDAV-Finder/269-DELETE.request
new file mode 100755
index 0000000..ef9ca46
--- /dev/null
+++ b/Tests/WebDAV-Finder/269-DELETE.request
@@ -0,0 +1,7 @@
+DELETE /images/ HTTP/1.1
+Host: localhost:8080
+Accept: */*
+Content-Length: 0
+Connection: keep-alive
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+
diff --git a/Tests/WebDAV-Finder/270-404.response b/Tests/WebDAV-Finder/270-404.response
new file mode 100755
index 0000000..24c47da
--- /dev/null
+++ b/Tests/WebDAV-Finder/270-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 404HTTP Error 404: "/._images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/270-PROPFIND.request b/Tests/WebDAV-Finder/270-PROPFIND.request
new file mode 100755
index 0000000..11b91ce
--- /dev/null
+++ b/Tests/WebDAV-Finder/270-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/271-404.response b/Tests/WebDAV-Finder/271-404.response
new file mode 100755
index 0000000..fb03432
--- /dev/null
+++ b/Tests/WebDAV-Finder/271-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 183
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 404HTTP Error 404: "/images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/271-PROPFIND.request b/Tests/WebDAV-Finder/271-PROPFIND.request
new file mode 100755
index 0000000..8a12332
--- /dev/null
+++ b/Tests/WebDAV-Finder/271-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/272-404.response b/Tests/WebDAV-Finder/272-404.response
new file mode 100755
index 0000000..8c4c725
--- /dev/null
+++ b/Tests/WebDAV-Finder/272-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/272-PROPFIND.request b/Tests/WebDAV-Finder/272-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/272-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/273-207.response b/Tests/WebDAV-Finder/273-207.response
new file mode 100755
index 0000000..8d4c12a
--- /dev/null
+++ b/Tests/WebDAV-Finder/273-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 791
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/273-PROPFIND.request b/Tests/WebDAV-Finder/273-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/273-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/274-404.response b/Tests/WebDAV-Finder/274-404.response
new file mode 100755
index 0000000..f581f98
--- /dev/null
+++ b/Tests/WebDAV-Finder/274-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/274-PROPFIND.request b/Tests/WebDAV-Finder/274-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/274-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/275-404.response b/Tests/WebDAV-Finder/275-404.response
new file mode 100755
index 0000000..d4de9cd
--- /dev/null
+++ b/Tests/WebDAV-Finder/275-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/275-PROPFIND.request b/Tests/WebDAV-Finder/275-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/275-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/276-207.response b/Tests/WebDAV-Finder/276-207.response
new file mode 100755
index 0000000..8d4c12a
--- /dev/null
+++ b/Tests/WebDAV-Finder/276-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 791
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:44 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/276-PROPFIND.request b/Tests/WebDAV-Finder/276-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/276-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/277-404.response b/Tests/WebDAV-Finder/277-404.response
new file mode 100755
index 0000000..d0978a6
--- /dev/null
+++ b/Tests/WebDAV-Finder/277-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 183
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:45 GMT
+
+HTTP Error 404HTTP Error 404: "/images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/277-PROPFIND.request b/Tests/WebDAV-Finder/277-PROPFIND.request
new file mode 100755
index 0000000..8a12332
--- /dev/null
+++ b/Tests/WebDAV-Finder/277-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/278-404.response b/Tests/WebDAV-Finder/278-404.response
new file mode 100755
index 0000000..d0978a6
--- /dev/null
+++ b/Tests/WebDAV-Finder/278-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 183
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:45 GMT
+
+HTTP Error 404HTTP Error 404: "/images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/278-PROPFIND.request b/Tests/WebDAV-Finder/278-PROPFIND.request
new file mode 100755
index 0000000..8a12332
--- /dev/null
+++ b/Tests/WebDAV-Finder/278-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/279-404.response b/Tests/WebDAV-Finder/279-404.response
new file mode 100755
index 0000000..d0978a6
--- /dev/null
+++ b/Tests/WebDAV-Finder/279-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 183
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:45 GMT
+
+HTTP Error 404HTTP Error 404: "/images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/279-PROPFIND.request b/Tests/WebDAV-Finder/279-PROPFIND.request
new file mode 100755
index 0000000..8a12332
--- /dev/null
+++ b/Tests/WebDAV-Finder/279-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/280-404.response b/Tests/WebDAV-Finder/280-404.response
new file mode 100755
index 0000000..9f90479
--- /dev/null
+++ b/Tests/WebDAV-Finder/280-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:45 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/280-PROPFIND.request b/Tests/WebDAV-Finder/280-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/280-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/281-207.response b/Tests/WebDAV-Finder/281-207.response
new file mode 100755
index 0000000..55da18a
--- /dev/null
+++ b/Tests/WebDAV-Finder/281-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 791
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:45 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/281-PROPFIND.request b/Tests/WebDAV-Finder/281-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/281-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/282-404.response b/Tests/WebDAV-Finder/282-404.response
new file mode 100755
index 0000000..70c7065
--- /dev/null
+++ b/Tests/WebDAV-Finder/282-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:45 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/282-PROPFIND.request b/Tests/WebDAV-Finder/282-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/282-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/283-404.response b/Tests/WebDAV-Finder/283-404.response
new file mode 100755
index 0000000..c02dece
--- /dev/null
+++ b/Tests/WebDAV-Finder/283-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:45 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/283-PROPFIND.request b/Tests/WebDAV-Finder/283-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/283-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/284-404.response b/Tests/WebDAV-Finder/284-404.response
new file mode 100755
index 0000000..d0978a6
--- /dev/null
+++ b/Tests/WebDAV-Finder/284-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 183
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:45 GMT
+
+HTTP Error 404HTTP Error 404: "/images" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/284-PROPFIND.request b/Tests/WebDAV-Finder/284-PROPFIND.request
new file mode 100755
index 0000000..8a12332
--- /dev/null
+++ b/Tests/WebDAV-Finder/284-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /images HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/285-404.response b/Tests/WebDAV-Finder/285-404.response
new file mode 100755
index 0000000..a7f2e9c
--- /dev/null
+++ b/Tests/WebDAV-Finder/285-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:52 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/285-PROPFIND.request b/Tests/WebDAV-Finder/285-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/285-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/286-207.response b/Tests/WebDAV-Finder/286-207.response
new file mode 100755
index 0000000..f0866bd
--- /dev/null
+++ b/Tests/WebDAV-Finder/286-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 791
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:52 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/286-PROPFIND.request b/Tests/WebDAV-Finder/286-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/286-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/287-404.response b/Tests/WebDAV-Finder/287-404.response
new file mode 100755
index 0000000..055cca8
--- /dev/null
+++ b/Tests/WebDAV-Finder/287-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:52 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/287-PROPFIND.request b/Tests/WebDAV-Finder/287-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/287-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/288-404.response b/Tests/WebDAV-Finder/288-404.response
new file mode 100755
index 0000000..4679e1e
--- /dev/null
+++ b/Tests/WebDAV-Finder/288-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:52 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/288-PROPFIND.request b/Tests/WebDAV-Finder/288-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/288-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/289-207.response b/Tests/WebDAV-Finder/289-207.response
new file mode 100755
index 0000000..918dee5
--- /dev/null
+++ b/Tests/WebDAV-Finder/289-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1043
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:52 GMT
+
+
+/Apple%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+/Apple%20Reports/Test%20File.txt2014-04-12T05:11:26+00:00Sat, 12 Apr 2014 05:11:26 GMT21HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/289-PROPFIND.request b/Tests/WebDAV-Finder/289-PROPFIND.request
new file mode 100755
index 0000000..08f95e5
--- /dev/null
+++ b/Tests/WebDAV-Finder/289-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/ HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/290-404.response b/Tests/WebDAV-Finder/290-404.response
new file mode 100755
index 0000000..8a94ab2
--- /dev/null
+++ b/Tests/WebDAV-Finder/290-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 231
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:52 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports/._Apple Economic Impact on Cupertino.pdf" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/290-PROPFIND.request b/Tests/WebDAV-Finder/290-PROPFIND.request
new file mode 100755
index 0000000..ff49099
--- /dev/null
+++ b/Tests/WebDAV-Finder/290-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/._Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/291-404.response b/Tests/WebDAV-Finder/291-404.response
new file mode 100755
index 0000000..fb532c4
--- /dev/null
+++ b/Tests/WebDAV-Finder/291-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 206
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:52 GMT
+
+HTTP Error 404HTTP Error 404: "/Apple Reports/._Test File.txt" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/291-PROPFIND.request b/Tests/WebDAV-Finder/291-PROPFIND.request
new file mode 100755
index 0000000..1e426d6
--- /dev/null
+++ b/Tests/WebDAV-Finder/291-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /Apple%20Reports/._Test%20File.txt HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/292-404.response b/Tests/WebDAV-Finder/292-404.response
new file mode 100755
index 0000000..be9bfc8
--- /dev/null
+++ b/Tests/WebDAV-Finder/292-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 180
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:53 GMT
+
+HTTP Error 404HTTP Error 404: "/._." does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/292-PROPFIND.request b/Tests/WebDAV-Finder/292-PROPFIND.request
new file mode 100755
index 0000000..2ea082e
--- /dev/null
+++ b/Tests/WebDAV-Finder/292-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._. HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/293-207.response b/Tests/WebDAV-Finder/293-207.response
new file mode 100755
index 0000000..0cae06a
--- /dev/null
+++ b/Tests/WebDAV-Finder/293-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 791
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:53 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Apple%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Backup2014-04-12T05:11:35+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/293-PROPFIND.request b/Tests/WebDAV-Finder/293-PROPFIND.request
new file mode 100755
index 0000000..db98647
--- /dev/null
+++ b/Tests/WebDAV-Finder/293-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 1
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/294-404.response b/Tests/WebDAV-Finder/294-404.response
new file mode 100755
index 0000000..8527131
--- /dev/null
+++ b/Tests/WebDAV-Finder/294-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:53 GMT
+
+HTTP Error 404HTTP Error 404: "/._Apple Reports" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/294-PROPFIND.request b/Tests/WebDAV-Finder/294-PROPFIND.request
new file mode 100755
index 0000000..40c58d3
--- /dev/null
+++ b/Tests/WebDAV-Finder/294-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Apple%20Reports HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/295-404.response b/Tests/WebDAV-Finder/295-404.response
new file mode 100755
index 0000000..4184c24
--- /dev/null
+++ b/Tests/WebDAV-Finder/295-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:53 GMT
+
+HTTP Error 404HTTP Error 404: "/._Backup" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/295-PROPFIND.request b/Tests/WebDAV-Finder/295-PROPFIND.request
new file mode 100755
index 0000000..c4eaa8e
--- /dev/null
+++ b/Tests/WebDAV-Finder/295-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /._Backup HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/296-404.response b/Tests/WebDAV-Finder/296-404.response
new file mode 100755
index 0000000..dd58bbe
--- /dev/null
+++ b/Tests/WebDAV-Finder/296-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 192
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:53 GMT
+
+HTTP Error 404HTTP Error 404: "/.TemporaryItems" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/296-PROPFIND.request b/Tests/WebDAV-Finder/296-PROPFIND.request
new file mode 100755
index 0000000..641f23b
--- /dev/null
+++ b/Tests/WebDAV-Finder/296-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.TemporaryItems HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/297-404.response b/Tests/WebDAV-Finder/297-404.response
new file mode 100755
index 0000000..25f9150
--- /dev/null
+++ b/Tests/WebDAV-Finder/297-404.response
@@ -0,0 +1,8 @@
+HTTP/1.1 404 Not Found
+Content-Length: 185
+Content-Type: text/html; charset=utf-8
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:53 GMT
+
+HTTP Error 404HTTP Error 404: "/.Trashes" does not exist
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/297-PROPFIND.request b/Tests/WebDAV-Finder/297-PROPFIND.request
new file mode 100755
index 0000000..6e98222
--- /dev/null
+++ b/Tests/WebDAV-Finder/297-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND /.Trashes HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Finder/298-207.response b/Tests/WebDAV-Finder/298-207.response
new file mode 100755
index 0000000..fb658e8
--- /dev/null
+++ b/Tests/WebDAV-Finder/298-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 314
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:11:53 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Finder/298-PROPFIND.request b/Tests/WebDAV-Finder/298-PROPFIND.request
new file mode 100755
index 0000000..d4c53d0
--- /dev/null
+++ b/Tests/WebDAV-Finder/298-PROPFIND.request
@@ -0,0 +1,18 @@
+PROPFIND / HTTP/1.1
+Host: localhost:8080
+Content-Type: text/xml
+Depth: 0
+Accept: */*
+User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64)
+Content-Length: 179
+Connection: keep-alive
+
+
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Transmit/001-200.response b/Tests/WebDAV-Transmit/001-200.response
new file mode 100755
index 0000000..060a947
--- /dev/null
+++ b/Tests/WebDAV-Transmit/001-200.response
@@ -0,0 +1,7 @@
+HTTP/1.1 200 OK
+Cache-Control: no-cache
+DAV: 1
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:49:26 GMT
+
diff --git a/Tests/WebDAV-Transmit/001-OPTIONS.request b/Tests/WebDAV-Transmit/001-OPTIONS.request
new file mode 100755
index 0000000..ec8fad3
--- /dev/null
+++ b/Tests/WebDAV-Transmit/001-OPTIONS.request
@@ -0,0 +1,7 @@
+OPTIONS / HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Keep-Alive:
+Connection: TE, Keep-Alive
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/002-207.response b/Tests/WebDAV-Transmit/002-207.response
new file mode 100755
index 0000000..23bf707
--- /dev/null
+++ b/Tests/WebDAV-Transmit/002-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 256
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:49:26 GMT
+
+
+/HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Transmit/002-PROPFIND.request b/Tests/WebDAV-Transmit/002-PROPFIND.request
new file mode 100755
index 0000000..a148d91
--- /dev/null
+++ b/Tests/WebDAV-Transmit/002-PROPFIND.request
@@ -0,0 +1,13 @@
+PROPFIND / HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Depth: 0
+Content-Length: 117
+Content-Type: application/xml
+
+
+
+
+
diff --git a/Tests/WebDAV-Transmit/003-207.response b/Tests/WebDAV-Transmit/003-207.response
new file mode 100755
index 0000000..5ae6b0b
--- /dev/null
+++ b/Tests/WebDAV-Transmit/003-207.response
@@ -0,0 +1,14 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 1106
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:49:26 GMT
+
+
+/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/Copy.txt2014-04-10T11:10:14+00:00Thu, 10 Apr 2014 11:10:14 GMT271HTTP/1.1 200 OK
+/images2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Transmit/003-PROPFIND.request b/Tests/WebDAV-Transmit/003-PROPFIND.request
new file mode 100755
index 0000000..382bf21
--- /dev/null
+++ b/Tests/WebDAV-Transmit/003-PROPFIND.request
@@ -0,0 +1,16 @@
+PROPFIND / HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Depth: 1
+Content-Length: 211
+Content-Type: application/xml
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Transmit/004-207.response b/Tests/WebDAV-Transmit/004-207.response
new file mode 100755
index 0000000..78ca91b
--- /dev/null
+++ b/Tests/WebDAV-Transmit/004-207.response
@@ -0,0 +1,12 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 700
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:49:29 GMT
+
+
+/PDF%20Reports/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf2013-05-01T12:01:13+00:00Wed, 01 May 2013 12:01:13 GMT181952HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Transmit/004-PROPFIND.request b/Tests/WebDAV-Transmit/004-PROPFIND.request
new file mode 100755
index 0000000..531a4c2
--- /dev/null
+++ b/Tests/WebDAV-Transmit/004-PROPFIND.request
@@ -0,0 +1,16 @@
+PROPFIND /PDF%20Reports/ HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Depth: 1
+Content-Length: 211
+Content-Type: application/xml
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Transmit/005-207.response b/Tests/WebDAV-Transmit/005-207.response
new file mode 100755
index 0000000..0a913a0
--- /dev/null
+++ b/Tests/WebDAV-Transmit/005-207.response
@@ -0,0 +1,13 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 998
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:49:30 GMT
+
+
+/images/2014-01-01T09:01:00+00:00HTTP/1.1 200 OK
+/images/capable_green_ipad_l.png2014-04-10T21:46:56+00:00Thu, 10 Apr 2014 21:46:56 GMT116066HTTP/1.1 200 OK
+/images/hero_mba_11.jpg2014-04-10T21:51:14+00:00Thu, 10 Apr 2014 21:51:14 GMT106799HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Transmit/005-PROPFIND.request b/Tests/WebDAV-Transmit/005-PROPFIND.request
new file mode 100755
index 0000000..fdc8d21
--- /dev/null
+++ b/Tests/WebDAV-Transmit/005-PROPFIND.request
@@ -0,0 +1,16 @@
+PROPFIND /images/ HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Depth: 1
+Content-Length: 211
+Content-Type: application/xml
+
+
+
+
+
+
+
+
diff --git a/Tests/WebDAV-Transmit/006-200.response b/Tests/WebDAV-Transmit/006-200.response
new file mode 100755
index 0000000..4f69d7e
Binary files /dev/null and b/Tests/WebDAV-Transmit/006-200.response differ
diff --git a/Tests/WebDAV-Transmit/006-GET.request b/Tests/WebDAV-Transmit/006-GET.request
new file mode 100755
index 0000000..9118593
--- /dev/null
+++ b/Tests/WebDAV-Transmit/006-GET.request
@@ -0,0 +1,6 @@
+GET /images/hero_mba_11.jpg HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/007-204.response b/Tests/WebDAV-Transmit/007-204.response
new file mode 100755
index 0000000..7af7908
--- /dev/null
+++ b/Tests/WebDAV-Transmit/007-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:49:42 GMT
+
diff --git a/Tests/WebDAV-Transmit/007-DELETE.request b/Tests/WebDAV-Transmit/007-DELETE.request
new file mode 100755
index 0000000..5a44e8d
--- /dev/null
+++ b/Tests/WebDAV-Transmit/007-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /images/hero_mba_11.jpg HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/008-201.response b/Tests/WebDAV-Transmit/008-201.response
new file mode 100755
index 0000000..e3a9e5b
--- /dev/null
+++ b/Tests/WebDAV-Transmit/008-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:49:48 GMT
+
diff --git a/Tests/WebDAV-Transmit/008-MOVE.request b/Tests/WebDAV-Transmit/008-MOVE.request
new file mode 100755
index 0000000..ec6316e
--- /dev/null
+++ b/Tests/WebDAV-Transmit/008-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Destination: http://localhost:8080/PDF%20Reports/Apple%20Economic%20Impact.pdf
+Overwrite: T
+
diff --git a/Tests/WebDAV-Transmit/009-201.response b/Tests/WebDAV-Transmit/009-201.response
new file mode 100755
index 0000000..9e23198
--- /dev/null
+++ b/Tests/WebDAV-Transmit/009-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:49:51 GMT
+
diff --git a/Tests/WebDAV-Transmit/009-MOVE.request b/Tests/WebDAV-Transmit/009-MOVE.request
new file mode 100755
index 0000000..1ded3c0
--- /dev/null
+++ b/Tests/WebDAV-Transmit/009-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /PDF%20Reports/ HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Destination: http://localhost:8080/Apple%20PDF%20Reports
+Overwrite: T
+
diff --git a/Tests/WebDAV-Transmit/010-207.response b/Tests/WebDAV-Transmit/010-207.response
new file mode 100755
index 0000000..831b125
--- /dev/null
+++ b/Tests/WebDAV-Transmit/010-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 256
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:50:00 GMT
+
+
+/HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Transmit/010-PROPFIND.request b/Tests/WebDAV-Transmit/010-PROPFIND.request
new file mode 100755
index 0000000..a148d91
--- /dev/null
+++ b/Tests/WebDAV-Transmit/010-PROPFIND.request
@@ -0,0 +1,13 @@
+PROPFIND / HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Depth: 0
+Content-Length: 117
+Content-Type: application/xml
+
+
+
+
+
diff --git a/Tests/WebDAV-Transmit/011-200.response b/Tests/WebDAV-Transmit/011-200.response
new file mode 100755
index 0000000..0d7087d
--- /dev/null
+++ b/Tests/WebDAV-Transmit/011-200.response
@@ -0,0 +1,13 @@
+HTTP/1.1 200 OK
+Connection: Close
+Server: GCDWebDAVServer
+Content-Type: text/plain
+Last-Modified: Thu, 10 Apr 2014 11:10:14 GMT
+Date: Sat, 12 Apr 2014 04:50:00 GMT
+Content-Length: 271
+Cache-Control: no-cache
+Etag: 73590261/1397128214/0
+
+For the colorful.
+
+Color is more than just a hue. It expresses a feeling. Makes a statement. Declares an allegiance. Color reveals your personality. iPhone 5c, in five anything-but-shy colors, does just that. It’s not just for lovers of color. It’s for the colorful.
diff --git a/Tests/WebDAV-Transmit/011-GET.request b/Tests/WebDAV-Transmit/011-GET.request
new file mode 100755
index 0000000..df1a296
--- /dev/null
+++ b/Tests/WebDAV-Transmit/011-GET.request
@@ -0,0 +1,6 @@
+GET /Copy.txt HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/012-201.response b/Tests/WebDAV-Transmit/012-201.response
new file mode 100755
index 0000000..aa2d92c
--- /dev/null
+++ b/Tests/WebDAV-Transmit/012-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:50:04 GMT
+
diff --git a/Tests/WebDAV-Transmit/012-PUT.request b/Tests/WebDAV-Transmit/012-PUT.request
new file mode 100755
index 0000000..bbbdef2
--- /dev/null
+++ b/Tests/WebDAV-Transmit/012-PUT.request
@@ -0,0 +1,12 @@
+PUT /Copy_safe_save_215004.txt HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Content-Length: 288
+
+For the colorful.
+
+Color is more than just a hue. It expresses a feeling. Makes a statement. Declares an allegiance. Color reveals your personality. iPhone 5c, in five anything-but-shy colors, does just that. It’s not just for lovers of color. It’s for the colorful.
+
+This is a test!
diff --git a/Tests/WebDAV-Transmit/013-204.response b/Tests/WebDAV-Transmit/013-204.response
new file mode 100755
index 0000000..e093e28
--- /dev/null
+++ b/Tests/WebDAV-Transmit/013-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:50:04 GMT
+
diff --git a/Tests/WebDAV-Transmit/013-DELETE.request b/Tests/WebDAV-Transmit/013-DELETE.request
new file mode 100755
index 0000000..2b92feb
--- /dev/null
+++ b/Tests/WebDAV-Transmit/013-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /Copy.txt HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/014-201.response b/Tests/WebDAV-Transmit/014-201.response
new file mode 100755
index 0000000..aa2d92c
--- /dev/null
+++ b/Tests/WebDAV-Transmit/014-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:50:04 GMT
+
diff --git a/Tests/WebDAV-Transmit/014-MOVE.request b/Tests/WebDAV-Transmit/014-MOVE.request
new file mode 100755
index 0000000..3362a1b
--- /dev/null
+++ b/Tests/WebDAV-Transmit/014-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /Copy_safe_save_215004.txt HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Destination: http://localhost:8080/Copy.txt
+Overwrite: T
+
diff --git a/Tests/WebDAV-Transmit/015-201.response b/Tests/WebDAV-Transmit/015-201.response
new file mode 100755
index 0000000..fa298e4
--- /dev/null
+++ b/Tests/WebDAV-Transmit/015-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:50:55 GMT
+
diff --git a/Tests/WebDAV-Transmit/015-PUT.request b/Tests/WebDAV-Transmit/015-PUT.request
new file mode 100755
index 0000000..7c8f138
--- /dev/null
+++ b/Tests/WebDAV-Transmit/015-PUT.request
@@ -0,0 +1,8 @@
+PUT /Test%20File.txt HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Content-Length: 21
+
+Nothing to see here!
diff --git a/Tests/WebDAV-Transmit/016-201.response b/Tests/WebDAV-Transmit/016-201.response
new file mode 100755
index 0000000..9fedb89
--- /dev/null
+++ b/Tests/WebDAV-Transmit/016-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:51:05 GMT
+
diff --git a/Tests/WebDAV-Transmit/016-MOVE.request b/Tests/WebDAV-Transmit/016-MOVE.request
new file mode 100755
index 0000000..50af176
--- /dev/null
+++ b/Tests/WebDAV-Transmit/016-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /Test%20File.txt HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Destination: http://localhost:8080/Apple%20PDF%20Reports/Test%20File.txt
+Overwrite: T
+
diff --git a/Tests/WebDAV-Transmit/017-207.response b/Tests/WebDAV-Transmit/017-207.response
new file mode 100755
index 0000000..1bcaf69
--- /dev/null
+++ b/Tests/WebDAV-Transmit/017-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 278
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:51:07 GMT
+
+
+/Apple%20PDF%20Reports/HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Transmit/017-PROPFIND.request b/Tests/WebDAV-Transmit/017-PROPFIND.request
new file mode 100755
index 0000000..70641f0
--- /dev/null
+++ b/Tests/WebDAV-Transmit/017-PROPFIND.request
@@ -0,0 +1,13 @@
+PROPFIND /Apple%20PDF%20Reports/ HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Depth: 0
+Content-Length: 117
+Content-Type: application/xml
+
+
+
+
+
diff --git a/Tests/WebDAV-Transmit/018-204.response b/Tests/WebDAV-Transmit/018-204.response
new file mode 100755
index 0000000..b4b83bb
--- /dev/null
+++ b/Tests/WebDAV-Transmit/018-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:51:07 GMT
+
diff --git a/Tests/WebDAV-Transmit/018-DELETE.request b/Tests/WebDAV-Transmit/018-DELETE.request
new file mode 100755
index 0000000..cf04d76
--- /dev/null
+++ b/Tests/WebDAV-Transmit/018-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /Apple%20PDF%20Reports/Apple%20Economic%20Impact.pdf HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/019-204.response b/Tests/WebDAV-Transmit/019-204.response
new file mode 100755
index 0000000..b4b83bb
--- /dev/null
+++ b/Tests/WebDAV-Transmit/019-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:51:07 GMT
+
diff --git a/Tests/WebDAV-Transmit/019-DELETE.request b/Tests/WebDAV-Transmit/019-DELETE.request
new file mode 100755
index 0000000..963e2e7
--- /dev/null
+++ b/Tests/WebDAV-Transmit/019-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /Apple%20PDF%20Reports/Test%20File.txt HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/020-207.response b/Tests/WebDAV-Transmit/020-207.response
new file mode 100755
index 0000000..d346913
--- /dev/null
+++ b/Tests/WebDAV-Transmit/020-207.response
@@ -0,0 +1,11 @@
+HTTP/1.1 207 Multi-Status
+Cache-Control: no-cache
+Content-Length: 256
+Content-Type: application/xml; charset="utf-8"
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:51:07 GMT
+
+
+/HTTP/1.1 200 OK
+
\ No newline at end of file
diff --git a/Tests/WebDAV-Transmit/020-PROPFIND.request b/Tests/WebDAV-Transmit/020-PROPFIND.request
new file mode 100755
index 0000000..a148d91
--- /dev/null
+++ b/Tests/WebDAV-Transmit/020-PROPFIND.request
@@ -0,0 +1,13 @@
+PROPFIND / HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Depth: 0
+Content-Length: 117
+Content-Type: application/xml
+
+
+
+
+
diff --git a/Tests/WebDAV-Transmit/021-204.response b/Tests/WebDAV-Transmit/021-204.response
new file mode 100755
index 0000000..b4b83bb
--- /dev/null
+++ b/Tests/WebDAV-Transmit/021-204.response
@@ -0,0 +1,6 @@
+HTTP/1.1 204 No Content
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 04:51:07 GMT
+
diff --git a/Tests/WebDAV-Transmit/021-DELETE.request b/Tests/WebDAV-Transmit/021-DELETE.request
new file mode 100755
index 0000000..f35149f
--- /dev/null
+++ b/Tests/WebDAV-Transmit/021-DELETE.request
@@ -0,0 +1,6 @@
+DELETE /Apple%20PDF%20Reports/ HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/022-201.response b/Tests/WebDAV-Transmit/022-201.response
new file mode 100755
index 0000000..645ffa7
--- /dev/null
+++ b/Tests/WebDAV-Transmit/022-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:08:32 GMT
+
diff --git a/Tests/WebDAV-Transmit/022-MKCOL.request b/Tests/WebDAV-Transmit/022-MKCOL.request
new file mode 100755
index 0000000..efd1ca8
--- /dev/null
+++ b/Tests/WebDAV-Transmit/022-MKCOL.request
@@ -0,0 +1,6 @@
+MKCOL /untitled%20folder/ HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+
diff --git a/Tests/WebDAV-Transmit/023-201.response b/Tests/WebDAV-Transmit/023-201.response
new file mode 100755
index 0000000..e9631c2
--- /dev/null
+++ b/Tests/WebDAV-Transmit/023-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:08:38 GMT
+
diff --git a/Tests/WebDAV-Transmit/023-MOVE.request b/Tests/WebDAV-Transmit/023-MOVE.request
new file mode 100755
index 0000000..70950a9
--- /dev/null
+++ b/Tests/WebDAV-Transmit/023-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /Copy.txt HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Destination: http://localhost:8080/untitled%20folder/Copy.txt
+Overwrite: T
+
diff --git a/Tests/WebDAV-Transmit/024-201.response b/Tests/WebDAV-Transmit/024-201.response
new file mode 100755
index 0000000..55ae4c5
--- /dev/null
+++ b/Tests/WebDAV-Transmit/024-201.response
@@ -0,0 +1,6 @@
+HTTP/1.1 201 Created
+Cache-Control: no-cache
+Connection: Close
+Server: GCDWebDAVServer
+Date: Sat, 12 Apr 2014 05:08:41 GMT
+
diff --git a/Tests/WebDAV-Transmit/024-MOVE.request b/Tests/WebDAV-Transmit/024-MOVE.request
new file mode 100755
index 0000000..bf87800
--- /dev/null
+++ b/Tests/WebDAV-Transmit/024-MOVE.request
@@ -0,0 +1,8 @@
+MOVE /untitled%20folder/ HTTP/1.1
+User-Agent: Transmit/4.4.6 neon/0.29.3
+Connection: TE
+TE: trailers
+Host: localhost:8080
+Destination: http://localhost:8080/My%20Folder
+Overwrite: T
+