BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
vendor
/
noweh
/
twitter-api-v2-php
/
test
📤 Upload
📝 New File
📁 New Folder
Close
Editing: BaseTestCase.php
<?php /** @noinspection PhpIllegalPsrClassPathInspection */ namespace Noweh\TwitterApi\Test; use Exception; use PHPUnit\Framework\TestCase; use Dotenv\Dotenv; use Noweh\TwitterApi\Client; abstract class BaseTestCase extends TestCase { /** @var Client $client */ protected Client $client; /** @var array<string> $settings */ protected static array $settings = []; /** @var int $pageSize */ protected static int $pageSize = 10; /** * Set up Test Case * @throws Exception */ public function setUp(): void { // Error : Class "Dotenv\Dotenv" not found. if (class_exists(Dotenv::class) && file_exists(__DIR__.'/config/.env')) { $dotenv = Dotenv::createUnsafeImmutable(__DIR__.'/config', '.env'); $dotenv->safeLoad(); } // Initialize from environmental variables. foreach (getenv() as $key => $value) { if (str_starts_with($key, 'TWITTER_')) { $name = str_replace('twitter_', '', mb_strtolower($key)); self::$settings[$name] = $value; } } $this->client = new Client(self::$settings); } /** * Log tweet nodes to console * @param array<\stdClass> | \stdClass $data */ protected static function logTweets($data): void { if (is_object($data)) { // Tweet $tweet_id = str_pad($data->id, 20, " ",STR_PAD_LEFT); echo "$tweet_id \"".str_replace("\n", " ", $data->text)."\"\n"; } else { foreach ($data as $item) { $tweet_id = str_pad($item->id, 20, " ",STR_PAD_LEFT); if (property_exists($item, 'author_id')) { $user_id = str_pad($item->author_id, 20, " ",STR_PAD_LEFT); echo $user_id." $tweet_id \"".str_replace("\n", " ", $item->text)."\"\n"; } else { // Mentions echo "$tweet_id \"".str_replace("\n", " ", $item->text)."\"\n"; } } } } /** * Log user nodes to console * @param array<\stdClass> $data */ protected static function logUsers(array $data): void { foreach ($data as $item) { $user_id = str_pad($item->id, 20, " ",STR_PAD_LEFT); echo $user_id." $item->username \"".str_replace("\n", " ", $item->name)."\"\n"; } } }
Save
Cancel