mirror of
https://github.com/nzbget/nzbget.git
synced 2025-12-23 22:27:45 -05:00
234 lines
9.1 KiB
C++
234 lines
9.1 KiB
C++
/*
|
|
* This file is part of nzbget. See <http://nzbget.net>.
|
|
*
|
|
* Copyright (C) 2016-2017 Andrey Prygunkov <hugbug@users.sourceforge.net>
|
|
*
|
|
* 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
|
|
* (at your option) 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 "nzbget.h"
|
|
|
|
#include "catch.h"
|
|
|
|
#include "Options.h"
|
|
#include "RarRenamer.h"
|
|
#include "FileSystem.h"
|
|
#include "TestUtil.h"
|
|
|
|
class RarRenamerMock: public RarRenamer
|
|
{
|
|
public:
|
|
RarRenamerMock();
|
|
};
|
|
|
|
RarRenamerMock::RarRenamerMock()
|
|
{
|
|
TestUtil::PrepareWorkingDir("rarrenamer");
|
|
SetDestDir(TestUtil::WorkingDir().c_str());
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename not needed", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 0);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename not needed 2", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::CopyFile((TestUtil::WorkingDir() + "/testfile5.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12348").c_str()));
|
|
REQUIRE(FileSystem::CopyFile((TestUtil::WorkingDir() + "/testfile3oldnam.r00").c_str(), (TestUtil::WorkingDir() + "/testfile3oldnamB.r00").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 0);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar3", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part01.rar").c_str(), (TestUtil::WorkingDir() + "/12345").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12342").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part03.rar").c_str(), (TestUtil::WorkingDir() + "/12346").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar5", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part01.rar").c_str(), (TestUtil::WorkingDir() + "/12348").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12343").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part03.rar").c_str(), (TestUtil::WorkingDir() + "/12344").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: missing parts", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part01.rar").c_str(), (TestUtil::WorkingDir() + "/12348").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12343").c_str()));
|
|
REQUIRE(FileSystem::DeleteFile((TestUtil::WorkingDir() + "/testfile5.part03.rar").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 0);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar3 bad naming", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part01.rar").c_str(), (TestUtil::WorkingDir() + "/testfile3.part04.rar").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part02.rar").c_str(), (TestUtil::WorkingDir() + "/testfile3.part01.rar").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar3 bad naming 2", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part02.rar").c_str(), (TestUtil::WorkingDir() + "/testfile3.part2.rar").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar3 bad naming 3", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part02.rar").c_str(), (TestUtil::WorkingDir() + "/testfile3-1.part02.rar").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar3 bad naming 4", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part02.rar").c_str(), (TestUtil::WorkingDir() + "/testfil-3.part02.rar").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar3 bad naming 5", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3oldnam.rar").c_str(), (TestUtil::WorkingDir() + "/testfile3oldnamA.rar").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 1);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar3 bad naming 6", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3oldnam.rar").c_str(), (TestUtil::WorkingDir() + "/testfile3oldnamA.rar").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3oldnam.r00").c_str(), (TestUtil::WorkingDir() + "/testfile3oldnamB.r00").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3oldnam.r01").c_str(), (TestUtil::WorkingDir() + "/testfile3oldnamA.r01").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename two sets", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part01.rar").c_str(), (TestUtil::WorkingDir() + "/12345").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12342").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part03.rar").c_str(), (TestUtil::WorkingDir() + "/12346").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part01.rar").c_str(), (TestUtil::WorkingDir() + "/12348").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12343").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part03.rar").c_str(), (TestUtil::WorkingDir() + "/12344").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 6);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename duplicate", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part01.rar").c_str(), (TestUtil::WorkingDir() + "/12345").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12342").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3.part03.rar").c_str(), (TestUtil::WorkingDir() + "/12346").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5.part01.rar").c_str(), (TestUtil::WorkingDir() + "/testfile3.dat.part0001.rar").c_str()));
|
|
REQUIRE(FileSystem::DeleteFile((TestUtil::WorkingDir() + "/testfile5.part02.rar").c_str()));
|
|
REQUIRE(FileSystem::DeleteFile((TestUtil::WorkingDir() + "/testfile5.part03.rar").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
#ifndef DISABLE_TLS
|
|
|
|
TEST_CASE("Rar-renamer: rename rar5 encrypted", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
rarRenamer.SetPassword("123");
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5encnam.part01.rar").c_str(), (TestUtil::WorkingDir() + "/12348").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5encnam.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12343").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile5encnam.part03.rar").c_str(), (TestUtil::WorkingDir() + "/12344").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
TEST_CASE("Rar-renamer: rename rar3 encrypted", "[Rar][RarRenamer][Slow][TestData]")
|
|
{
|
|
RarRenamerMock rarRenamer;
|
|
rarRenamer.SetPassword("123");
|
|
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3encnam.part01.rar").c_str(), (TestUtil::WorkingDir() + "/12348").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3encnam.part02.rar").c_str(), (TestUtil::WorkingDir() + "/12343").c_str()));
|
|
REQUIRE(FileSystem::MoveFile((TestUtil::WorkingDir() + "/testfile3encnam.part03.rar").c_str(), (TestUtil::WorkingDir() + "/12344").c_str()));
|
|
|
|
rarRenamer.Execute();
|
|
|
|
REQUIRE(rarRenamer.GetRenamedCount() == 3);
|
|
}
|
|
|
|
#endif
|