SDL-mirror/test/test-automation/fuzzer/fuzzer.h

123 lines
3 KiB
C
Raw Normal View History

2011-07-24 18:58:36 +03:00
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef _FUZZER_H
#define _FUZZER_H
#include <SDL/SDL_stdinc.h>
2011-07-24 18:58:36 +03:00
#include "utl_crc32.h"
#include "utl_md5.h"
#include "utl_random.h"
2011-07-24 18:58:36 +03:00
/*!
* Inits the fuzzer for a test
*/
void InitFuzzer(Uint64 execKey);
2011-07-24 18:58:36 +03:00
2011-07-24 18:58:36 +03:00
/*!
* Deinits the fuzzer (for a test)
*/
void DeinitFuzzer();
/*!
* Returns a random integer
2011-07-24 18:58:36 +03:00
*
* \returns Generated integer
*/
2011-08-03 20:43:32 +03:00
Sint32 RandomInteger();
2011-07-24 18:58:36 +03:00
2011-07-24 18:58:36 +03:00
/*!
* Returns a random positive integer
2011-07-24 18:58:36 +03:00
*
* \returns Generated integer
*/
2011-08-03 20:43:32 +03:00
Uint32 RandomPositiveInteger();
/*!
* todo add markup
*/
2011-08-03 20:43:32 +03:00
Uint8 RandomUint8BoundaryValue(Uint8 boundary1, Uint8 boundary2, SDL_bool validDomain);
/*!
* todo add markup
*/
2011-08-03 20:43:32 +03:00
Sint8 RandomSint8BoundaryValue();
/*!
2011-08-03 20:43:32 +03:00
* Returns integer in range [min, max] (inclusive).
* Min and max values can be negative values.
* If Max in smaller tham min, then the values are swapped.
* Min and max are the same value, that value will be returned.
*
2011-08-03 20:43:32 +03:00
* \returns Generated integer
*/
2011-08-03 20:43:32 +03:00
Sint32 RandomIntegerInRange(Sint32 min, Sint32 max);
2011-07-24 18:58:36 +03:00
/*!
* Generates random null-terminated string. The maximum length for
* the string is 255 characters and it can contain ASCII characters
* from 1 to 127.
*
* Note: Returned string needs to be deallocated.
2011-07-24 18:58:36 +03:00
*
* \returns newly allocated random string
*/
char *RandomAsciiString();
2011-07-24 18:58:36 +03:00
/*!
* Generates random null-terminated string. The maximum length for
* the string is defined by maxLenght parameter.
* String can contain ASCII characters from 1 to 127.
*
* Note: Returned string needs to be deallocated.
2011-07-24 18:58:36 +03:00
*
* \param maxLength Maximum length of the generated string
*
* \returns newly allocated random string
*/
char *RandomAsciiStringWithMaximumLength(int maxLength);
2011-07-24 18:58:36 +03:00
/*!
* Generates execution key (used for random seed) for a test
*
* \param runSeed Seed of the harness
* \param suiteName Test suite name
* \param testName Test name
* \param iteration Number of test iteration
*
* \return Generated execution key as blob of 16 bytes. It needs be deallocated.
* On error, returns NULL.
2011-07-24 18:58:36 +03:00
*/
Uint64 GenerateExecKey(char *runSeed, char *suiteName, char *testName, int interationNumber);
2011-07-24 18:58:36 +03:00
2011-08-03 20:43:32 +03:00
2011-07-24 18:58:36 +03:00
#endif