- allow / in aliases (#292628)
[platform/upstream/libzypp.git] / tests / zypp / RepoManager_test.cc
1
2 #include <iostream>
3 #include <fstream>
4 #include <list>
5 #include <string>
6
7 #include "zypp/base/Logger.h"
8 #include "zypp/base/Exception.h"
9 #include "zypp/KeyRing.h"
10 #include "zypp/PublicKey.h"
11 #include "zypp/TmpPath.h"
12 #include "zypp/ResStore.h"
13 #include "zypp/PathInfo.h"
14
15 #include "zypp/RepoManager.h"
16
17 #include <boost/test/unit_test.hpp>
18 #include <boost/test/parameterized_test.hpp>
19 #include <boost/test/unit_test_log.hpp>
20
21 #include "KeyRingTestReceiver.h"
22
23 using boost::unit_test::test_suite;
24 using boost::unit_test::test_case;
25 using namespace boost::unit_test::log;
26
27 using namespace std;
28 using namespace zypp;
29 using namespace zypp::filesystem;
30 using namespace zypp::repo;
31
32 void repomanager_test( const string &dir )
33 {
34   RepoManagerOptions opts;
35   
36   TmpDir tmpCachePath;
37   TmpDir tmpRawCachePath;
38   TmpDir tmpKnownReposPath;
39   
40   BOOST_CHECK_EQUAL( filesystem::copy_dir_content( Pathname(dir) + "/repos.d", tmpKnownReposPath.path() ), 0 );
41   
42   opts.repoCachePath = tmpCachePath.path();
43   opts.repoRawCachePath = tmpRawCachePath.path();
44   opts.knownReposPath = tmpKnownReposPath.path();
45   
46   RepoManager manager(opts);
47   
48   list<RepoInfo> repos = manager.knownRepositories();
49   BOOST_CHECK_EQUAL(repos.size(), (unsigned) 4);
50   
51   // now add a .repo file with 2 repositories in it
52   Url url;
53   url.setPathName((Pathname(dir) + "/proprietary.repo").asString());
54   url.setScheme("file");
55
56   manager.addRepositories(url);
57   
58   // check it was not overwriten the proprietary.repo file
59   BOOST_CHECK( PathInfo(tmpKnownReposPath.path() + "/proprietary.repo_1").isExist() );
60   
61   // now there should be 6 repos
62   repos = manager.knownRepositories();
63   BOOST_CHECK_EQUAL(repos.size(), (unsigned) 6);
64   
65   RepoInfo office_dup;
66   office_dup.setAlias("office");
67   BOOST_CHECK_THROW(manager.addRepository(office_dup), RepoAlreadyExistsException);
68
69   // delete the office repo inside the propietary_1.repo
70   RepoInfo office;
71   office.setAlias("office");
72   manager.removeRepository(office);
73   // now there should be 5 repos
74   repos = manager.knownRepositories();
75   BOOST_CHECK_EQUAL(repos.size(), (unsigned) 5);
76   // the file still contained one repo, so it should still exists
77   BOOST_CHECK( PathInfo(tmpKnownReposPath.path() + "/proprietary.repo_1").isExist() );
78   
79   // now delete the macromedia one
80   RepoInfo macromedia;
81   macromedia.setAlias("macromedia");
82   manager.removeRepository(macromedia);
83   repos = manager.knownRepositories();
84   BOOST_CHECK_EQUAL(repos.size(), (unsigned) 4);
85   // the file should not exist anymore
86   BOOST_CHECK( ! PathInfo(tmpKnownReposPath.path() + "/proprietary.repo_1").isExist() );
87   
88   // for now skip creation
89   return;
90   
91   RepoInfo repo(repos.front());
92
93   // we have no metadata yet so this should throw
94   BOOST_CHECK_THROW( manager.buildCache(repo),
95                      RepoMetadataException );
96
97   manager.refreshMetadata(repo);
98   
99   BOOST_CHECK_MESSAGE( ! manager.isCached(repo),
100                        "Repo is not yet cached" );
101
102   Repository repository;
103
104   // it is not cached, this should throw
105   BOOST_CHECK_THROW( manager.createFromCache(repo),
106                      RepoNotCachedException );
107
108   MIL << "repo " << repo.alias() << " not cached yet. Caching..." << endl;
109   manager.buildCache(repo);
110   repository = manager.createFromCache(repo);
111   
112    BOOST_CHECK_MESSAGE( manager.isCached(repo),
113                        "Repo is cached" );
114
115   ResStore store = repository.resolvables();
116   MIL << store.size() << " resolvables" << endl;
117   
118   manager.refreshMetadata(repo);
119
120   if ( manager.isCached(repo ) )
121   {
122     MIL << "Repo already in cache, clean cache"<< endl;
123     manager.cleanCache(repo);
124   }
125   MIL << "Parsing repository metadata..." << endl;
126   manager.buildCache(repo);
127 }
128
129 test_suite*
130 init_unit_test_suite( int argc, char* argv[] )
131 {
132   string datadir;
133   if (argc < 2)
134   {
135     datadir = TESTS_SRC_DIR;
136     datadir = (Pathname(datadir) + "/zypp/data/RepoManager").asString();
137     cout << "repomanager_test:"
138       " path to directory with test data required as parameter. Using " << datadir  << endl;
139     //return (test_suite *)0;
140   }
141   else
142   {
143     datadir = argv[1];
144   }
145
146   std::string const params[] = { datadir };
147     //set_log_stream( std::cout );
148   test_suite* test= BOOST_TEST_SUITE( "RepoManagerTest" );
149   test->add(BOOST_PARAM_TEST_CASE( &repomanager_test,
150                               (std::string const*)params, params+1));
151   return test;
152 }
153