[cosmetics] update date in GPL header
[vuplus_xbmc] / xbmc / utils / test / TestFileUtils.cpp
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://www.xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #include "utils/FileUtils.h"
22 #include "filesystem/File.h"
23
24 #include "test/TestUtils.h"
25
26 #include "gtest/gtest.h"
27
28 TEST(TestFileUtils, DeleteItem_CFileItemPtr)
29 {
30   XFILE::CFile *tmpfile;
31   CStdString tmpfilepath;
32
33   ASSERT_TRUE((tmpfile = XBMC_CREATETEMPFILE("")));
34   tmpfilepath = XBMC_TEMPFILEPATH(tmpfile);
35
36   CFileItemPtr item(new CFileItem(tmpfilepath));
37   item->SetPath(tmpfilepath);
38   item->m_bIsFolder = false;
39   item->Select(true);
40
41   EXPECT_TRUE(CFileUtils::DeleteItem(item));
42 }
43
44 TEST(TestFileUtils, DeleteItem_CStdString)
45 {
46   XFILE::CFile *tmpfile;
47
48   ASSERT_TRUE((tmpfile = XBMC_CREATETEMPFILE("")));
49   EXPECT_TRUE(CFileUtils::DeleteItem(XBMC_TEMPFILEPATH(tmpfile)));
50 }
51
52 /* Executing RenameFile() requires input from the user */
53 // static bool RenameFile(const CStdString &strFile);