Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Logger logs harness seed and test execution keys in hex representation.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkauppila committed Jul 25, 2011
1 parent ff4cc49 commit 1d4ab24
Show file tree
Hide file tree
Showing 12 changed files with 71 additions and 32 deletions.
4 changes: 2 additions & 2 deletions test/test-automation/fuzzer/fuzzer.c
Expand Up @@ -50,7 +50,7 @@ GenerateExecKey(CRC32_CTX crcContext, char *runSeed, char *suiteName,

utl_crc32Calc(&crcContext, md5Context.digest, sizeof(md5Context.digest), &result);

return result;
return abs(result); // makes sure that the key is positive
}

void
Expand Down Expand Up @@ -135,7 +135,7 @@ RandomAsciiStringWithMaximumLength(int maxSize)

int counter = 0;
for( ; counter < size; ++counter) {
char character = (char) RandomPositiveIntegerInRange(1, 127);
char character = (char) RandomIntegerInRange(1, 127);
string[counter] = character;
}

Expand Down
24 changes: 12 additions & 12 deletions test/test-automation/fuzzer/fuzzer.h
Expand Up @@ -54,6 +54,18 @@ int RandomInteger();
int RandomPositiveInteger();


/*!
* todo add markup
*/
int RandomUint8BoundaryValue();


/*!
* todo add markup
*/
int RandomInt8BoundaryValue();


/*!
* Returns integer in range [min, max]. Min and max
* value can be negative values as long as min is smaller than max.
Expand Down Expand Up @@ -90,18 +102,6 @@ char *RandomAsciiString();
char *RandomAsciiStringWithMaximumLength(int maxLength);


/*!
* todo add markup
*/
int RandomUint8BoundaryValue();


/*!
* todo add markup
*/
int RandomInt8BoundaryValue();


/*!
* Generates execution key (used for random seed) for a test
*
Expand Down
2 changes: 1 addition & 1 deletion test/test-automation/logger.h
Expand Up @@ -28,7 +28,7 @@
* logging interface. See the headers of implementations (plain_logger.h or
* xml_logger.h) for more information.
*/
typedef void (*RunStartedFp)(int parameterCount, char *runnerParameters[], time_t eventTime, void *data);
typedef void (*RunStartedFp)(int parameterCount, char *runnerParameters[], char *runSeed, time_t eventTime, void *data);
typedef void (*RunEndedFp)(int testCount, int suiteCount, int testPassCount, int testFailCount,
int testSkippedCount, time_t endTime, double totalRuntime);

Expand Down
24 changes: 22 additions & 2 deletions test/test-automation/logger_helpers.c
Expand Up @@ -4,7 +4,7 @@
#include "logger_helpers.h"

/*!
* Helper functions. Turns the given integer in to a string
* Helper function. Turns the given integer in to a string
*
* Note: uses static buffer internally, so the return value
* isn't valid after the next call of this function. If you
Expand All @@ -23,7 +23,27 @@ char *IntToString(const int integer) {
}

/*!
* Helper functions. Turns the given double value in to a string
* Helper function. Turns the given integer in to a string in
* hex format.
*
* Note: uses static buffer internally, so the return value
* isn't valid after the next call of this function. If you
* want to retain the return value, make a copy of it
*
* \param integer The converted integer
* \returns Given integer as string in hex fomat
*/
char *IntToHexString(const int integer) {
static char buffer[256]; // malloc might work better
memset(buffer, 0, sizeof(buffer));

SDL_snprintf(buffer, sizeof(buffer), "%X", integer);

return buffer;
}

/*!
* Helper function. Turns the given double value in to a string
*
* Note: uses static buffer internally, so the return value
* isn't valid after the next call of this function. If you
Expand Down
2 changes: 2 additions & 0 deletions test/test-automation/logger_helpers.h
Expand Up @@ -5,6 +5,8 @@

char *IntToString(const int integer);

char *IntToHexString(const int integer);

char *DoubleToString(const double decimal);

char *TimestampToString(const time_t timestamp);
Expand Down
7 changes: 4 additions & 3 deletions test/test-automation/plain_logger.c
Expand Up @@ -37,10 +37,11 @@ Output(const int currentIndentLevel, const char *message, ...)
}

void
PlainRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime,
void *data)
PlainRunStarted(int parameterCount, char *runnerParameters[], char *runSeed,
time_t eventTime, void *data)
{
Output(indentLevel, "Test run started at %s", TimestampToString(eventTime));
Output(indentLevel, "Fuzzer seed is %s", runSeed);
Output(indentLevel, "Runner parameters: ");

int counter = 0;
Expand Down Expand Up @@ -83,7 +84,7 @@ void
PlainTestStarted(const char *testName, const char *suiteName,
const char *testDescription, int execKey, time_t startTime)
{
Output(indentLevel++, "Executing test: %s (in %s). Execution key: %d", testName, suiteName, execKey);
Output(indentLevel++, "Executing test: %s (in %s). Exec key: %X", testName, suiteName, execKey);
}

void
Expand Down
5 changes: 3 additions & 2 deletions test/test-automation/plain_logger.h
Expand Up @@ -8,12 +8,13 @@
*
* \param parameterCount How many parameters were given
* \param runnerParameters What parameters were given to the runner
* \param runSeed Fuzzer seed of the harness
* \param eventTime When the execution started
* \param data Any additional data logger needs
*
*/
void PlainRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime,
void *data);
void PlainRunStarted(int parameterCount, char *runnerParameters[], char *runSeed,
time_t eventTime, void *data);

