1
0
mirror of synced 2024-11-23 12:16:02 +03:00
mg-bot-api-client-php/tests/Bot/Tests/ClientListTest.php
2019-06-14 12:48:13 +03:00

179 lines
3.7 KiB
PHP

<?php
/**
* PHP version 7.0
*
* Client Test
*
* @package RetailCrm\Mg\Bot\Tests
* @author retailCRM <integration@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://help.retailcrm.pro/docs/Developers
*/
namespace RetailCrm\Mg\Bot\Tests;
use RetailCrm\Mg\Bot\Model\Constants;
use RetailCrm\Mg\Bot\Model\Entity\Dialog;
use RetailCrm\Mg\Bot\Model\Request;
use RetailCrm\Mg\Bot\Model\Response;
use RetailCrm\Mg\Bot\Test\TestCase;
/**
* PHP version 7.0
*
* Class ClientListTest
*
* @package RetailCrm\Mg\Bot\Tests
* @author retailCRM <integration@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://help.retailcrm.pro/docs/Developers
*/
class ClientListTest extends TestCase
{
/**
* @group("list")
* @throws \Exception
*/
public function testChannels()
{
$client = self::getApiClient();
$request = new Request\ChannelsRequest();
$request->setActive(true);
$request->setTypes([Constants::CHANNEL_TYPE_FACEBOOK, Constants::CHANNEL_TYPE_INSTAGRAM]);
$response = $client->channels($request);
print_r($response->get(0));
}
/**
* @group("list")
* @throws \Exception
*/
public function testChats()
{
$client = self::getApiClient();
$request = new Request\ChatsRequest();
$request->setChannelType(Constants::CHANNEL_TYPE_FACEBOOK);
$response = $client->chats($request);
print_r($response);
}
/**
* @group("list")
* @throws \Exception
*/
public function testMembers()
{
$client = self::getApiClient();
$request = new Request\MembersRequest();
$response = $client->members($request);
print_r($response);
}
/**
* @group("list")
* @throws \Exception
*/
public function testMessages()
{
$client = self::getApiClient();
$request = new Request\MessagesRequest();
$request->setChannelType(Constants::CHANNEL_TYPE_INSTAGRAM);
$request->setType(Constants::MESSAGE_TYPE_TEXT);
$response = $client->messages($request);
print_r($response);
}
/**
* @group("list")
* @throws \Exception
*/
public function testCommands()
{
$client = self::getApiClient();
$request = new Request\CommandsRequest();
$response = $client->commands($request);
print_r($response);
}
/**
* @group("list")
* @throws \Exception
*/
public function testBots()
{
$client = self::getApiClient();
$request = new Request\BotsRequest();
$request->setActive(1);
$request->setRoles([Constants::BOT_ROLE_RESPONSIBLE]);
$data = $client->bots($request);
print_r($data);
}
/**
* @group("list")
* @throws \Exception
*/
public function testUsers()
{
$client = self::getApiClient();
$request = new Request\UsersRequest();
$request->setActive(1);
$request->setOnline(0);
$response = $client->users($request);
print_r($response);
}
/**
* @group("list")
* @throws \Exception
*/
public function testDialogs()
{
$client = self::getApiClient();
$request = new Request\DialogsRequest();
$request->setActive(1);
$request->setAssign(1);
$response = $client->dialogs($request);
}
/**
* @group("list")
* @throws \Exception
*/
public function testCustomers()
{
$client = self::getApiClient();
$request = new Request\CustomersRequest();
$response = $client->customers($request);
print_r($response);
}
}