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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
<?php
namespace Roundcube\Tests\Framework;
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_shared functions
*/
class Framework_Bootstrap extends TestCase
{
/**
* bootstrap.php: asciiwords()
*/
function test_asciiwords()
{
$this->assertSame('abc.123', asciiwords('abc%.123', false));
$this->assertSame('abc-123', asciiwords('abc%.123', true, '-'));
}
/**
* bootstrap.php: in_array_nocase()
*/
function test_in_array_nocase()
{
$haystack = ['Test'];
$needle = 'test';
$result = in_array_nocase($needle, $haystack);
$this->assertTrue($result, "Invalid in_array_nocase() result (Array)");
$result = in_array_nocase($needle, null);
$this->assertFalse($result, "Invalid in_array_nocase() result (null)");
}
/**
* bootstrap.php: parse_bytes()
*/
function test_parse_bytes()
{
$data = [
'1' => 1,
'1024' => 1024,
'2k' => 2 * 1024,
'2 k' => 2 * 1024,
'2kb' => 2 * 1024,
'2kB' => 2 * 1024,
'2m' => 2 * 1048576,
'2 m' => 2 * 1048576,
'2mb' => 2 * 1048576,
'2mB' => 2 * 1048576,
'2g' => 2 * 1024 * 1048576,
'2 g' => 2 * 1024 * 1048576,
'2gb' => 2 * 1024 * 1048576,
'2gB' => 2 * 1024 * 1048576,
];
foreach ($data as $value => $expected) {
$result = parse_bytes($value);
$this->assertEquals($expected, $result, "Invalid parse_bytes() result for $value");
}
}
/**
* bootstrap.php: slashify()
*/
function test_slashify()
{
$data = [
'test' => 'test/',
'test/' => 'test/',
'' => '/',
"\\" => "\\/",
];
foreach ($data as $value => $expected) {
$result = slashify($value);
$this->assertEquals($expected, $result, "Invalid slashify() result for $value");
}
}
/**
* bootstrap.php: unslashify()
*/
function test_unslashify()
{
$data = [
'test' => 'test',
'test/' => 'test',
'/' => '',
"\\/" => "\\",
'test/test' => 'test/test',
'test//' => 'test',
'/test//' => '/test',
];
foreach ($data as $value => $expected) {
$result = unslashify($value);
$this->assertEquals($expected, $result, "Invalid unslashify() result for $value");
}
}
/**
* bootstrap.php: get_offset_sec()
*/
function test_get_offset_sec()
{
$data = [
'1s' => 1,
'1m' => 1 * 60,
'1h' => 1 * 60 * 60,
'1d' => 1 * 60 * 60 * 24,
'1w' => 1 * 60 * 60 * 24 * 7,
'1y' => (int) '1y',
'100' => 100,
];
foreach ($data as $value => $expected) {
$result = get_offset_sec($value);
$this->assertEquals($expected, $result, "Invalid get_offset_sec() result for $value");
}
}
/**
* bootstrap.php: array_keys_recursive()
*/
function test_array_keys_recursive()
{
$input = [
'one' => [
'two' => [
'three' => [],
'four' => 'something',
],
],
'five' => 'test',
];
$result = array_keys_recursive($input);
$input_str = 'one,two,three,four,five';
$result_str = implode(',', $result);
$this->assertEquals($input_str, $result_str, "Invalid array_keys_recursive() result");
}
/**
* bootstrap.php: array_first()
*/
function test_array_first()
{
$this->assertSame(null, array_first([]));
$this->assertSame(null, array_first(false));
$this->assertSame(null, array_first('test'));
$this->assertSame('test', array_first(['test']));
$input = ['test1', 'test2'];
next($input);
$this->assertSame('test1', array_first($input));
}
/**
* bootstrap.php: abbreviate_string()
*/
function test_abbreviate_string()
{
$data = [
// expected, string, maxlength, placeholder, $ending
['', '', 10, '...', false],
['1234.90abc', '1234567890abc', 10, '.', false],
['żćżć.12345', 'żćżćżćżć12345', 10, '.', false],
// TODO: more cases
];
foreach ($data as $set) {
$result = abbreviate_string($set[1], $set[2], $set[3], $set[4]);
$this->assertEquals($set[0], $result);
}
}
/**
* bootstrap.php: format_email()
*/
function test_format_email()
{
$data = [
'' => '',
'test' => 'test',
'test@test.tld' => 'test@test.tld',
'test@[127.0.0.1]' => 'test@[127.0.0.1]',
'TEST@TEST.TLD' => 'TEST@test.tld',
];
foreach ($data as $value => $expected) {
$result = format_email($value);
$this->assertEquals($expected, $result, "Invalid format_email() result for $value");
}
}
/**
* bootstrap.php: format_email_recipient()
*/
function test_format_email_recipient()
{
$data = [
'' => [''],
'test' => ['test'],
'test@test.tld' => ['test@test.tld'],
'test@[127.0.0.1]' => ['test@[127.0.0.1]'],
'TEST@TEST.TLD' => ['TEST@TEST.TLD'],
'TEST <test@test.tld>' => ['test@test.tld', 'TEST'],
'"TEST\"" <test@test.tld>' => ['test@test.tld', 'TEST"'],
];
foreach ($data as $expected => $value) {
$result = format_email_recipient($value[0], isset($value[1]) ? $value[1] : null);
$this->assertEquals($expected, $result, "Invalid format_email_recipient()");
}
}
/**
* bootstrap.php: is_ascii()
*/
function test_is_ascii()
{
$result = is_ascii("0123456789");
$this->assertTrue($result, "Valid ASCII (numbers)");
$result = is_ascii("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
$this->assertTrue($result, "Valid ASCII (letters)");
$result = is_ascii(" !\"#\$%&'()*+,-./:;<=>?@[\\^_`{|}~");
$this->assertTrue($result, "Valid ASCII (special characters)");
$result = is_ascii("\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F"
."\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F");
$this->assertTrue($result, "Valid ASCII (control characters)");
$result = is_ascii("\n", false);
$this->assertFalse($result, "Valid ASCII (control characters)");
$result = is_ascii("ż");
$this->assertFalse($result, "Invalid ASCII (UTF-8 character)");
$result = is_ascii("ż", false);
$this->assertFalse($result, "Invalid ASCII (UTF-8 character [2])");
}
/**
* bootstrap.php: version_parse()
*/
function test_version_parse()
{
$this->assertEquals('0.9.0', version_parse('0.9-stable'));
$this->assertEquals('0.9.99', version_parse('0.9-git'));
}
}
|