/*
* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017
* Jonathan Schleifer <js@heap.zone>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#import "OFHTTPCookieManager.h"
#import "OFArray.h"
#import "OFDate.h"
#import "OFHTTPCookie.h"
#import "OFURL.h"
#import "OFAutoreleasePool.h"
#import "TestsAppDelegate.h"
static OFString *module = @"OFHTTPCookieManager";
@implementation TestsAppDelegate (OFHTTPCookieManagerTests)
- (void)HTTPCookieManagerTests
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFHTTPCookieManager *manager = [OFHTTPCookieManager manager];
OFURL *URL[4];
OFHTTPCookie *cookie[5];
URL[0] = [OFURL URLWithString: @"http://heap.zone/foo"];
URL[1] = [OFURL URLWithString: @"https://heap.zone/foo/bar"];
URL[2] = [OFURL URLWithString: @"https://test.heap.zone/foo/bar"];
URL[3] = [OFURL URLWithString: @"http://webkeks.org/foo/bar"];
cookie[0] = [OFHTTPCookie cookieWithName: @"test"
value: @"1"
domain: @"heap.zone"];
TEST(@"-[addCookie:forURL:] #1", R([manager addCookie: cookie[0]
forURL: URL[0]]))
TEST(@"-[cookiesForURL:] #1",
[[manager cookiesForURL: URL[0]] isEqual:
[OFArray arrayWithObject: cookie[0]]])
cookie[1] = [OFHTTPCookie cookieWithName: @"test"
value: @"2"
domain: @"webkeks.org"];
TEST(@"-[addCookie:forURL:] #2", R([manager addCookie: cookie[1]
forURL: URL[0]]))
TEST(@"-[cookiesForURL:] #2",
[[manager cookiesForURL: URL[0]] isEqual:
[OFArray arrayWithObject: cookie[0]]] &&
[[manager cookiesForURL: URL[3]] isEqual: [OFArray array]])
cookie[2] = [OFHTTPCookie cookieWithName: @"test"
value: @"3"
domain: @"heap.zone"];
[cookie[2] setSecure: true];
TEST(@"-[addCookie:forURL:] #3", R([manager addCookie: cookie[2]
forURL: URL[1]]))
TEST(@"-[cookiesForURL:] #3",
[[manager cookiesForURL: URL[1]] isEqual:
[OFArray arrayWithObject: cookie[2]]] &&
[[manager cookiesForURL: URL[0]] isEqual: [OFArray array]])
[cookie[2] setExpires: [OFDate dateWithTimeIntervalSinceNow: -1]];
cookie[3] = [OFHTTPCookie cookieWithName: @"test"
value: @"4"
domain: @"heap.zone"];
[cookie[3] setDomain: @".heap.zone"];
TEST(@"-[addCookie:forURL:] #4", R([manager addCookie: cookie[3]
forURL: URL[1]]))
TEST(@"-[cookiesForURL:] #4",
[[manager cookiesForURL: URL[1]] isEqual:
[OFArray arrayWithObject: cookie[3]]] &&
[[manager cookiesForURL: URL[2]] isEqual:
[OFArray arrayWithObject: cookie[3]]])
cookie[4] = [OFHTTPCookie cookieWithName: @"bar"
value: @"5"
domain: @"test.heap.zone"];
TEST(@"-[addCookie:forURL:] #5", R([manager addCookie: cookie[4]
forURL: URL[0]]))
TEST(@"-[cookiesForURL:] #5",
[[manager cookiesForURL: URL[0]] isEqual:
[OFArray arrayWithObject: cookie[3]]] &&
[[manager cookiesForURL: URL[2]] isEqual:
[OFArray arrayWithObjects: cookie[3], cookie[4], nil]])
TEST(@"-[purgeExpiredCookies]",
[[manager cookies] isEqual:
[OFArray arrayWithObjects: cookie[2], cookie[3], cookie[4], nil]] &&
R([manager purgeExpiredCookies]) &&
[[manager cookies] isEqual:
[OFArray arrayWithObjects: cookie[3], cookie[4], nil]])
[pool drain];
}
@end