175 lines
4.6 KiB
PHP
175 lines
4.6 KiB
PHP
<?php
|
|
/*
|
|
*
|
|
* Copyright 2015 gRPC authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
class CallTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public static $server;
|
|
public static $port;
|
|
|
|
public static function setUpBeforeClass()
|
|
{
|
|
self::$server = new Grpc\Server([]);
|
|
self::$port = self::$server->addHttp2Port('0.0.0.0:0');
|
|
}
|
|
|
|
public function setUp()
|
|
{
|
|
$this->channel = new Grpc\Channel('localhost:'.self::$port, []);
|
|
$this->call = new Grpc\Call($this->channel,
|
|
'/foo',
|
|
Grpc\Timeval::infFuture());
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
$this->channel->close();
|
|
}
|
|
|
|
public function testConstructor()
|
|
{
|
|
$this->assertSame('Grpc\Call', get_class($this->call));
|
|
$this->assertObjectHasAttribute('channel', $this->call);
|
|
}
|
|
|
|
public function testAddEmptyMetadata()
|
|
{
|
|
$batch = [
|
|
Grpc\OP_SEND_INITIAL_METADATA => [],
|
|
];
|
|
$result = $this->call->startBatch($batch);
|
|
$this->assertTrue($result->send_metadata);
|
|
}
|
|
|
|
public function testAddSingleMetadata()
|
|
{
|
|
$batch = [
|
|
Grpc\OP_SEND_INITIAL_METADATA => ['key' => ['value']],
|
|
];
|
|
$result = $this->call->startBatch($batch);
|
|
$this->assertTrue($result->send_metadata);
|
|
}
|
|
|
|
public function testAddMultiValueMetadata()
|
|
{
|
|
$batch = [
|
|
Grpc\OP_SEND_INITIAL_METADATA => ['key' => ['value1', 'value2']],
|
|
];
|
|
$result = $this->call->startBatch($batch);
|
|
$this->assertTrue($result->send_metadata);
|
|
}
|
|
|
|
public function testAddSingleAndMultiValueMetadata()
|
|
{
|
|
$batch = [
|
|
Grpc\OP_SEND_INITIAL_METADATA => ['key1' => ['value1'],
|
|
'key2' => ['value2',
|
|
'value3', ], ],
|
|
];
|
|
$result = $this->call->startBatch($batch);
|
|
$this->assertTrue($result->send_metadata);
|
|
}
|
|
|
|
public function testGetPeer()
|
|
{
|
|
$this->assertTrue(is_string($this->call->getPeer()));
|
|
}
|
|
|
|
public function testCancel()
|
|
{
|
|
$this->assertNull($this->call->cancel());
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testInvalidStartBatchKey()
|
|
{
|
|
$batch = [
|
|
'invalid' => ['key1' => 'value1'],
|
|
];
|
|
$result = $this->call->startBatch($batch);
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testInvalidMetadataStrKey()
|
|
{
|
|
$batch = [
|
|
Grpc\OP_SEND_INITIAL_METADATA => ['Key' => ['value1', 'value2']],
|
|
];
|
|
$result = $this->call->startBatch($batch);
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testInvalidMetadataIntKey()
|
|
{
|
|
$batch = [
|
|
Grpc\OP_SEND_INITIAL_METADATA => [1 => ['value1', 'value2']],
|
|
];
|
|
$result = $this->call->startBatch($batch);
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testInvalidMetadataInnerValue()
|
|
{
|
|
$batch = [
|
|
Grpc\OP_SEND_INITIAL_METADATA => ['key1' => 'value1'],
|
|
];
|
|
$result = $this->call->startBatch($batch);
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testInvalidConstuctor()
|
|
{
|
|
$this->call = new Grpc\Call();
|
|
$this->assertNull($this->call);
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testInvalidConstuctor2()
|
|
{
|
|
$this->call = new Grpc\Call('hi', 'hi', 'hi');
|
|
$this->assertNull($this->call);
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testInvalidSetCredentials()
|
|
{
|
|
$this->call->setCredentials('hi');
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testInvalidSetCredentials2()
|
|
{
|
|
$this->call->setCredentials([]);
|
|
}
|
|
}
|