web3.php/test/unit/PersonalBatchTest.php
2018-01-12 11:11:09 +08:00

74 lines
1.5 KiB
PHP

<?php
namespace Test\Unit;
use RuntimeException;
use Test\TestCase;
class PersonalBatchTest extends TestCase
{
/**
* personal
*
* @var Web3\Personal
*/
protected $personal;
/**
* setUp
*
* @return void
*/
public function setUp()
{
parent::setUp();
$this->personal = $this->web3->personal;
}
/**
* testBatch
*
* @return void
*/
public function testBatch()
{
$personal = $this->personal;
$personal->batch(true);
$personal->listAccounts();
$personal->newAccount('123456');
$personal->provider->execute(function ($err, $data) {
if ($err !== null) {
return $this->assertTrue($err !== null);
}
$this->assertTrue(is_array($data[0]));
$this->assertTrue(is_string($data[1]));
});
}
/**
* testWrongParam
*
* @return void
*/
public function testWrongParam()
{
$this->expectException(RuntimeException::class);
$personal = $this->personal;
$personal->batch(true);
$personal->listAccounts();
$personal->newAccount($personal);
$personal->provider->execute(function ($err, $data) {
if ($err !== null) {
return $this->fail($err->getMessage());
}
$this->assertTrue(is_string($data[0]));
$this->assertEquals($data[1], $this->testHash);
});
}
}