mirror of https://github.com/encounter/SDL.git
Test: Refactored and formatted math test suite.
This commit is contained in:
parent
0f630e9177
commit
9eb09d2392
|
@ -7,6 +7,26 @@
|
||||||
#include "SDL.h"
|
#include "SDL.h"
|
||||||
#include "SDL_test.h"
|
#include "SDL_test.h"
|
||||||
|
|
||||||
|
/* ================= Test Structs ================== */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stores a single input and the expected result
|
||||||
|
*/
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
double input;
|
||||||
|
double expected;
|
||||||
|
} d_to_d;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stores a pair of inputs and the expected result
|
||||||
|
*/
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
double x_input, y_input;
|
||||||
|
double expected;
|
||||||
|
} dd_to_d;
|
||||||
|
|
||||||
/* ================= Test Case Implementation ================== */
|
/* ================= Test Case Implementation ================== */
|
||||||
|
|
||||||
/* SDL_floor tests functions */
|
/* SDL_floor tests functions */
|
||||||
|
@ -14,7 +34,9 @@
|
||||||
/**
|
/**
|
||||||
* \brief Checks edge cases (0 and infinity) for themselves.
|
* \brief Checks edge cases (0 and infinity) for themselves.
|
||||||
*/
|
*/
|
||||||
static int floor_edgeCases(void* args) {
|
static int
|
||||||
|
floor_edgeCases(void *args)
|
||||||
|
{
|
||||||
double result;
|
double result;
|
||||||
|
|
||||||
result = SDL_floor(INFINITY);
|
result = SDL_floor(INFINITY);
|
||||||
|
@ -37,7 +59,9 @@ static int floor_edgeCases(void* args) {
|
||||||
/**
|
/**
|
||||||
* \brief Checks the NaN case.
|
* \brief Checks the NaN case.
|
||||||
*/
|
*/
|
||||||
static int floor_nanCase(void* args) {
|
static int
|
||||||
|
floor_nanCase(void *args)
|
||||||
|
{
|
||||||
SDLTest_AssertCheck(isnan(SDL_floor(NAN)), "Floor(nan), expected nan");
|
SDLTest_AssertCheck(isnan(SDL_floor(NAN)), "Floor(nan), expected nan");
|
||||||
return TEST_COMPLETED;
|
return TEST_COMPLETED;
|
||||||
}
|
}
|
||||||
|
@ -45,10 +69,20 @@ static int floor_nanCase(void* args) {
|
||||||
/**
|
/**
|
||||||
* \brief Checks round values (x.0) for themselves
|
* \brief Checks round values (x.0) for themselves
|
||||||
*/
|
*/
|
||||||
static int floor_roundNumbersCases(void* args) {
|
static int
|
||||||
|
floor_roundNumbersCases(void *args)
|
||||||
|
{
|
||||||
Uint32 i;
|
Uint32 i;
|
||||||
const double round_cases[] = {1.0, -1.0, 15.0, -15.0,
|
const double round_cases[] = {
|
||||||
125.0, -125.0, 1024.0, -1024.0};
|
1.0,
|
||||||
|
-1.0,
|
||||||
|
15.0,
|
||||||
|
-15.0,
|
||||||
|
125.0,
|
||||||
|
-125.0,
|
||||||
|
1024.0,
|
||||||
|
-1024.0
|
||||||
|
};
|
||||||
for (i = 0; i < SDL_arraysize(round_cases); i++) {
|
for (i = 0; i < SDL_arraysize(round_cases); i++) {
|
||||||
const double result = SDL_floor(round_cases[i]);
|
const double result = SDL_floor(round_cases[i]);
|
||||||
SDLTest_AssertCheck(result == round_cases[i],
|
SDLTest_AssertCheck(result == round_cases[i],
|
||||||
|
@ -61,15 +95,22 @@ static int floor_roundNumbersCases(void* args) {
|
||||||
/**
|
/**
|
||||||
* \brief Checks a set of fractions
|
* \brief Checks a set of fractions
|
||||||
*/
|
*/
|
||||||
static int floor_fractionCases(void* args) {
|
static int
|
||||||
|
floor_fractionCases(void *args)
|
||||||
|
{
|
||||||
Uint32 i;
|
Uint32 i;
|
||||||
const struct {
|
const d_to_d frac_cases[] = {
|
||||||
double input, expected;
|
{ 1.0 / 2.0, 0.0 },
|
||||||
} frac_cases[] = {{1.0 / 2.0, 0.0}, {-1.0 / 2.0, -1.0},
|
{ -1.0 / 2.0, -1.0 },
|
||||||
{4.0 / 3.0, 1.0}, {-4.0 / 3.0, -2.0},
|
{ 4.0 / 3.0, 1.0 },
|
||||||
{76.0 / 7.0, 10.0}, {-76.0 / 7.0, -11.0},
|
{ -4.0 / 3.0, -2.0 },
|
||||||
{535.0 / 8.0, 66.0}, {-535.0 / 8.0, -67.0},
|
{ 76.0 / 7.0, 10.0 },
|
||||||
{19357.0 / 53.0, 365.0}, {-19357.0 / 53.0, -366.0}};
|
{ -76.0 / 7.0, -11.0 },
|
||||||
|
{ 535.0 / 8.0, 66.0 },
|
||||||
|
{ -535.0 / 8.0, -67.0 },
|
||||||
|
{ 19357.0 / 53.0, 365.0 },
|
||||||
|
{ -19357.0 / 53.0, -366.0 }
|
||||||
|
};
|
||||||
for (i = 0; i < SDL_arraysize(frac_cases); i++) {
|
for (i = 0; i < SDL_arraysize(frac_cases); i++) {
|
||||||
const double result = SDL_floor(frac_cases[i].input);
|
const double result = SDL_floor(frac_cases[i].input);
|
||||||
SDLTest_AssertCheck(result == frac_cases[i].expected,
|
SDLTest_AssertCheck(result == frac_cases[i].expected,
|
||||||
|
@ -82,13 +123,17 @@ static int floor_fractionCases(void* args) {
|
||||||
/**
|
/**
|
||||||
* \brief Checks a range of values between 0 and UINT32_MAX
|
* \brief Checks a range of values between 0 and UINT32_MAX
|
||||||
*/
|
*/
|
||||||
static int floor_rangeTest(void* args) {
|
static int
|
||||||
|
floor_rangeTest(void *args)
|
||||||
|
{
|
||||||
const Uint32 ITERATIONS = 10000000;
|
const Uint32 ITERATIONS = 10000000;
|
||||||
const Uint32 STEP = SDL_MAX_UINT32 / ITERATIONS;
|
const Uint32 STEP = SDL_MAX_UINT32 / ITERATIONS;
|
||||||
Uint32 i;
|
Uint32 i;
|
||||||
double test_value = 0.0;
|
double test_value = 0.0;
|
||||||
|
|
||||||
SDLTest_AssertPass("Floor: Testing a range of %u values with %u steps",
|
SDLTest_AssertPass("Floor: Testing a range of %u values with %u steps",
|
||||||
ITERATIONS, STEP);
|
ITERATIONS, STEP);
|
||||||
|
|
||||||
for (i = 0; i < ITERATIONS; i++, test_value += STEP) {
|
for (i = 0; i < ITERATIONS; i++, test_value += STEP) {
|
||||||
double result;
|
double result;
|
||||||
/* These are tested elsewhere */
|
/* These are tested elsewhere */
|
||||||
|
@ -112,21 +157,27 @@ static int floor_rangeTest(void* args) {
|
||||||
|
|
||||||
static const SDLTest_TestCaseReference floorTest1 = {
|
static const SDLTest_TestCaseReference floorTest1 = {
|
||||||
(SDLTest_TestCaseFp) floor_edgeCases, "floor_edgeCases",
|
(SDLTest_TestCaseFp) floor_edgeCases, "floor_edgeCases",
|
||||||
"Check positive and negative infinity and 0", TEST_ENABLED};
|
"Check positive and negative infinity and 0", TEST_ENABLED
|
||||||
|
};
|
||||||
static const SDLTest_TestCaseReference floorTest2 = {
|
static const SDLTest_TestCaseReference floorTest2 = {
|
||||||
(SDLTest_TestCaseFp) floor_nanCase, "floor_nanCase",
|
(SDLTest_TestCaseFp) floor_nanCase, "floor_nanCase",
|
||||||
"Check the NaN special case", TEST_ENABLED};
|
"Check the NaN special case", TEST_ENABLED
|
||||||
|
};
|
||||||
static const SDLTest_TestCaseReference floorTest3 = {
|
static const SDLTest_TestCaseReference floorTest3 = {
|
||||||
(SDLTest_TestCaseFp) floor_roundNumbersCases, "floor_roundNumberCases",
|
(SDLTest_TestCaseFp) floor_roundNumbersCases, "floor_roundNumberCases",
|
||||||
"Check a set of round numbers", TEST_ENABLED};
|
"Check a set of round numbers", TEST_ENABLED
|
||||||
|
};
|
||||||
static const SDLTest_TestCaseReference floorTest4 = {
|
static const SDLTest_TestCaseReference floorTest4 = {
|
||||||
(SDLTest_TestCaseFp) floor_fractionCases, "floor_fractionCases",
|
(SDLTest_TestCaseFp) floor_fractionCases, "floor_fractionCases",
|
||||||
"Check a set of fractions", TEST_ENABLED};
|
"Check a set of fractions", TEST_ENABLED
|
||||||
|
};
|
||||||
static const SDLTest_TestCaseReference floorTest5 = {
|
static const SDLTest_TestCaseReference floorTest5 = {
|
||||||
(SDLTest_TestCaseFp) floor_rangeTest, "floor_rangeTest",
|
(SDLTest_TestCaseFp) floor_rangeTest, "floor_rangeTest",
|
||||||
"Check a range of positive integer", TEST_ENABLED};
|
"Check a range of positive integer", TEST_ENABLED
|
||||||
|
};
|
||||||
|
|
||||||
static const SDLTest_TestCaseReference *mathTests[] = {
|
static const SDLTest_TestCaseReference *mathTests[] = {
|
||||||
&floorTest1, &floorTest2, &floorTest3, &floorTest4, &floorTest5, NULL};
|
&floorTest1, &floorTest2, &floorTest3, &floorTest4, &floorTest5, NULL
|
||||||
|
};
|
||||||
|
|
||||||
SDLTest_TestSuiteReference mathTestSuite = { "Math", NULL, mathTests, NULL };
|
SDLTest_TestSuiteReference mathTestSuite = { "Math", NULL, mathTests, NULL };
|
||||||
|
|
Loading…
Reference in New Issue