summaryrefslogtreecommitdiff
path: root/p2pvr/daemon/unittests/testp2ice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'p2pvr/daemon/unittests/testp2ice.cpp')
-rw-r--r--p2pvr/daemon/unittests/testp2ice.cpp60
1 files changed, 0 insertions, 60 deletions
diff --git a/p2pvr/daemon/unittests/testp2ice.cpp b/p2pvr/daemon/unittests/testp2ice.cpp
deleted file mode 100644
index 6eece19..0000000
--- a/p2pvr/daemon/unittests/testp2ice.cpp
+++ /dev/null
@@ -1,60 +0,0 @@
-#define BOOST_TEST_MODULE ClientCompile
-#include <boost/test/unit_test.hpp>
-#include <boost/filesystem/operations.hpp>
-#include <testOptionsSource.h>
-#include <definedDirs.h>
-#include <sourceObject.h>
-#include <testAppInstance.h>
-#include <stream.h>
-#include <rowSet.h>
-
-const boost::filesystem::path variant = binDir.leaf();
-const boost::filesystem::path compiler = binDir.parent_path().leaf();
-const boost::filesystem::path root = rootDir.parent_path().parent_path();
-const boost::filesystem::path iceroot = root / "ice";
-
-static
-void
-commonTests()
-{
- BOOST_REQUIRE(StreamFactory::get("p2pvrrecordingstream"));
- BOOST_REQUIRE(StreamFactory::get("p2pvrservicestream"));
- BOOST_REQUIRE(RowSetFactory::get("P2PVR-SI-GetEvent"));
-}
-
-static
-void
-unloadTests()
-{
- BOOST_REQUIRE_THROW(RowSetFactory::get("P2PVR-SI-GetEvent"), AdHoc::NoSuchPluginException);
- BOOST_REQUIRE_THROW(StreamFactory::get("p2pvrrecordingstream"), AdHoc::NoSuchPluginException);
- BOOST_REQUIRE_THROW(StreamFactory::get("p2pvrservicestream"), AdHoc::NoSuchPluginException);
-}
-
-BOOST_GLOBAL_FIXTURE( TestAppInstance );
-
-BOOST_AUTO_TEST_CASE( compile_client_clientOnly )
-{
- TestOptionsSource::LoadTestOptions({ });
-
- const std::string tmpdir = "/tmp/ut/p2pvr.slice";
- BOOST_TEST_CHECKPOINT("Clean up");
- boost::filesystem::remove_all(tmpdir);
-
- BOOST_TEST_CHECKPOINT("Configure, compile, link, load");
- TestOptionsSource::LoadTestOptions({
- { "ice.compile.tmpdir", tmpdir },
- { "ice.client.slicerclient", (iceroot / "common.ice").string() },
- { "library", (root / "ice" / "bin" / compiler / variant / "slicer-yes" / "libp2pvrice.so").string() },
- { "library", (root / "dvb" / "bin" / compiler / variant / "libp2pvrdvb.so").string() },
- { "library", (root / "lib" / "bin" / compiler / variant / "libp2pvrlib.so").string() },
- { "library", (root / "p2comp" / "bin" / compiler / variant / "libp2pvrp2comp.so").string() },
- { "ice.client.slicerclient", (iceroot / "dvbsi.ice").string() },
- { "ice.client.slicerclient", (iceroot / "dvb.ice").string() },
- { "ice.client.slicerclient", (iceroot / "p2pvr.ice").string() },
- });
- commonTests();
-
- TestOptionsSource::LoadTestOptions({ });
- unloadTests();
-}