-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPushPlusTest.php
More file actions
82 lines (68 loc) · 2.28 KB
/
PushPlusTest.php
File metadata and controls
82 lines (68 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php declare(strict_types=1);
/*
* This file is part of Pusher.
*
* (c) Jetsung Chan <jetsungchan@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Pusher\Tests\Channels;
use PHPUnit\Framework\TestCase;
use Pusher\Channel\PushPlus;
use Pusher\Message\PushPlusMessage;
class PushPlusTest extends TestCase
{
private string $token = '';
private static bool $PASS = false;
public function setUp(): void
{
$token = getenv('PushPlusToken');
if ($token) {
$this->token = $token;
} else {
self::$PASS = true;
}
}
public function skipTest(string $func, bool $skip = false): void
{
if (self::$PASS || $skip) {
$this->markTestSkipped("skip {$func}");
}
}
// 延时
public function timeSleep(int $time = 5): void
{
sleep($time);
}
public static function additionProvider(): array
{
return [
[ 'Pusher通知', '一对一,<a href="https://github.com/idev-sig/pusher" target="_blank">项目地址</a>'],
[ 'Pusher通知', '一对多,<a href="https://github.com/idev-sig/pusher" target="_blank">项目地址</a>', '001'],
[ 'Pusher通知 JSON', '{"标题": "这个是标题", "消息内容": "这个是消息内容"}', '001', 'json'],
// [ '标题四 阿里云监控', '一对多推送,<a href="https://github.com/idev-sig/pusher" target="_blank">项目地址</a>', '001', 'cloudMonitor'],
];
}
/**
* @dataProvider additionProvider
*
* @return void
*/
public function testCases(string $title, string $content, string $topic = '', string $template = ''): void
{
$this->skipTest(__METHOD__);
$this->timeSleep(10);
$channel = new PushPlus();
$channel->setToken($this->token);
$message = new PushPlusMessage($content, $title);
$message->setTopic($topic)
->setTemplate($template);
$channel->request($message);
echo "\n";
if (!$channel->getStatus()) {
var_dump($channel->getErrMessage());//, $channel->getContents());
}
$this->assertTrue($channel->getStatus());
}
}