mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Make sure unittests don't try to write to cwd
This commit is contained in:
parent
6b9250e4ef
commit
45561b89a4
5
.github/workflows/linux.yml
vendored
5
.github/workflows/linux.yml
vendored
@ -73,7 +73,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: |
|
||||||
./bin/minetest --run-unittests
|
mkdir nowrite
|
||||||
|
chmod a-w nowrite
|
||||||
|
cd nowrite
|
||||||
|
../bin/minetest --run-unittests
|
||||||
|
|
||||||
# Older clang version (should be close to our minimum supported version)
|
# Older clang version (should be close to our minimum supported version)
|
||||||
clang_7:
|
clang_7:
|
||||||
|
@ -37,6 +37,7 @@ private:
|
|||||||
void testGetBanName();
|
void testGetBanName();
|
||||||
void testGetBanDescription();
|
void testGetBanDescription();
|
||||||
|
|
||||||
|
std::string m_testbm, m_testbm2;
|
||||||
void reinitTestEnv();
|
void reinitTestEnv();
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -61,32 +62,31 @@ void TestBan::runTests(IGameDef *gamedef)
|
|||||||
|
|
||||||
reinitTestEnv();
|
reinitTestEnv();
|
||||||
TEST(testGetBanDescription);
|
TEST(testGetBanDescription);
|
||||||
|
|
||||||
// Delete leftover files
|
|
||||||
reinitTestEnv();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// This module is stateful due to disk writes, add helper to remove files
|
|
||||||
void TestBan::reinitTestEnv()
|
void TestBan::reinitTestEnv()
|
||||||
{
|
{
|
||||||
fs::DeleteSingleFileOrEmptyDirectory("testbm.txt");
|
m_testbm = getTestTempDirectory().append(DIR_DELIM "testbm.txt");
|
||||||
fs::DeleteSingleFileOrEmptyDirectory("testbm2.txt");
|
m_testbm2 = getTestTempDirectory().append(DIR_DELIM "testbm2.txt");
|
||||||
|
|
||||||
|
fs::DeleteSingleFileOrEmptyDirectory(m_testbm);
|
||||||
|
fs::DeleteSingleFileOrEmptyDirectory(m_testbm2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestBan::testCreate()
|
void TestBan::testCreate()
|
||||||
{
|
{
|
||||||
// test save on object removal
|
// test save on object removal
|
||||||
{
|
{
|
||||||
BanManager bm("testbm.txt");
|
BanManager bm(m_testbm);
|
||||||
}
|
}
|
||||||
|
|
||||||
UASSERT(std::ifstream("testbm.txt", std::ios::binary).is_open());
|
UASSERT(std::ifstream(m_testbm, std::ios::binary).is_open());
|
||||||
|
|
||||||
// test manual save
|
// test manual save
|
||||||
{
|
{
|
||||||
BanManager bm("testbm2.txt");
|
BanManager bm(m_testbm2);
|
||||||
bm.save();
|
bm.save();
|
||||||
UASSERT(std::ifstream("testbm2.txt", std::ios::binary).is_open());
|
UASSERT(std::ifstream(m_testbm2, std::ios::binary).is_open());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ void TestBan::testAdd()
|
|||||||
std::string bm_test1_entry = "192.168.0.246";
|
std::string bm_test1_entry = "192.168.0.246";
|
||||||
std::string bm_test1_result = "test_username";
|
std::string bm_test1_result = "test_username";
|
||||||
|
|
||||||
BanManager bm("testbm.txt");
|
BanManager bm(m_testbm);
|
||||||
bm.add(bm_test1_entry, bm_test1_result);
|
bm.add(bm_test1_entry, bm_test1_result);
|
||||||
|
|
||||||
UASSERT(bm.getBanName(bm_test1_entry) == bm_test1_result);
|
UASSERT(bm.getBanName(bm_test1_entry) == bm_test1_result);
|
||||||
@ -109,7 +109,7 @@ void TestBan::testRemove()
|
|||||||
std::string bm_test2_entry = "192.168.0.250";
|
std::string bm_test2_entry = "192.168.0.250";
|
||||||
std::string bm_test2_result = "test_username7";
|
std::string bm_test2_result = "test_username7";
|
||||||
|
|
||||||
BanManager bm("testbm.txt");
|
BanManager bm(m_testbm);
|
||||||
|
|
||||||
// init data
|
// init data
|
||||||
bm.add(bm_test1_entry, bm_test1_result);
|
bm.add(bm_test1_entry, bm_test1_result);
|
||||||
@ -125,7 +125,7 @@ void TestBan::testRemove()
|
|||||||
|
|
||||||
void TestBan::testModificationFlag()
|
void TestBan::testModificationFlag()
|
||||||
{
|
{
|
||||||
BanManager bm("testbm.txt");
|
BanManager bm(m_testbm);
|
||||||
bm.add("192.168.0.247", "test_username");
|
bm.add("192.168.0.247", "test_username");
|
||||||
UASSERT(bm.isModified());
|
UASSERT(bm.isModified());
|
||||||
|
|
||||||
@ -145,7 +145,7 @@ void TestBan::testGetBanName()
|
|||||||
std::string bm_test1_entry = "192.168.0.247";
|
std::string bm_test1_entry = "192.168.0.247";
|
||||||
std::string bm_test1_result = "test_username";
|
std::string bm_test1_result = "test_username";
|
||||||
|
|
||||||
BanManager bm("testbm.txt");
|
BanManager bm(m_testbm);
|
||||||
bm.add(bm_test1_entry, bm_test1_result);
|
bm.add(bm_test1_entry, bm_test1_result);
|
||||||
|
|
||||||
// Test with valid entry
|
// Test with valid entry
|
||||||
@ -162,7 +162,7 @@ void TestBan::testGetBanDescription()
|
|||||||
|
|
||||||
std::string bm_test1_result = "192.168.0.247|test_username";
|
std::string bm_test1_result = "192.168.0.247|test_username";
|
||||||
|
|
||||||
BanManager bm("testbm.txt");
|
BanManager bm(m_testbm);
|
||||||
bm.add(bm_test1_entry, bm_test1_entry2);
|
bm.add(bm_test1_entry, bm_test1_entry2);
|
||||||
|
|
||||||
UASSERT(bm.getBanDescription(bm_test1_entry) == bm_test1_result);
|
UASSERT(bm.getBanDescription(bm_test1_entry) == bm_test1_result);
|
||||||
|
Loading…
Reference in New Issue
Block a user