mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
wip
This commit is contained in:
@@ -115,6 +115,19 @@ class TunnelTest extends TestCase
|
||||
$this->assertInstanceOf(Connection::class, $connection);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_rejects_tcp_sharing_if_disabled()
|
||||
{
|
||||
$this->createTestTcpServer();
|
||||
|
||||
$this->app['config']['expose.admin.allow_tcp_port_sharing'] = false;
|
||||
|
||||
$this->expectException(\UnexpectedValueException::class);
|
||||
|
||||
$client = $this->createClient();
|
||||
$this->await($client->connectToServerAndShareTcp(8085));
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_rejects_tcp_sharing_if_forbidden()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user