summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesCleaner.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesCleaner.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesCleaner.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesCleaner.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesCleaner.php
new file mode 100644
index 00000000..617ef0e3
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesCleaner.php
@@ -0,0 +1,57 @@
+<?php
+
+namespace SMW\Tests\Utils\Fixtures;
+
+use SMW\Tests\Utils\UtilityFactory;
+use Title;
+
+/**
+ * @license GNU GPL v2+
+ * @since 2.1
+ *
+ * @author mwjames
+ */
+class FixturesCleaner {
+
+ /**
+ * @since 2.1
+ *
+ * @param array $subjects
+ *
+ * @return FixturesCleaner
+ */
+ public function purgeSubjects( array $subjects ) {
+
+ $pageDeleter = UtilityFactory::getInstance()->newPageDeleter();
+ $pageDeleter->doDeletePoolOfPages( $subjects );
+
+ return $this;
+ }
+
+ /**
+ * @since 2.1
+ *
+ * @return FixturesCleaner
+ */
+ public function purgeAllKnownFacts() {
+ $fixturesProvider = new FixturesProvider();
+ return $this->purgeFacts( $fixturesProvider->getListOfFactsheetInstances() );
+ }
+
+ /**
+ * @since 2.1
+ *
+ * @param array $facts
+ *
+ * @return FixturesCleaner
+ */
+ public function purgeFacts( array $facts ) {
+
+ foreach ( $facts as $fact ) {
+ $fact->purge();
+ }
+
+ return $this;
+ }
+
+}