1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Don’t use google-test

This commit is contained in:
Marijn van der Werf
2016-09-04 08:12:48 +02:00
parent 6b525f5d6f
commit efc306b2af
5 changed files with 487 additions and 422 deletions

View File

@@ -15,54 +15,129 @@
#pragma endregion
#ifdef USE_GTEST
#include <algorithm>
#include <string>
#include <vector>
#include "gtest/gtest.h"
extern "C" {
#include "main.h"
#include "../src/rct2.h"
#include "../src/ride/ride.h"
#include "../src/ride/ride_data.h"
#include "../src/ride/track.h"
#include "../src/ride/track_data.h"
}
typedef struct {
uint8 rideType;
std::vector<uint8> trackTypes;
} TestCase;
extern const utf8string RideNames[91];
extern const utf8string TrackNames[256];
extern const utf8string FlatTrackNames[256];
int main(int argc, char *argv[]) {
initHooks();
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
std::vector<TestCase> testCases;
bool gTestColor = true;
for (int i = 0; i < argc; ++i) {
char *arg = argv[i];
if (strcmp(arg, "--gtest_color=no") == 0) {
gTestColor = false;
}
}
const utf8 *ansiRed = gTestColor ? "\x1b[31m" : "";
const utf8 *ansiGreen = gTestColor ? "\x1b[32m" : "";
const utf8 *ansiReset = gTestColor ? "\x1b[0m" : "";
for (uint8 rideType = 0; rideType < 91; rideType++) {
if (!rideIsImplemented(rideType)) {
continue;
}
TestCase testCase = {
.rideType = rideType
};
if (ride_type_has_flag(rideType, RIDE_TYPE_FLAG_FLAT_RIDE)) {
testCase.trackTypes.push_back(RideConstructionDefaultTrackType[rideType]);
} else {
for (int trackType = 0; trackType < 256; trackType++) {
if (rideSupportsTrackType(rideType, trackType)) {
testCase.trackTypes.push_back(trackType);
}
}
}
testCases.push_back(testCase);
}
int testCaseCount = (int) testCases.size();
int testCount = 0;
for (auto &&tc : testCases) {
testCount += tc.trackTypes.size();
}
printf("%s[==========]%s Running %d tests from %d test cases.\n", ansiGreen, ansiReset, testCount, testCaseCount);
printf("%s[----------]%s Global test environment set-up.\n", ansiGreen, ansiReset);
initHooks();
int successCount = 0;
std::vector<utf8string> failures;
for (auto &&tc : testCases) {
const utf8string rideTypeName = RideNames[tc.rideType];
printf("%s[----------]%s %lu tests from %s\n", ansiGreen, ansiReset, tc.trackTypes.size(), rideTypeName);
for (auto &&trackType : tc.trackTypes) {
utf8string trackTypeName;
if (ride_type_has_flag(tc.rideType, RIDE_TYPE_FLAG_FLAT_RIDE)) {
trackTypeName = FlatTrackNames[trackType];
} else {
trackTypeName = TrackNames[trackType];
}
printf("%s[ RUN ]%s %s.%s\n", ansiGreen, ansiReset, rideTypeName, trackTypeName);
bool success = testTrackPainting(tc.rideType, trackType);
if (!success) {
printf("%s[ FAILED ]%s %s.%s (0 ms)\n", ansiRed, ansiReset, rideTypeName, trackTypeName);
utf8string testCaseName = new utf8[64];
sprintf(testCaseName, "%s.%s", rideTypeName, trackTypeName);
failures.push_back(testCaseName);
} else {
printf("%s[ OK ]%s %s.%s (0 ms)\n", ansiGreen, ansiReset, rideTypeName, trackTypeName);
successCount++;
}
}
printf("%s[----------]%s %lu tests from %s (0 ms total)\n", ansiGreen, ansiReset, tc.trackTypes.size(),
rideTypeName);
}
printf("\n");
printf("%s[----------]%s Global test environment tear-down\n", ansiGreen, ansiReset);
printf("%s[==========]%s %d tests from %d test cases ran. (0 ms total).\n", ansiGreen, ansiReset, testCount,
testCaseCount);
printf("%s[ PASSED ]%s %d tests.\n", ansiGreen, ansiReset, successCount);
if (failures.size() > 0) {
printf("%s[ FAILED ]%s %lu tests, listed below:\n", ansiRed, ansiReset, failures.size());
for (auto &&failure : failures) {
printf("%s[ FAILED ]%s %s\n", ansiRed, ansiReset, failure);
delete(failure);
}
printf("\n");
printf("%lu FAILED TESTS\n", failures.size());
return 1;
}
return 0;
}
class RidePaintTest : public testing::TestWithParam<uint8> {
};
TEST_P(RidePaintTest, TestRidePainting) {
bool success = testRide(GetParam());
ASSERT_TRUE(success);
}
std::vector<uint8> ReadTestCasesFromDisk() {
std::vector<uint8> rides;
for (int i = 0; i < 91; i++) {
if (!rideIsImplemented(i)) {
continue;
}
rides.push_back(i);
}
return rides;
}
inline std::string CustomParamNameFunction(const ::testing::TestParamInfo<uint8>& info) {
return std::to_string(info.param);
}
INSTANTIATE_TEST_CASE_P(
ParameterizedTest, // Instantiation name can be chosen arbitrarily.
RidePaintTest,
testing::ValuesIn(ReadTestCasesFromDisk()),
CustomParamNameFunction
);
#endif // USE_GTEST