diff options
author | 2006-10-11 20:56:59 +0000 | |
---|---|---|
committer | 2006-10-11 20:56:59 +0000 | |
commit | e3b86134db7baada7b3a1e779e7d6d046ab53a1a (patch) | |
tree | 6acb3c0de68e1b95dbba8f0e00f770b8f31e4bac /0.8.0/paludis/environment/test/test_environment.hh | |
parent | ab9cdb1150d97449e857cd55fe706377c9ab2422 (diff) | |
download | paludis-e3b86134db7baada7b3a1e779e7d6d046ab53a1a.tar.gz paludis-e3b86134db7baada7b3a1e779e7d6d046ab53a1a.tar.xz |
Tag release 0.8.00.8.0
Diffstat (limited to '0.8.0/paludis/environment/test/test_environment.hh')
-rw-r--r-- | 0.8.0/paludis/environment/test/test_environment.hh | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/0.8.0/paludis/environment/test/test_environment.hh b/0.8.0/paludis/environment/test/test_environment.hh new file mode 100644 index 000000000..d9b1178fc --- /dev/null +++ b/0.8.0/paludis/environment/test/test_environment.hh @@ -0,0 +1,84 @@ +/* vim: set sw=4 sts=4 et foldmethod=syntax : */ + +/* + * Copyright (c) 2005, 2006 Ciaran McCreesh <ciaranm@ciaranm.org> + * + * This file is part of the Paludis package manager. Paludis is free software; + * you can redistribute it and/or modify it under the terms of the GNU General + * Public License version 2, as published by the Free Software Foundation. + * + * Paludis 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, write to the Free Software Foundation, Inc., 59 Temple + * Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef PALUDIS_GUARD_PALUDIS_TEST_ENVIRONMENT_HH +#define PALUDIS_GUARD_PALUDIS_TEST_ENVIRONMENT_HH 1 + +#include <paludis/package_database_entry.hh> +#include <paludis/environment.hh> + +/** \file + * Declarations for the TestEnvironment class. + * + * \ingroup grptestenvironment + */ + +namespace paludis +{ + /** + * A TestEnvironment is an environment used during testing that lets us + * control all the options rather than reading them from configuration + * files. + * + * \ingroup grptestenvironment + */ + class PALUDIS_VISIBLE TestEnvironment : public Environment + { + public: + /** + * Constructor. + */ + TestEnvironment(); + + virtual bool query_use(const UseFlagName &, const PackageDatabaseEntry *) const; + + virtual bool accept_keyword(const KeywordName &, const PackageDatabaseEntry * const) const; + + virtual bool query_user_masks(const PackageDatabaseEntry &) const; + + virtual bool query_user_unmasks(const PackageDatabaseEntry &) const; + + virtual bool accept_license(const std::string &, const PackageDatabaseEntry * const) const; + + virtual std::string bashrc_files() const + { + return ""; + } + + virtual std::string hook_dirs() const + { + return ""; + } + + virtual std::string paludis_command() const + { + return "false"; + } + + virtual void perform_hook(const Hook &) const + { + } + + virtual MirrorIterator begin_mirrors(const std::string &) const; + + virtual MirrorIterator end_mirrors(const std::string &) const; + }; +} + +#endif |