MDL-43213 fix init regression and remove $checkphp parameter
[moodle.git] / lib / testing / lib.php
blobc67a1a9c207b082a18b2a5d7c82baaa29cfcb779
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Testing general functions
20 * Note: these functions must be self contained and must not rely on any library or include
22 * @package core
23 * @category test
24 * @copyright 2012 Petr Skoda {@link http://skodak.org}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 /**
29 * Returns relative path against current working directory,
30 * to be used for shell execution hints.
31 * @param string $moodlepath starting with "/", ex: "/admin/tool/cli/init.php"
32 * @return string path relative to current directory or absolute path
34 function testing_cli_argument_path($moodlepath) {
35 global $CFG;
37 if (isset($CFG->admin) and $CFG->admin !== 'admin') {
38 $moodlepath = preg_replace('|^/admin/|', "/$CFG->admin/", $moodlepath);
41 if (isset($_SERVER['REMOTE_ADDR'])) {
42 // Web access, this should not happen often.
43 $cwd = dirname(dirname(__DIR__));
44 } else {
45 // This is the real CLI script, work with relative paths.
46 $cwd = getcwd();
48 if (substr($cwd, -1) !== DIRECTORY_SEPARATOR) {
49 $cwd .= DIRECTORY_SEPARATOR;
51 $path = realpath($CFG->dirroot.$moodlepath);
53 if (strpos($path, $cwd) === 0) {
54 $path = substr($path, strlen($cwd));
57 if (testing_is_cygwin()) {
58 $path = str_replace('\\', '/', $path);
61 return $path;
64 /**
65 * Try to change permissions to $CFG->dirroot or $CFG->dataroot if possible
66 * @param string $file
67 * @return bool success
69 function testing_fix_file_permissions($file) {
70 global $CFG;
72 $permissions = fileperms($file);
73 if ($permissions & $CFG->filepermissions != $CFG->filepermissions) {
74 $permissions = $permissions | $CFG->filepermissions;
75 return chmod($file, $permissions);
78 return true;
81 /**
82 * Find out if running under Cygwin on Windows.
83 * @return bool
85 function testing_is_cygwin() {
86 if (empty($_SERVER['OS']) or $_SERVER['OS'] !== 'Windows_NT') {
87 return false;
89 } else if (!empty($_SERVER['SHELL']) and $_SERVER['SHELL'] === '/bin/bash') {
90 return true;
92 } else if (!empty($_SERVER['TERM']) and $_SERVER['TERM'] === 'cygwin') {
93 return true;
95 } else {
96 return false;
101 * Mark empty dataroot to be used for testing.
102 * @param string $dataroot The dataroot directory
103 * @param string $framework The test framework
104 * @return void
106 function testing_initdataroot($dataroot, $framework) {
107 global $CFG;
109 $filename = $dataroot . '/' . $framework . 'testdir.txt';
111 umask(0);
112 if (!file_exists($filename)) {
113 file_put_contents($filename, 'Contents of this directory are used during tests only, do not delete this file!');
115 testing_fix_file_permissions($filename);
117 $varname = $framework . '_dataroot';
118 $datarootdir = $CFG->{$varname} . '/' . $framework;
119 if (!file_exists($datarootdir)) {
120 mkdir($datarootdir, $CFG->directorypermissions);
125 * Prints an error and stops execution
127 * @param integer $errorcode
128 * @param string $text
129 * @return void exits
131 function testing_error($errorcode, $text = '') {
133 // do not write to error stream because we need the error message in PHP exec result from web ui
134 echo($text."\n");
135 exit($errorcode);
139 * Updates the composer installer and the dependencies.
141 * Includes --dev dependencies.
143 * @return void exit() if something goes wrong
145 function testing_update_composer_dependencies() {
147 // To restore the value after finishing.
148 $cwd = getcwd();
150 // Dirroot.
151 chdir(__DIR__ . '/../..');
153 // Download composer.phar if we can.
154 if (!file_exists(__DIR__ . '/../../composer.phar')) {
155 passthru("curl http://getcomposer.org/installer | php", $code);
156 if ($code != 0) {
157 exit($code);
159 } else {
161 // If it is already there update the installer.
162 passthru("php composer.phar self-update", $code);
163 if ($code != 0) {
164 exit($code);
168 // Update composer dependencies.
169 passthru("php composer.phar update --dev", $code);
170 if ($code != 0) {
171 exit($code);
174 chdir($cwd);