Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
TelegramBot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
TelegramBot
Commits
08f47566
Commit
08f47566
authored
Feb 20, 2016
by
Armando Lüscher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add first command tests.
parent
2d32beca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
252 additions
and
0 deletions
+252
-0
Helpers.php
tests/Helpers.php
+58
-0
CommandTest.php
tests/Unit/Commands/CommandTest.php
+194
-0
No files found.
tests/Helpers.php
0 → 100644
View file @
08f47566
<?php
/**
* This file is part of the TelegramBot package.
*
* (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace
Tests
;
use
Longman\TelegramBot\Entities\Update
;
/**
* @package TelegramTest
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
*/
class
Helpers
{
/**
* Set the value of a private/protected property of an object
*
* @param object $object Object that contains the private property
* @param string $property Name of the property who's value we want to set
* @param mixed $value The value to set to the property
*/
public
static
function
setObjectProperty
(
$object
,
$property
,
$value
)
{
$ref_object
=
new
\ReflectionObject
(
$object
);
$ref_property
=
$ref_object
->
getProperty
(
$property
);
$ref_property
->
setAccessible
(
true
);
$ref_property
->
setValue
(
$object
,
$value
);
}
/**
* Return a simple fake Update object
*
* @return Entities\Update
*/
public
static
function
getFakeUpdateObject
()
{
$data
=
[
'update_id'
=>
1
,
'message'
=>
[
'message_id'
=>
1
,
'chat'
=>
[
'id'
=>
1
,
],
'date'
=>
1
,
]
];
return
new
Update
(
$data
,
'botname'
);
}
}
tests/Unit/Commands/CommandTest.php
0 → 100644
View file @
08f47566
<?php
/**
* This file is part of the TelegramBot package.
*
* (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace
Tests\Unit\Commands
;
use
Tests\Unit\TestCase
;
use
Tests\Helpers
;
use
Longman\TelegramBot\Telegram
;
/**
* @package TelegramTest
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
*/
class
CommandTest
extends
TestCase
{
private
$command_namespace
=
'Longman\TelegramBot\Commands\Command'
;
private
$telegram
;
private
$command_stub
;
private
$telegram_with_config
;
private
$command_stub_with_config
;
public
function
setUp
()
{
//Default command object
$this
->
telegram
=
new
Telegram
(
'apikey'
,
'botname'
);
$this
->
command_stub
=
$this
->
getMockForAbstractClass
(
$this
->
command_namespace
,
[
$this
->
telegram
]);
//Create separate command object that contain a command config
$this
->
telegram_with_config
=
new
Telegram
(
'apikey'
,
'botname'
);
$this
->
telegram_with_config
->
setCommandConfig
(
'command_name'
,
[
'config_key'
=>
'config_value'
]);
$this
->
command_stub_with_config
=
$this
->
getMockBuilder
(
$this
->
command_namespace
)
->
disableOriginalConstructor
()
->
getMockForAbstractClass
();
//Set a name for the object property so that the constructor can set the config correctly
Helpers
::
setObjectProperty
(
$this
->
command_stub_with_config
,
'name'
,
'command_name'
);
$this
->
command_stub_with_config
->
__construct
(
$this
->
telegram_with_config
);
}
/**
* @test
*/
public
function
testCommandConstructorNeedsTelegramObject
()
{
$error_message
=
'must be an instance of Longman\TelegramBot\Telegram'
;
$params_to_test
=
[
[],
[
null
],
[
'something'
],
[
new
\stdClass
],
];
foreach
(
$params_to_test
as
$param
)
{
try
{
$this
->
getMockForAbstractClass
(
$this
->
command_namespace
,
$param
);
}
catch
(
\Exception
$e
)
{
$this
->
assertContains
(
$error_message
,
$e
->
getMessage
());
}
}
}
/**
* @test
*/
public
function
testCommandHasCorrectTelegramObject
()
{
$this
->
assertAttributeEquals
(
$this
->
telegram
,
'telegram'
,
$this
->
command_stub
);
$this
->
assertSame
(
$this
->
telegram
,
$this
->
command_stub
->
getTelegram
());
}
/**
* @test
*/
public
function
testDefaultCommandName
()
{
$this
->
assertAttributeEquals
(
''
,
'name'
,
$this
->
command_stub
);
$this
->
assertEmpty
(
$this
->
command_stub
->
getName
());
}
/**
* @test
*/
public
function
testDefaultCommandDescription
()
{
$this
->
assertAttributeEquals
(
'Command description'
,
'description'
,
$this
->
command_stub
);
$this
->
assertEquals
(
'Command description'
,
$this
->
command_stub
->
getDescription
());
}
/**
* @test
*/
public
function
testDefaultCommandUsage
()
{
$this
->
assertAttributeEquals
(
'Command usage'
,
'usage'
,
$this
->
command_stub
);
$this
->
assertEquals
(
'Command usage'
,
$this
->
command_stub
->
getUsage
());
}
/**
* @test
*/
public
function
testDefaultCommandVersion
()
{
$this
->
assertAttributeEquals
(
'1.0.0'
,
'version'
,
$this
->
command_stub
);
$this
->
assertEquals
(
'1.0.0'
,
$this
->
command_stub
->
getVersion
());
}
/**
* @test
*/
public
function
testDefaultCommandIsEnabled
()
{
$this
->
assertAttributeEquals
(
true
,
'enabled'
,
$this
->
command_stub
);
$this
->
assertTrue
(
$this
->
command_stub
->
isEnabled
());
}
/**
* @test
*/
public
function
testDefaultCommandNeedsMysql
()
{
$this
->
assertAttributeEquals
(
false
,
'need_mysql'
,
$this
->
command_stub
);
}
/**
* @test
*/
public
function
testDefaultCommandEmptyConfig
()
{
$this
->
assertAttributeEquals
([],
'config'
,
$this
->
command_stub
);
}
/**
* @test
*/
public
function
testDefaultCommandUpdateNull
()
{
$this
->
assertAttributeEquals
(
null
,
'update'
,
$this
->
command_stub
);
}
/**
* @test
*/
public
function
testCommandSetUpdateAndMessage
()
{
$stub
=
$this
->
command_stub
;
$this
->
assertSame
(
$stub
,
$stub
->
setUpdate
());
$this
->
assertEquals
(
null
,
$stub
->
getUpdate
());
$this
->
assertEquals
(
null
,
$stub
->
getMessage
());
$this
->
assertSame
(
$stub
,
$stub
->
setUpdate
(
null
));
$this
->
assertEquals
(
null
,
$stub
->
getUpdate
());
$this
->
assertEquals
(
null
,
$stub
->
getMessage
());
$update
=
Helpers
::
getFakeUpdateObject
();
$message
=
$update
->
getMessage
();
$stub
->
setUpdate
(
$update
);
$this
->
assertAttributeEquals
(
$update
,
'update'
,
$stub
);
$this
->
assertEquals
(
$update
,
$stub
->
getUpdate
());
$this
->
assertAttributeEquals
(
$message
,
'message'
,
$stub
);
$this
->
assertEquals
(
$message
,
$stub
->
getMessage
());
}
/**
* @test
*/
public
function
testCommandWithConfigNotEmptyConfig
()
{
$this
->
assertAttributeNotEmpty
(
'config'
,
$this
->
command_stub_with_config
);
}
/**
* @test
*/
public
function
testCommandWithConfigCorrectConfig
()
{
$this
->
assertAttributeEquals
([
'config_key'
=>
'config_value'
],
'config'
,
$this
->
command_stub_with_config
);
$this
->
assertEquals
([
'config_key'
=>
'config_value'
],
$this
->
command_stub_with_config
->
getConfig
(
null
));
$this
->
assertEquals
([
'config_key'
=>
'config_value'
],
$this
->
command_stub_with_config
->
getConfig
());
$this
->
assertEquals
(
'config_value'
,
$this
->
command_stub_with_config
->
getConfig
(
'config_key'
));
$this
->
assertEquals
([],
$this
->
command_stub_with_config
->
getConfig
(
'not_config_key'
));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment