-
Notifications
You must be signed in to change notification settings - Fork 2
/
ShowdocTest.php
77 lines (63 loc) · 1.89 KB
/
ShowdocTest.php
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
<?php declare(strict_types=1);
/*
* This file is part of Pusher.
*
* (c) Jetsung Chan <[email protected]>
*
* 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\Showdoc;
use Pusher\Message\ShowdocMessage;
class ShowdocTest extends TestCase
{
private string $token = '';
private static bool $PASS = false;
public function setUp(): void
{
$token = getenv('ShowdocToken');
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
{
$markdown = "![screenshot](https://gw.alicdn.com/tfs/TB1ut3xxbsrBKNjSZFpXXcXhFXa-846-786.png)
### 乔布斯 20 年前想打造的苹果咖啡厅
Apple Store 的设计正从原来满满的科技感走向生活化,而其生活化的走向其实可以追溯到 20 年前苹果一个建立咖啡馆的计划。
**[项目地址](https://github.com/idev-sig/pusher)**";
return [
[ 'Pusher通知', $markdown],
];
}
/**
* @dataProvider additionProvider
*
* @return void
*/
public function testCases(string $title, string $content): void
{
$this->skipTest(__METHOD__);
$this->timeSleep(5);
$channel = new Showdoc();
$channel->setToken($this->token);
$message = new ShowdocMessage($content, $title);
$channel->request($message);
$this->assertTrue($channel->getStatus());
}
}