From c04dcc2e7d834218ef2d4194331e383402495ae1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 20:07:22 +0200 Subject: Adding upstream version 2:20.4+dfsg. Signed-off-by: Daniel Baumann --- xbmc/video/test/TestStacks.cpp | 74 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 xbmc/video/test/TestStacks.cpp (limited to 'xbmc/video/test/TestStacks.cpp') diff --git a/xbmc/video/test/TestStacks.cpp b/xbmc/video/test/TestStacks.cpp new file mode 100644 index 0000000..f5d92ea --- /dev/null +++ b/xbmc/video/test/TestStacks.cpp @@ -0,0 +1,74 @@ +/* + * Copyright (C) 2022 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#include "FileItem.h" +#include "filesystem/Directory.h" +#include "test/TestUtils.h" + +#include + +#include + +using namespace XFILE; + +namespace +{ +const std::string VIDEO_EXTENSIONS = ".mpg|.mpeg|.mp4|.mkv|.mk3d|.iso"; +} + +class TestStacks : public ::testing::Test +{ +protected: + TestStacks() = default; + ~TestStacks() override = default; +}; + +TEST_F(TestStacks, TestMovieFilesStackFilesAB) +{ + const std::string movieFolder = + XBMC_REF_FILE_PATH("xbmc/video/test/testdata/moviestack_ab/Movie-(2001)"); + CFileItemList items; + CDirectory::GetDirectory(movieFolder, items, VIDEO_EXTENSIONS, DIR_FLAG_DEFAULTS); + // make sure items has 2 items (the two movie parts) + EXPECT_EQ(items.Size(), 2); + // stack the items and make sure we end up with a single movie + items.Stack(); + EXPECT_EQ(items.Size(), 1); + // check the single item in the stack is a stack:// + EXPECT_EQ(items.Get(0)->IsStack(), true); +} + +TEST_F(TestStacks, TestMovieFilesStackFilesPart) +{ + const std::string movieFolder = + XBMC_REF_FILE_PATH("xbmc/video/test/testdata/moviestack_part/Movie_(2001)"); + CFileItemList items; + CDirectory::GetDirectory(movieFolder, items, VIDEO_EXTENSIONS, DIR_FLAG_DEFAULTS); + // make sure items has 3 items (the three movie parts) + EXPECT_EQ(items.Size(), 3); + // stack the items and make sure we end up with a single movie + items.Stack(); + EXPECT_EQ(items.Size(), 1); + // check the single item in the stack is a stack:// + EXPECT_EQ(items.Get(0)->IsStack(), true); +} + +TEST_F(TestStacks, TestMovieFilesStackDvdIso) +{ + const std::string movieFolder = + XBMC_REF_FILE_PATH("xbmc/video/test/testdata/moviestack_dvdiso/Movie_(2001)"); + CFileItemList items; + CDirectory::GetDirectory(movieFolder, items, VIDEO_EXTENSIONS, DIR_FLAG_DEFAULTS); + // make sure items has 2 items (the two dvd isos) + EXPECT_EQ(items.Size(), 2); + // stack the items and make sure we end up with a single movie + items.Stack(); + EXPECT_EQ(items.Size(), 1); + // check the single item in the stack is a stack:// + EXPECT_EQ(items.Get(0)->IsStack(), true); +} -- cgit v1.2.3