/*
* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014
* Jonathan Schleifer <js@webkeks.org>
*
* 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 "OFINIFile.h"
#import "OFINICategory.h"
#import "OFString.h"
#import "OFFile.h"
#import "OFAutoreleasePool.h"
#import "TestsAppDelegate.h"
#ifdef _WIN32
# define NL @"\r\n"
#else
# define NL @"\n"
#endif
static OFString *module = @"OFINIFile";
@implementation TestsAppDelegate (OFINIFileTests)
- (void)INIFileTests
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFString *output = @"[tests]" NL
@"foo=baz" NL
@"foobar=baz" NL
@";comment" NL
@"new=new" NL
NL
@"[foobar]" NL
@";foobarcomment" NL
@"qux= asd" NL
NL
@"[types]" NL
@"integer=16" NL
@"bool=false" NL
@"float=0.25" NL
@"double=0.75" NL;
OFINIFile *file;
OFINICategory *category;
TEST(@"+[fileWithPath:]",
(file = [OFINIFile fileWithPath: @"testfile.ini"]))
TEST(@"-[categoryForName:]",
(category = [file categoryForName: @"tests"]))
module = @"OFINICategory";
TEST(@"-[stringForKey:]",
[[category stringForKey: @"foo"] isEqual: @"bar"])
TEST(@"-[setString:forKey:]",
R([category setString: @"baz"
forKey: @"foo"]) &&
R([category setString: @"new"
forKey: @"new"]))
category = [file categoryForName: @"types"];
TEST(@"-[integerForKey:defaultValue:]",
[category integerForKey: @"integer"
defaultValue: 2] == 0x20)
TEST(@"-[setInteger:forKey:]", R([category setInteger: 0x10
forKey: @"integer"]))
TEST(@"-[boolForKey:defaultValue:]",
[category boolForKey: @"bool"
defaultValue: false] == true)
TEST(@"-[setBool:forKey:]", R([category setBool: false
forKey: @"bool"]))
TEST(@"-[floatForKey:defaultValue:]",
[category floatForKey: @"float"
defaultValue: 1] == 0.5f)
TEST(@"-[setFloat:forKey:]", R([category setFloat: 0.25f
forKey: @"float"]))
TEST(@"-[doubleForKey:defaultValue:]",
[category doubleForKey: @"double"
defaultValue: 3] == 0.25)
TEST(@"-[setDouble:forKey:]", R([category setDouble: 0.75
forKey: @"double"]))
category = [file categoryForName: @"foobar"];
TEST(@"-[removeValueForKey:]",
R([category removeValueForKey: @"quxqux"]))
module = @"OFINIFile";
TEST(@"-[writeToFile:]", R([file writeToFile: @"tmpfile.ini"]) &&
[[OFString stringWithContentsOfFile: @"tmpfile.ini"]
isEqual: output])
[OFFile removeItemAtPath: @"tmpfile.ini"];
[pool drain];
}
@end