import(['lang' => "test"]); Arsse::load($conf2); $this->assertSame($conf2, Arsse::$conf); $this->assertSame($lang, Arsse::$lang); $this->assertSame($db, Arsse::$db); $this->assertSame($user, Arsse::$user); \Phake::verify($lang)->set("test"); } public function testLoadNewData(): void { if (!\JKingWeb\Arsse\Db\SQLite3\Driver::requirementsMet() && !\JKingWeb\Arsse\Db\SQLite3\PDODriver::requirementsMet()) { $this->markTestSkipped("A functional SQLite interface is required for this test"); } $conf = (new Conf)->import(['dbSQLite3File' => ":memory:"]); Arsse::load($conf); $this->assertInstanceOf(Conf::class, Arsse::$conf); $this->assertInstanceOf(Lang::class, Arsse::$lang); $this->assertInstanceOf(Database::class, Arsse::$db); $this->assertInstanceOf(User::class, Arsse::$user); } /** @dataProvider provideExtensionChecks */ public function testCheckForExtensions(array $ext, $exp): void { if ($exp instanceof \Exception) { $this->assertException($exp); Arsse::checkExtensions(...$ext); } else { $this->assertNull(Arsse::checkExtensions(...$ext)); } } public function provideExtensionChecks(): iterable { return [ [["pcre"], null], [["foo", "bar", "baz"], new Exception("extMissing", ['first' => "foo", 'total' => 3])], [["bar", "baz"], new Exception("extMissing", ['first' => "bar", 'total' => 2])], [["baz"], new Exception("extMissing", ['first' => "baz", 'total' => 1])], ]; } }