1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-30 09:58:59 +01:00
MadelineProto/tests/db.php
Daniil Gentili 1a27b674e3
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Layer 143
2022-06-25 19:29:01 +02:00

35 lines
1.2 KiB
PHP

<?php
// Switch to another database driver, for testing
if (\getenv('ACTIONS_PHAR')) {
include 'madeline.php';
\copy('madelineBackup.php', 'madeline.php');
} elseif (!\file_exists(__DIR__.'/../vendor/autoload.php') || \getenv('ACTIONS_FORCE_PREVIOUS')) {
echo 'You did not run composer update, using madeline.php'.PHP_EOL;
if (!\file_exists('madeline.php')) {
\copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
} else {
require_once 'vendor/autoload.php';
}
use danog\MadelineProto\Settings\Database\Memory;
use danog\MadelineProto\Settings\Database\Mysql;
use danog\MadelineProto\Settings\Database\Postgres;
use danog\MadelineProto\Settings\Database\Redis;
$MadelineProto = new \danog\MadelineProto\API(__DIR__.'/../testing.madeline');
$map = [
'memory' => new Memory,
'mysql' => (new Mysql)->setUri('tcp://mariadb')->setUsername('MadelineProto')->setPassword('test'),
'postgres' => (new Postgres)->setUri('tcp://postgres')->setUsername('MadelineProto')->setPassword('test'),
'redis' => (new Redis)->setUri('redis://redis'),
];
$MadelineProto->updateSettings($map[$argv[1]]);
\var_dump($MadelineProto->getFullInfo('danogentili'));