summaryrefslogtreecommitdiff
path: root/src/unittests/fs/virtfs/virtfs1_basic.cc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-07-08 01:11:01 +0300
committerAndrei Karas <akaras@inbox.ru>2017-07-08 01:30:47 +0300
commitd684e1087bca633f81f32472acea724515b0e718 (patch)
tree0c47f0c0e695359d422228a008beac7424d68791 /src/unittests/fs/virtfs/virtfs1_basic.cc
parentc5a777d78b5eb4a829bb7aec76d7ce629f810bb8 (diff)
downloadplus-d684e1087bca633f81f32472acea724515b0e718.tar.gz
plus-d684e1087bca633f81f32472acea724515b0e718.tar.bz2
plus-d684e1087bca633f81f32472acea724515b0e718.tar.xz
plus-d684e1087bca633f81f32472acea724515b0e718.zip
Split virtfs1_unittests.cc into many files for reduce memory usage.
Diffstat (limited to 'src/unittests/fs/virtfs/virtfs1_basic.cc')
-rw-r--r--src/unittests/fs/virtfs/virtfs1_basic.cc59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/unittests/fs/virtfs/virtfs1_basic.cc b/src/unittests/fs/virtfs/virtfs1_basic.cc
new file mode 100644
index 000000000..3d8b21877
--- /dev/null
+++ b/src/unittests/fs/virtfs/virtfs1_basic.cc
@@ -0,0 +1,59 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2016-2017 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "unittests/unittests.h"
+
+#include "fs/files.h"
+
+#include "fs/virtfs/direntry.h"
+#include "fs/virtfs/fs.h"
+#include "fs/virtfs/rwops.h"
+#include "fs/virtfs/list.h"
+
+#include "utils/checkutils.h"
+#include "utils/delete2.h"
+#include "utils/foreach.h"
+#include "utils/stringutils.h"
+
+PRAGMA48(GCC diagnostic push)
+PRAGMA48(GCC diagnostic ignored "-Wshadow")
+#include <SDL_rwops.h>
+PRAGMA48(GCC diagnostic pop)
+
+#ifndef UNITTESTS_CATCH
+#include <algorithm>
+#endif // UNITTESTS_CATCH
+
+#include "debug.h"
+
+TEST_CASE("VirtFs1 getEntries", "")
+{
+ VirtFs::init(".");
+ REQUIRE(VirtFs::getEntries().empty());
+ REQUIRE(VirtFs::searchByRootInternal("test", std::string()) == nullptr);
+ VirtFs::deinit();
+}
+
+TEST_CASE("VirtFs1 getBaseDir", "")
+{
+ VirtFs::init(".");
+ REQUIRE(VirtFs::getBaseDir() != nullptr);
+ VirtFs::deinit();
+}