mirror of
https://github.com/xPaw/PHP-Source-Query.git
synced 2026-05-18 11:53:34 +02:00
Update phpunit, add psalm
This commit is contained in:
@@ -14,3 +14,5 @@ jobs:
|
|||||||
run: composer install --no-interaction --no-progress
|
run: composer install --no-interaction --no-progress
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: php${{ matrix.php }} vendor/bin/phpunit --configuration Tests/phpunit.xml --verbose --fail-on-warning
|
run: php${{ matrix.php }} vendor/bin/phpunit --configuration Tests/phpunit.xml --verbose --fail-on-warning
|
||||||
|
- name: Run psalm
|
||||||
|
run: php${{ matrix.php }} vendor/bin/psalm
|
||||||
|
|||||||
+13
-26
@@ -61,7 +61,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SourceQueryTests extends TestCase
|
class Tests extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
private TestableSocket $Socket;
|
private TestableSocket $Socket;
|
||||||
private SourceQuery $SourceQuery;
|
private SourceQuery $SourceQuery;
|
||||||
@@ -80,38 +80,30 @@
|
|||||||
unset( $this->Socket, $this->SourceQuery );
|
unset( $this->Socket, $this->SourceQuery );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException xPaw\SourceQuery\Exception\InvalidArgumentException
|
|
||||||
*/
|
|
||||||
public function testInvalidTimeout() : void
|
public function testInvalidTimeout() : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\InvalidArgumentException' );
|
||||||
$SourceQuery = new SourceQuery( );
|
$SourceQuery = new SourceQuery( );
|
||||||
$SourceQuery->Connect( '', 2, -1 );
|
$SourceQuery->Connect( '', 2, -1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException xPaw\SourceQuery\Exception\SocketException
|
|
||||||
*/
|
|
||||||
public function testNotConnectedGetInfo() : void
|
public function testNotConnectedGetInfo() : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\SocketException' );
|
||||||
$this->SourceQuery->Disconnect();
|
$this->SourceQuery->Disconnect();
|
||||||
$this->SourceQuery->GetInfo();
|
$this->SourceQuery->GetInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException xPaw\SourceQuery\Exception\SocketException
|
|
||||||
*/
|
|
||||||
public function testNotConnectedPing() : void
|
public function testNotConnectedPing() : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\SocketException' );
|
||||||
$this->SourceQuery->Disconnect();
|
$this->SourceQuery->Disconnect();
|
||||||
$this->SourceQuery->Ping();
|
$this->SourceQuery->Ping();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException xPaw\SourceQuery\Exception\SocketException
|
|
||||||
*/
|
|
||||||
public function testNotConnectedGetPlayers() : void
|
public function testNotConnectedGetPlayers() : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\SocketException' );
|
||||||
$this->SourceQuery->Disconnect();
|
$this->SourceQuery->Disconnect();
|
||||||
$this->SourceQuery->GetPlayers();
|
$this->SourceQuery->GetPlayers();
|
||||||
}
|
}
|
||||||
@@ -121,33 +113,28 @@
|
|||||||
*/
|
*/
|
||||||
public function testNotConnectedGetRules() : void
|
public function testNotConnectedGetRules() : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\SocketException' );
|
||||||
$this->SourceQuery->Disconnect();
|
$this->SourceQuery->Disconnect();
|
||||||
$this->SourceQuery->GetRules();
|
$this->SourceQuery->GetRules();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException xPaw\SourceQuery\Exception\SocketException
|
|
||||||
*/
|
|
||||||
public function testNotConnectedSetRconPassword() : void
|
public function testNotConnectedSetRconPassword() : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\SocketException' );
|
||||||
$this->SourceQuery->Disconnect();
|
$this->SourceQuery->Disconnect();
|
||||||
$this->SourceQuery->SetRconPassword('a');
|
$this->SourceQuery->SetRconPassword('a');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException xPaw\SourceQuery\Exception\SocketException
|
|
||||||
*/
|
|
||||||
public function testNotConnectedRcon() : void
|
public function testNotConnectedRcon() : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\SocketException' );
|
||||||
$this->SourceQuery->Disconnect();
|
$this->SourceQuery->Disconnect();
|
||||||
$this->SourceQuery->Rcon('a');
|
$this->SourceQuery->Rcon('a');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException xPaw\SourceQuery\Exception\SocketException
|
|
||||||
*/
|
|
||||||
public function testRconWithoutPassword() : void
|
public function testRconWithoutPassword() : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\SocketException' );
|
||||||
$this->SourceQuery->Rcon('a');
|
$this->SourceQuery->Rcon('a');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -187,33 +174,33 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @expectedException xPaw\SourceQuery\Exception\InvalidPacketException
|
|
||||||
* @dataProvider BadPacketProvider
|
* @dataProvider BadPacketProvider
|
||||||
*/
|
*/
|
||||||
public function testBadGetInfo( string $Data ) : void
|
public function testBadGetInfo( string $Data ) : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\InvalidPacketException' );
|
||||||
$this->Socket->Queue( $Data );
|
$this->Socket->Queue( $Data );
|
||||||
|
|
||||||
$this->SourceQuery->GetInfo();
|
$this->SourceQuery->GetInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @expectedException xPaw\SourceQuery\Exception\InvalidPacketException
|
|
||||||
* @dataProvider BadPacketProvider
|
* @dataProvider BadPacketProvider
|
||||||
*/
|
*/
|
||||||
public function testBadGetChallengeViaPlayers( string $Data ) : void
|
public function testBadGetChallengeViaPlayers( string $Data ) : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\InvalidPacketException' );
|
||||||
$this->Socket->Queue( $Data );
|
$this->Socket->Queue( $Data );
|
||||||
|
|
||||||
$this->SourceQuery->GetPlayers();
|
$this->SourceQuery->GetPlayers();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @expectedException xPaw\SourceQuery\Exception\InvalidPacketException
|
|
||||||
* @dataProvider BadPacketProvider
|
* @dataProvider BadPacketProvider
|
||||||
*/
|
*/
|
||||||
public function testBadGetPlayersAfterCorrectChallenge( string $Data ) : void
|
public function testBadGetPlayersAfterCorrectChallenge( string $Data ) : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\InvalidPacketException' );
|
||||||
$this->Socket->Queue( "\xFF\xFF\xFF\xFF\x41\x11\x11\x11\x11" );
|
$this->Socket->Queue( "\xFF\xFF\xFF\xFF\x41\x11\x11\x11\x11" );
|
||||||
$this->Socket->Queue( $Data );
|
$this->Socket->Queue( $Data );
|
||||||
|
|
||||||
@@ -221,11 +208,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @expectedException xPaw\SourceQuery\Exception\InvalidPacketException
|
|
||||||
* @dataProvider BadPacketProvider
|
* @dataProvider BadPacketProvider
|
||||||
*/
|
*/
|
||||||
public function testBadGetRulesAfterCorrectChallenge( string $Data ) : void
|
public function testBadGetRulesAfterCorrectChallenge( string $Data ) : void
|
||||||
{
|
{
|
||||||
|
$this->expectException( 'xPaw\SourceQuery\Exception\InvalidPacketException' );
|
||||||
$this->Socket->Queue( "\xFF\xFF\xFF\xFF\x41\x11\x11\x11\x11" );
|
$this->Socket->Queue( "\xFF\xFF\xFF\xFF\x41\x11\x11\x11\x11" );
|
||||||
$this->Socket->Queue( $Data );
|
$this->Socket->Queue( $Data );
|
||||||
|
|
||||||
|
|||||||
+3
-2
@@ -22,8 +22,9 @@
|
|||||||
},
|
},
|
||||||
"require-dev":
|
"require-dev":
|
||||||
{
|
{
|
||||||
"phpunit/phpunit": "^6.0",
|
"phpunit/phpunit": "9.2",
|
||||||
"php-coveralls/php-coveralls": "^2.1"
|
"vimeo/psalm": "^3.12",
|
||||||
|
"php-coveralls/php-coveralls": "^2.2"
|
||||||
},
|
},
|
||||||
"autoload":
|
"autoload":
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<psalm
|
||||||
|
errorLevel="1"
|
||||||
|
resolveFromConfigFile="true"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xmlns="https://getpsalm.org/schema/config"
|
||||||
|
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
|
||||||
|
>
|
||||||
|
<projectFiles>
|
||||||
|
<directory name="SourceQuery" />
|
||||||
|
<directory name="Tests" />
|
||||||
|
<ignoreFiles>
|
||||||
|
<directory name="vendor" />
|
||||||
|
</ignoreFiles>
|
||||||
|
</projectFiles>
|
||||||
|
</psalm>
|
||||||
Reference in New Issue
Block a user