/*!
* Prints out information about ending the test run.
Expand Down
3 changes: 1 addition & 2 deletions test/test-automation/runner.c
Expand Up @@ -1052,7 +1052,6 @@ main(int argc, char *argv[])

// print: Testing against SDL version fuu (rev: bar) if verbose == true


char *testSuiteName = NULL;
int suiteCounter = 0;

Expand Down Expand Up @@ -1081,7 +1080,7 @@ main(int argc, char *argv[])
return 0;
}

RunStarted(argc, argv, time(0), loggerData);
RunStarted(argc, argv, runSeed, time(0), loggerData);

if(execute_inproc && universal_timeout_enabled) {
Log(time(0), "Test timeout is not supported with in-proc execution.");
Expand Down
5 changes: 3 additions & 2 deletions test/test-automation/style.xsl
Expand Up @@ -169,8 +169,8 @@ div, h1 {
<h1>Test Report</h1>
<div>
<span class="title">Start time: </span><xsl:value-of select="testlog/startTime"/><br/>
<!-- and ended at <xsl:value-of select="testlog/endTime"/>.<br/>-->
<span class="title">Total runtime: </span><xsl:value-of select="testlog/totalRuntime"/> seconds.<br/>
<span class="title">Fuzz seed: </span><xsl:value-of select="testlog/seed"/><br/>
<span class="title">Harness parameters: </span>
<span xml:space="preserve">
<xsl:for-each select="testlog/parameters/parameter">
Expand All @@ -184,7 +184,6 @@ div, h1 {
<span>Tests in total: </span> <xsl:value-of select="testlog/numTests"/> (passed: <xsl:value-of select="testlog/numPassedTests"/>, failed: <xsl:value-of select="testlog/numFailedTests"/>, skipped: <xsl:value-of select="testlog/numSkippedTests"/>)
</div>
</div>

<div>
<br/>
<span class="bigtitle">Test Results</span><br/>
Expand Down Expand Up @@ -214,6 +213,7 @@ div, h1 {
(<xsl:value-of select="resultDescription"/>)
</span>
</xsl:if>
- exec-key: <xsl:value-of select="executionKey"/>
(Total runtime: <xsl:value-of select="totalRuntime"/> seconds)<br/>
Description: <span class="description"> <xsl:value-of select="description"/> </span><br/>
<span class="switch show-asserts" uid="{generate-id(assertSummary)}">[Show Assert Summary]</span><br/>
Expand Down Expand Up @@ -242,6 +242,7 @@ div, h1 {
</body>
</html>


</xsl:template>
</xsl:stylesheet>

4 changes: 2 additions & 2 deletions test/test-automation/testdummy/testdummy.c
Expand Up @@ -91,7 +91,7 @@ dummycase1(void *arg)
{
AssertEquals(5, 5, "Assert message");

for(; 1 ;) {
for(; 0 ;) {
Log(0, "uint8: %d", RandomUint8BoundaryValue());
Log(0, "int8: %d", RandomInt8BoundaryValue());

Expand All @@ -100,7 +100,7 @@ dummycase1(void *arg)
for(; 0 ;) {
int min = -5;
int max = 5;
int random = RandomPositiveIntegerInRange(min, max);
int random = RandomIntegerInRange(min, max);
if(random < min || random > max ) {
AssertFail("Generated incorrect integer");
}
Expand Down
19 changes: 16 additions & 3 deletions test/test-automation/xml_logger.c
Expand Up @@ -35,6 +35,7 @@ const char *documentRoot = "testlog";
const char *parametersElementName = "parameters";
const char *parameterElementName = "parameter";
const char *startTimeElementName = "startTime";
const char *seedElementName = "seed";
const char *execKeyElementName = "executionKey";
const char *numSuitesElementName = "numSuites";
const char *numTestElementName = "numTests";
Expand Down Expand Up @@ -109,14 +110,15 @@ XMLOutputter(const int currentIndentLevel,
}

void
XMLRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime,
void *data)
XMLRunStarted(int parameterCount, char *runnerParameters[], char *runSeed,
time_t eventTime, void *data)
{
char *xslStylesheet = (char *)data;

char *output = XMLOpenDocument(documentRoot, xslStylesheet);
XMLOutputter(indentLevel++, YES, output);

// log harness parameters
output = XMLOpenElement(parametersElementName);
XMLOutputter(indentLevel++, YES, output);

Expand All @@ -137,6 +139,17 @@ XMLRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime,
output = XMLCloseElement(parametersElementName);
XMLOutputter(--indentLevel, YES, output);

// log seed
output = XMLOpenElement(seedElementName);
XMLOutputter(indentLevel++, NO, output);

output = XMLAddContent(runSeed);
XMLOutputter(indentLevel, NO, output);

output = XMLCloseElement(seedElementName);
XMLOutputter(--indentLevel, YES, output);

// log start time
output = XMLOpenElement(startTimeElementName);
XMLOutputter(indentLevel++, NO, output);

Expand Down Expand Up @@ -340,7 +353,7 @@ XMLTestStarted(const char *testName, const char *suiteName,
output = XMLOpenElement(execKeyElementName);
XMLOutputter(indentLevel++, NO, output);

output = XMLAddContent(IntToString(execKey));
output = XMLAddContent(IntToHexString(execKey));
XMLOutputter(indentLevel, NO, output);

output = XMLCloseElement(execKeyElementName);
Expand Down
4 changes: 3 additions & 1 deletion test/test-automation/xml_logger.h
Expand Up @@ -8,10 +8,12 @@
*
* \param parameterCount How many parameters were given
* \param runnerParameters What parameters were given to the runner
* \param runSeed Fuzzer seed of the harness
* \param eventTime When the execution started
* \param data Any additional data logger needs
*/
void XMLRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime, void *data);
void XMLRunStarted(int parameterCount, char *runnerParameters[], char *runSeed,
time_t eventTime, void *data);

/*!
* Prints out information about ending the test run in XML
Expand Down

0 comments on commit 1d4ab24

Please sign in to comment.