Imported Upstream version 14.48.2
[platform/upstream/libzypp.git] / devel / devel.dmacvicar / testbed.cc
index 1db0833..f0ebf04 100644 (file)
@@ -1,4 +1,7 @@
+#include <sys/time.h>
+
 #include <iostream>
+#include <fstream>
 
 #include <zypp/base/Logger.h>
 #include <zypp/ZYpp.h>
@@ -6,35 +9,72 @@
 
 #include "zypp/Product.h"
 #include "zypp/Package.h"
-#include "zypp/PublicKey.h"
-#include "zypp/detail/PackageImplIf.h"
-#include "zypp/source/PackageDelta.h"
-#include "zypp/detail/ImplConnect.h"
+#include "zypp/Fetcher.h"
+#include "zypp/TmpPath.h"
+#include "zypp/ProgressData.h"
+
+#include "zypp/sat/Pool.h"
 
-#include "zypp/SourceFactory.h"
-#include "testsuite/src/utils/TestUtils.h"
+#include "zypp/ZYppCallbacks.h"
 
 using namespace std;
 using namespace zypp;
-using namespace zypp::detail;
-using namespace zypp::source;
-using namespace zypp::packagedelta;
-//using namespace DbXml;
+using namespace zypp::repo;
+using zypp::media::MediaChangeReport;
+
 
-int main()
+bool result_cb( const ResObject::Ptr &r )
 {
-  try
+  cout << r << endl;
+}
+
+struct MediaChangeReportReceiver : public zypp::callback::ReceiveReport<MediaChangeReport>
   {
-    ZYpp::Ptr z = getZYpp();
+    virtual MediaChangeReport::Action
+    requestMedia(zypp::Url & url,
+                 unsigned                         mediumNr,
+                 const std::string &              label,
+                 MediaChangeReport::Error         error,
+                 const std::string &              description,
+                 const std::vector<std::string> & devices,
+                 unsigned int &                   index)
+    {
+      cout << std::endl;
+      MIL << "media problem, url: " << url.asString() << std::endl;
+      return MediaChangeReport::IGNORE;
+    }
+  };
+
+
+int main(int argc, char **argv)
+{
+    try
+    {
+      ZYpp::Ptr z = getZYpp();
     
-    PublicKey key("repomd.xml.key");
-    cout << key << endl;
-        
-  }
-  catch ( const Exception &e )
-  {
-    std::cout << e.msg() << endl;
-  }
+      MediaChangeReportReceiver report;
+      report.connect();
+      
+
+      Fetcher fetcher;
+      MediaSetAccess access(Url("http://ftp.kernel.org/pub"));
+      filesystem::TmpDir tmp;
+      
+      OnMediaLocation loc;
+      loc.setLocation("/README2");
+      loc.setOptional(true);
+      
+      fetcher.enqueue(loc);
+      fetcher.start(tmp.path(), access);
+      
+    }
+    catch ( const Exception &e )
+    {
+      ZYPP_CAUGHT(e);
+      cout << e.msg() << endl;
+    }
+    
+    return 0;
 }