Tests/SSH2: add unit test for #1167

This commit is contained in:
terrafrost 2017-09-06 00:27:07 -05:00
parent a3325d102e
commit ed3846a7a2
1 changed files with 20 additions and 0 deletions

View File

@ -146,5 +146,25 @@ class Functional_Net_SSH2Test extends PhpseclibFunctionalTestCase
$ssh->exec('ls -latr');
$ssh->disablePTY();
$ssh->exec('pwd');
return $ssh;
}
/**
* @depends testDisablePTY
* @group github1167
*/
public function testChannelDataAfterOpen($ssh)
{
$ssh->write("ping 127.0.0.1\n");
$ssh->enablePTY();
$ssh->exec('bash');
$ssh->write("ls -latr\n");
$ssh->setTimeout(1);
$ssh->read();
}
}