1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-05 19:31:04 +00:00

Code style fixes.

This commit is contained in:
SFENCE 2024-09-04 19:15:39 +02:00 committed by sfence
parent 24e9db07ec
commit af3f696423
43 changed files with 493 additions and 484 deletions

View file

@ -42,14 +42,14 @@ const char *TestSettings::config_text_before =
"floaty_thing = 1.1\n"
"stringy_thing = asd /( ¤%&(/\" BLÖÄRP\n"
"coord = (1, 2, 4.5)\n"
"coord_invalid = (1,2,3\n"
"coord_invalid_2 = 1, 2, 3 test\n"
"coord_invalid_3 = (test, something, stupid)\n"
"coord_invalid_4 = (1, test, 3)\n"
"coord_invalid_5 = ()\n"
"coord_invalid_6 = (1, 2)\n"
"coord_invalid_7 = (1)\n"
"coord_no_parenthesis = 1,2,3\n"
"coord_invalid = (1,2,3\n"
"coord_invalid_2 = 1, 2, 3 test\n"
"coord_invalid_3 = (test, something, stupid)\n"
"coord_invalid_4 = (1, test, 3)\n"
"coord_invalid_5 = ()\n"
"coord_invalid_6 = (1, 2)\n"
"coord_invalid_7 = (1)\n"
"coord_no_parenthesis = 1,2,3\n"
" # this is just a comment\n"
"this is an invalid line\n"
"asdf = {\n"
@ -103,14 +103,14 @@ const char *TestSettings::config_text_after =
"}\n"
"zoop = true\n"
"coord2 = (1,2,3.25)\n"
"coord_invalid = (1,2,3\n"
"coord_invalid_2 = 1, 2, 3 test\n"
"coord_invalid_3 = (test, something, stupid)\n"
"coord_invalid_4 = (1, test, 3)\n"
"coord_invalid_5 = ()\n"
"coord_invalid_6 = (1, 2)\n"
"coord_invalid_7 = (1)\n"
"coord_no_parenthesis = 1,2,3\n"
"coord_invalid = (1,2,3\n"
"coord_invalid_2 = 1, 2, 3 test\n"
"coord_invalid_3 = (test, something, stupid)\n"
"coord_invalid_4 = (1, test, 3)\n"
"coord_invalid_5 = ()\n"
"coord_invalid_6 = (1, 2)\n"
"coord_invalid_7 = (1)\n"
"coord_no_parenthesis = 1,2,3\n"
"floaty_thing_2 = 1.25\n"
"groupy_thing = {\n"
" animals = cute\n"
@ -169,20 +169,20 @@ void TestSettings::testAllSettings()
UASSERT(s.getV3F("coord2").value().Y == 2.0);
UASSERT(s.getV3F("coord2").value().Z == 3.25);
std::optional<v3f> testNotExist;
UASSERT(!s.getV3FNoEx("coord_not_exist", testNotExist));
EXCEPTION_CHECK(SettingNotFoundException, s.getV3F("coord_not_exist"));
std::optional<v3f> testNotExist;
UASSERT(!s.getV3FNoEx("coord_not_exist", testNotExist));
EXCEPTION_CHECK(SettingNotFoundException, s.getV3F("coord_not_exist"));
UASSERT(!s.getV3F("coord_invalid").has_value());
UASSERT(!s.getV3F("coord_invalid_2").has_value());
UASSERT(!s.getV3F("coord_invalid_3").has_value());
UASSERT(!s.getV3F("coord_invalid_4").has_value());
UASSERT(!s.getV3F("coord_invalid_5").has_value());
UASSERT(!s.getV3F("coord_invalid_6").has_value());
UASSERT(!s.getV3F("coord_invalid_7").has_value());
UASSERT(!s.getV3F("coord_invalid").has_value());
UASSERT(!s.getV3F("coord_invalid_2").has_value());
UASSERT(!s.getV3F("coord_invalid_3").has_value());
UASSERT(!s.getV3F("coord_invalid_4").has_value());
UASSERT(!s.getV3F("coord_invalid_5").has_value());
UASSERT(!s.getV3F("coord_invalid_6").has_value());
UASSERT(!s.getV3F("coord_invalid_7").has_value());
std::optional<v3f> testNoParenthesis = s.getV3F("coord_no_parenthesis");
UASSERT(testNoParenthesis.value() == v3f(1, 2, 3));
std::optional<v3f> testNoParenthesis = s.getV3F("coord_no_parenthesis");
UASSERT(testNoParenthesis.value() == v3f(1, 2, 3));
// Test settings groups
Settings *group = s.getGroup("asdf");