| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /*
- * Copyright 2010-2025 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bx/blob/master/LICENSE
- */
- #include "test.h"
- #include <bx/settings.h>
- #include <bx/file.h>
- TEST_CASE("Settings", "")
- {
- bx::FilePath filePath;
- filePath.set(bx::Dir::Temp);
- filePath.join("settings.ini");
- bx::DefaultAllocator allocator;
- bx::Settings settings(&allocator);
- settings.set("meh/podmac", "true");
- settings.set("test/foo/bar/abvgd", "1389");
- bx::FileWriter writer;
- if (bx::open(&writer, filePath, false, bx::ErrorIgnore{}) )
- {
- bx::write(&writer, settings, bx::ErrorIgnore{});
- bx::close(&writer);
- }
- REQUIRE(settings.get("meh").isEmpty() );
- REQUIRE(0 == bx::strCmp(settings.get("meh/podmac"), "true") );
- REQUIRE(0 == bx::strCmp(settings.get("test/foo/bar/abvgd"), "1389") );
- settings.remove("meh/podmac");
- REQUIRE(settings.get("meh/podmac").isEmpty() );
- settings.clear();
- bx::FileReader reader;
- if (bx::open(&reader, filePath, bx::ErrorIgnore{}) )
- {
- bx::read(&reader, settings, bx::ErrorIgnore{});
- bx::close(&reader);
- }
- REQUIRE(settings.get("meh").isEmpty() );
- REQUIRE(0 == bx::strCmp(settings.get("meh/podmac"), "true") );
- REQUIRE(0 == bx::strCmp(settings.get("test/foo/bar/abvgd"), "1389") );
- }
|