/*
* Copyright (c) 2008, 2009, 2010, 2011, 2012
* 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 "OFString.h"
#import "OFFile.h"
#import "OFAutoreleasePool.h"
#import "TestsAppDelegate.h"
#ifdef _PSP
# include <pspmoduleinfo.h>
# include <pspkernel.h>
# include <pspdebug.h>
PSP_MODULE_INFO("ObjFW Tests", 0, 0, 0);
#endif
OF_APPLICATION_DELEGATE(TestsAppDelegate)
@implementation TestsAppDelegate
- (void)outputString: (OFString*)str
withColor: (int)color
{
#if defined(_PSP)
char i, space = ' ';
int y = pspDebugScreenGetY();
pspDebugScreenSetXY(0, y);
for (i = 0; i < 68; i++)
pspDebugScreenPrintData(&space, 1);
switch (color) {
case 0:
pspDebugScreenSetTextColor(0x00FFFF);
break;
case 1:
pspDebugScreenSetTextColor(0x00FF00);
break;
case 2:
pspDebugScreenSetTextColor(0x0000FF);
break;
}
pspDebugScreenSetXY(0, y);
pspDebugScreenPrintData([str UTF8String], [str UTF8StringLength]);
#elif defined(STDOUT)
switch (color) {
case 0:
[of_stdout writeString: @"\r\033[K\033[1;33m"];
break;
case 1:
[of_stdout writeString: @"\r\033[K\033[1;32m"];
break;
case 2:
[of_stdout writeString: @"\r\033[K\033[1;31m"];
break;
}
[of_stdout writeString: str];
[of_stdout writeString: @"\033[m"];
#else
# error No output method!
#endif
}
- (void)outputTesting: (OFString*)test
inModule: (OFString*)module
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[self outputString: [OFString stringWithFormat: @"[%@] %@: testing...",
module, test]
withColor: 0];
[pool release];
}
- (void)outputSuccess: (OFString*)test
inModule: (OFString*)module
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[self outputString: [OFString stringWithFormat: @"[%@] %@: ok\n",
module, test]
withColor: 1];
[pool release];
}
- (void)outputFailure: (OFString*)test
inModule: (OFString*)module
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
[self outputString: [OFString stringWithFormat: @"[%@] %@: failed\n",
module, test]
withColor: 2];
[pool release];
}
- (void)applicationDidFinishLaunching
{
#ifdef _PSP
pspDebugScreenInit();
#endif
[self objectTests];
#ifdef OF_HAVE_BLOCKS
[self blockTests];
#endif
[self MD5HashTests];
[self SHA1HashTests];
[self stringTests];
[self dataArrayTests];
[self arrayTests];
[self dictionaryTests];
[self listTests];
[self setTests];
[self dateTests];
[self numberTests];
[self streamTests];
[self TCPSocketTests];
#ifdef OF_THREADS
[self threadTests];
#endif
[self URLTests];
#ifdef OF_THREADS
[self HTTPRequestTests];
#endif
[self XMLParserTests];
[self XMLNodeTests];
[self XMLElementBuilderTests];
[self serializationTests];
[self JSONTests];
#ifdef OF_PLUGINS
[self pluginTests];
#endif
#ifdef OF_HAVE_PROPERTIES
[self propertiesTests];
#endif
if (fails > 0)
[OFApplication terminateWithStatus: fails];
}
@end