summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpUnitEnvironment.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpUnitEnvironment.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpUnitEnvironment.php158
1 files changed, 158 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpUnitEnvironment.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpUnitEnvironment.php
new file mode 100644
index 00000000..0a05c762
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpUnitEnvironment.php
@@ -0,0 +1,158 @@
+<?php
+
+/**
+ * @private
+ *
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class PHPUnitEnvironment {
+
+ /**
+ * @var array
+ */
+ private $gitHead = [];
+
+ /**
+ * @param array $args
+ *
+ * @return boolean
+ */
+ public function hasDebugRequest( $args ) {
+ return array_search( '--debug', $args ) || array_search( '--debug-tests', $args );
+ }
+
+ public function emptyDebugVars() {
+ $GLOBALS['wgDebugLogGroups'] = [];
+ $GLOBALS['wgDebugLogFile'] = '';
+ }
+
+ /**
+ * @return boolean
+ */
+ public function enabledDebugLogs() {
+ return $GLOBALS['wgDebugLogGroups'] !== [] || $GLOBALS['wgDebugLogFile'] !== '';
+ }
+
+ /**
+ * @return boolean|integer
+ */
+ public function getXdebugInfo() {
+
+ if ( extension_loaded( 'xdebug' ) && xdebug_is_enabled() ) {
+ return phpversion( 'xdebug' );
+ }
+
+ return false;
+ }
+
+ /**
+ * @return string
+ */
+ public function getSiteLanguageCode() {
+ return $GLOBALS['wgLanguageCode'];
+ }
+
+ /**
+ * @return string
+ */
+ public function executionTime() {
+ $dateTimeUtc = new \DateTime( 'now', new \DateTimeZone( 'UTC' ) );
+ return $dateTimeUtc->format( 'Y-m-d h:i' );
+ }
+
+ /**
+ * @param string $id
+ *
+ * @return array
+ */
+ public function getVersion( $id, $extra = [] ) {
+
+ $info = [];
+
+ if ( $id === 'smw' ) {
+ $store = str_replace(
+ [ '{', '}', '"', '(SMW', ':(', '))', ',' ],
+ [ '(', ')', '', 'SMW', ' (', ')', ', ' ],
+ json_encode( smwfGetStore()->getInfo(), JSON_UNESCAPED_SLASHES )
+ );
+
+ $info = [
+ SemanticMediaWiki::getVersion(),
+ 'git: ' . $this->getGitInfo( 'smw' ),
+ $store
+ ] + $extra;
+ }
+
+ if ( $id === 'mw' ) {
+ $info = [
+ $GLOBALS['wgVersion'],
+ 'git: ' . $this->getGitInfo( 'mw' )
+ ] + $extra;
+ }
+
+ return implode( ', ', $info );
+ }
+
+ /**
+ * @param string $id
+ *
+ * @return string
+ */
+ public function getGitInfo( $id ) {
+
+ if ( $this->gitHead === [] && class_exists( 'GitInfo' ) ) {
+ $this->gitHead = [
+ 'mw' => '',
+ 'smw' => ''
+ ];
+
+ $this->gitHead['mw'] = GitInfo::headSHA1();
+
+ if ( $this->gitHead['mw'] ) {
+ $this->gitHead['mw'] = substr( $this->gitHead['mw'], 0, 7 );
+ } else {
+ $this->gitHead['mw'] = 'N/A';
+ }
+
+ $gitInfo = new GitInfo( __DIR__ . '/..' );
+ $this->gitHead['smw'] = $gitInfo->getHeadSHA1();
+
+ if ( $this->gitHead['smw'] ) {
+ $this->gitHead['smw'] = substr( $this->gitHead['smw'], 0, 7 );
+ }
+ }
+
+ if ( isset( $this->gitHead[$id] ) ) {
+ return $this->gitHead[$id];
+ }
+ }
+
+ /**
+ * @param string $arg1
+ * @param string|array $arg2
+ *
+ * @return string
+ */
+ public function writeLn( $arg1, $arg2 ) {
+ return print sprintf( "%-20s%s\n", $arg1, $arg2 );
+ }
+
+ /**
+ * @param string $arg1
+ * @param string|array $arg2
+ *
+ * @return string
+ */
+ public function writeNewLn( $arg1 = '', $arg2 = '' ) {
+
+ if ( $arg1 === '' && $arg2 === '' ) {
+ return print "\n";
+ }
+
+ return print sprintf( "\n%-20s%s\n", $arg1, $arg2 );
+ }
+
+}