-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
compatibility-test.php
170 lines (143 loc) · 6 KB
/
compatibility-test.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
// Run this script from the command line to see if your system is able to run
// the AWS SDK for PHP
class CompatibilityTest
{
protected $isCli;
protected $lines = array();
public function __construct()
{
$this->isCli = php_sapi_name() == 'cli';
$title = 'AWS SDK for PHP Compatibility Test';
if ($this->isCli) {
$rep = str_repeat('=', strlen($title));
$this->lines[] = "{$rep}\n{$title}\n{$rep}";
} else {
$this->lines[] = sprintf(
'<style type="text/css">%s %s</style>',
'html {font-family:verdana;} .OK {color: #166116;}',
'.FAIL {margin-top: 1em; color: #A52C27;} .WARNING {margin-top: 1em; color:#6B036B;}'
);
$this->lines[] = "<h1>{$title}</h1>";
}
}
public function endTest()
{
$text = implode("\n", $this->lines);
echo $this->isCli ? $text : "<html><body>{$text}</body></html>";
}
public function title($text)
{
$this->lines[] = $this->isCli
? "\n" . $text . "\n" . str_repeat('-', strlen($text)) . "\n"
: "<h2>{$text}</h2>";
}
public function write($text)
{
$this->lines[] = $text;
}
public function quote($text)
{
return !$this->isCli
? "<pre>{$text}</pre>"
: implode("\n", array_map(function ($t) { return ' ' . $t; }, explode("\n", $text)));
}
public function check($info, $func, $text, $required)
{
$level = $func() ? 'OK' : ($required ? 'FAIL' : 'WARNING');
if ($this->isCli) {
$text = $level == 'OK' ? "- {$info}: [OK]" : "- {$info}: [{$level}]\n - {$text}";
} else {
$text = $level == 'OK'
? "<span class=\"{$level}\">{$info}</span><br />"
: "<div class=\"{$level}\">{$info}: [{$level}]<br /><blockquote>{$text}</blockquote></div>";
}
$this->write($text);
}
public function addRecommend($info, $func, $text)
{
$this->check($info, $func, $text, false);
}
public function addRequire($info, $func, $text)
{
$this->check($info, $func, $text, true);
}
public function iniCheck($info, $setting, $expected, $required = true, $help = null)
{
$current = ini_get($setting);
$cb = function () use ($current, $expected) {
return is_callable($expected)
? call_user_func($expected, $current)
: $current == $expected;
};
$message = sprintf(
'%s in %s is currently set to %s but %s be set to %s.',
$setting,
php_ini_loaded_file(),
var_export($current, true),
$required ? 'must' : 'should',
var_export($expected, true)
) . ' ' . $help;
$this->check($info, $cb, trim($message), $required);
}
public function extCheck($ext, $required = true, $help = '')
{
$info = sprintf('Checking if the %s extension is installed', $ext);
$cb = function () use ($ext) { return extension_loaded($ext); };
$message = $help ?: sprintf('The %s extension %s be installed', $ext, $required ? 'must' : 'should');
$this->check($info, $cb, $message, $required);
}
}
$c = new CompatibilityTest();
$c->title('System requirements');
$c->addRequire(
'Ensuring that the version of PHP is >= 5.5.0',
function () { return version_compare(phpversion(), '5.5.0', '>='); },
'You must update your version of PHP to 5.5.0 to run the AWS SDK for PHP'
);
$c->iniCheck('Ensuring that detect_unicode is disabled', 'detect_unicode', false, true, 'Enabling detect_unicode may cause errors when using phar files. See https://bugs.php.net/bug.php?id=42396');
$c->iniCheck('Ensuring that session.auto_start is disabled', 'session.auto_start', false);
if (extension_loaded('suhosin')) {
$c->addRequire(
'Ensuring that phar files can be run with the suhosin patch',
function () {
return false !== stripos(ini_get('suhosin.executor.include.whitelist'), 'phar');
},
sprintf('suhosin.executor.include.whitelist must be configured to include "phar" in %s so that the phar file works correctly', php_ini_loaded_file())
);
}
foreach (array('pcre', 'spl', 'json', 'simplexml') as $ext) {
$c->extCheck($ext, true);
}
if (function_exists('curl_version')) {
$c->addRequire('Ensuring that cURL can send https requests', function () {
$version = curl_version();
return in_array('https', $version['protocols'], true);
}, 'cURL must be able to send https requests');
}
$c->addRequire('Ensuring that file_get_contents works', function () {
return function_exists('file_get_contents');
}, 'file_get_contents has been disabled');
$c->title('System recommendations');
$c->addRecommend('Checking if you are running on a 64-bit platform', function () {
return PHP_INT_MAX === 9223372036854775807;
}, 'You are not running on a 64-bit installation of PHP. You may run into issues uploading or downloading files larger than 2GB.');
$c->iniCheck('Ensuring that zend.enable_gc is enabled', 'zend.enable_gc', true, false);
$c->check('Ensuring that date.timezone is set', function () {
return (bool) ini_get('date.timezone');
}, 'The date.timezone PHP ini setting has not been set in ' . php_ini_loaded_file(), false);
if (extension_loaded('xdebug')) {
$c->addRecommend('Checking if Xdebug is installed', function () { return false; }, 'Xdebug is installed. Consider uninstalling Xdebug to make the SDK run much faster.');
$c->iniCheck('Ensuring that Xdebug\'s infinite recursion detection does not erroneously cause a fatal error', 'xdebug.max_nesting_level', 0, false);
}
$c->extCheck('dom',false);
$c->extCheck('curl',false);
$c->extCheck('openssl', false);
$c->extCheck('zlib', false);
$c->iniCheck('Checking if OPCache is enabled', 'opcache.enable', 1, false);
$c->title('PHP information');
ob_start();
phpinfo(INFO_GENERAL);
$info = ob_get_clean();
$c->write($c->quote($info));
$c->endTest();