Enable all tests under Windows

Since workingCopyPath() has now been implemented under
Windows it is possible to enable the entire testsuite.
This commit is contained in:
Martchus 2018-10-07 21:57:28 +02:00
parent dff3c0ec70
commit 13bccb12f0
7 changed files with 0 additions and 20 deletions

View File

@ -48,14 +48,12 @@ class OverallTests : public TestFixture {
CPPUNIT_TEST(testOggParsing);
CPPUNIT_TEST(testFlacParsing);
CPPUNIT_TEST(testMkvParsing);
#ifdef PLATFORM_UNIX
CPPUNIT_TEST(testMp4Making);
CPPUNIT_TEST(testMp3Making);
CPPUNIT_TEST(testOggMaking);
CPPUNIT_TEST(testFlacMaking);
CPPUNIT_TEST(testMkvMakingWithDifferentSettings);
CPPUNIT_TEST(testMkvMakingNestedTags);
#endif
CPPUNIT_TEST_SUITE_END();
public:
@ -119,14 +117,12 @@ public:
void testMp3Parsing();
void testOggParsing();
void testFlacParsing();
#ifdef PLATFORM_UNIX
void testMkvMakingWithDifferentSettings();
void testMkvMakingNestedTags();
void testMp4Making();
void testMp3Making();
void testOggMaking();
void testFlacMaking();
#endif
private:
MediaFileInfo m_fileInfo;

View File

@ -107,7 +107,6 @@ void OverallTests::testFlacParsing()
parseFile(TestUtilities::testFilePath("flac/test.ogg"), &OverallTests::checkFlacTestfile2);
}
#ifdef PLATFORM_UNIX
/*!
* \brief Tests the FLAC maker via MediaFileInfo.
* \remarks Relies on the parser to check results.
@ -139,4 +138,3 @@ void OverallTests::testFlacMaking()
makeFile(TestUtilities::workingCopyPath("flac/test.ogg"), modifyRoutine, &OverallTests::checkFlacTestfile2);
}
}
#endif

View File

@ -647,7 +647,6 @@ void OverallTests::testMkvParsing()
parseFile(testFilePath("mkv/nested-tags.mkv"), &OverallTests::checkMkvTestfileNestedTags);
}
#ifdef PLATFORM_UNIX
/*!
* \brief Tests the Matroska maker via MediaFileInfo.
*
@ -748,4 +747,3 @@ void OverallTests::testMkvMakingNestedTags()
m_fileInfo.setIndexPosition(ElementPosition::BeforeData);
makeFile(workingCopyPath("mkv/nested-tags.mkv"), &OverallTests::noop, &OverallTests::checkMkvTestfileNestedTags);
}
#endif

View File

@ -355,7 +355,6 @@ void OverallTests::testMp3Parsing()
parseFile(TestUtilities::testFilePath("misc/multiple_id3v2_4_values.mp3"), &OverallTests::checkMp3Testfile2);
}
#ifdef PLATFORM_UNIX
/*!
* \brief Tests the MP3 maker via MediaFileInfo.
* \remarks Relies on the parser to check results.
@ -416,4 +415,3 @@ void OverallTests::testMp3Making()
(m_mode & RemoveTag) ? &OverallTests::removeAllTags : &OverallTests::setMp3TestMetaData2, &OverallTests::checkMp3Testfile2);
}
}
#endif

View File

@ -533,7 +533,6 @@ void OverallTests::testMp4Parsing()
parseFile(TestUtilities::testFilePath("mp4/android-8.1-camera-recoding.mp4"), &OverallTests::checkMp4Testfile7);
}
#ifdef PLATFORM_UNIX
/*!
* \brief Tests the MP4 maker via MediaFileInfo.
* \remarks Relies on the parser to check results.
@ -603,4 +602,3 @@ void OverallTests::testMp4Making()
makeFile(TestUtilities::workingCopyPath("mtx-test-data/mp4/1080p-DTS-HD-7.1.mp4"), modifyRoutine, &OverallTests::checkMp4Testfile6);
}
}
#endif

View File

@ -137,7 +137,6 @@ void OverallTests::testOggParsing()
parseFile(TestUtilities::testFilePath("mtx-test-data/opus/v-opus.ogg"), &OverallTests::checkOggTestfile2);
}
#ifdef PLATFORM_UNIX
/*!
* \brief Tests the Ogg maker via MediaFileInfo.
* \remarks
@ -172,4 +171,3 @@ void OverallTests::testOggMaking()
makeFile(TestUtilities::workingCopyPath("mtx-test-data/opus/v-opus.ogg"), modifyRoutine, &OverallTests::checkOggTestfile2);
}
}
#endif

View File

@ -46,9 +46,7 @@ class UtilitiesTests : public TestFixture {
CPPUNIT_TEST(testProgressFeedback);
CPPUNIT_TEST(testAbortableProgressFeedback);
CPPUNIT_TEST(testDiagnostics);
#ifdef PLATFORM_UNIX
CPPUNIT_TEST(testBackupFile);
#endif
CPPUNIT_TEST_SUITE_END();
public:
@ -66,9 +64,7 @@ public:
void testProgressFeedback();
void testAbortableProgressFeedback();
void testDiagnostics();
#ifdef PLATFORM_UNIX
void testBackupFile();
#endif
};
CPPUNIT_TEST_SUITE_REGISTRATION(UtilitiesTests);
@ -295,7 +291,6 @@ void UtilitiesTests::testDiagnostics()
CPPUNIT_ASSERT(diag.has(DiagLevel::Critical));
}
#ifdef PLATFORM_UNIX
void UtilitiesTests::testBackupFile()
{
using namespace BackupHelper;
@ -402,4 +397,3 @@ void UtilitiesTests::testBackupFile()
CPPUNIT_ASSERT_EQUAL(0, remove(file.path().data()));
}
#endif