forked from clue/reactphp-eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessageEventTest.php
More file actions
147 lines (112 loc) · 4.37 KB
/
MessageEventTest.php
File metadata and controls
147 lines (112 loc) · 4.37 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
namespace Clue\Tests\React\EventSource;
use PHPUnit\Framework\TestCase;
use Clue\React\EventSource\MessageEvent;
class MessageEventTest extends TestCase
{
public function testParseSimpleData()
{
$message = MessageEvent::parse("data: hello", '');
$this->assertEquals('hello', $message->data);
}
public function testParseDataOverTwoLinesWillBeCombined()
{
$message = MessageEvent::parse("data: hello\ndata: world", '');
$this->assertEquals("hello\nworld", $message->data);
}
public function testParseDataOverTwoLinesWithCarrigeReturnsWillBeCombinedWithNewline()
{
$message = MessageEvent::parse("data: hello\rdata: world", '');
$this->assertEquals("hello\nworld", $message->data);
}
public function testParseDataOverTwoLinesWithCarrigeReturnsAndNewlinesWillBeCombinedWithNewline()
{
$message = MessageEvent::parse("data: hello\r\ndata: world", '');
$this->assertEquals("hello\nworld", $message->data);
}
public function testParseDataWithTrailingNewlineOverTwoLines()
{
$message = MessageEvent::parse("data: hello\ndata:", '');
$this->assertEquals("hello\n", $message->data);
}
public function testParseDataWithCarrigeReturnOverTwoLines()
{
$message = MessageEvent::parse("data: hello\rdata:", '');
$this->assertEquals("hello\n", $message->data);
}
public function testParseDataWithCarrigeReturnAndNewlineOverTwoLines()
{
$message = MessageEvent::parse("data: hello\r\ndata:", '');
$this->assertEquals("hello\n", $message->data);
}
public function testParseReturnsMessageWithIdFromStream()
{
$message = MessageEvent::parse("data: hello\r\nid: 1", '');
$this->assertEquals("hello", $message->data);
$this->assertEquals('1', $message->lastEventId);
}
public function testParseWithoutIdReturnsMessageWithIdFromLastEventId()
{
$message = MessageEvent::parse("data: hello", '1');
$this->assertEquals("hello", $message->data);
$this->assertEquals('1', $message->lastEventId);
}
public function testParseWithoutIdReturnsMessageWithEmptyIdIfLastEventIdIsEmpty()
{
$message = MessageEvent::parse("data: hello", '');
$this->assertEquals("hello", $message->data);
$this->assertEquals('', $message->lastEventId);
}
public function testParseWithMultipleIdsReturnsMessageWithLastEventIdFromStream()
{
$message = MessageEvent::parse("data: hello\nid: 1\nid: 2", '0');
$this->assertEquals("hello", $message->data);
$this->assertEquals('2', $message->lastEventId);
}
public function testParseReturnsMessageWithTypeFromStream()
{
$message = MessageEvent::parse("data: hello\r\nevent: join", '');
$this->assertEquals("hello", $message->data);
$this->assertEquals('join', $message->type);
}
public function testParseWithoutEventReturnsMessageWithDefaultMessageType()
{
$message = MessageEvent::parse("data: hello", '');
$this->assertEquals("hello", $message->data);
$this->assertEquals('message', $message->type);
}
public function testParseWithMultipleEventsReturnsMessageWithLastTypeFromStream()
{
$message = MessageEvent::parse("data: hello\nevent: join\nevent: leave", '');
$this->assertEquals("hello", $message->data);
$this->assertEquals('leave', $message->type);
}
public function testParseWithEmptyEventReturnsMessageWithDefaultMessageType()
{
$message = MessageEvent::parse("data: hello\r\nevent:", '');
$this->assertEquals("hello", $message->data);
$this->assertEquals('message', $message->type);
}
public function retryTimeDataProvider()
{
return [
['retry: 1234', 1.234],
['retry: 0', 0.0],
['retry: ' . PHP_INT_MAX, PHP_INT_MAX * 0.001],
['retry: ' . PHP_INT_MAX . '9', null],
['retry: 1.234', null],
['retry: now', null],
['retry: -1', null],
['retry: -1.234', null]
];
}
/**
* @dataProvider retryTimeDataProvider
*/
public function testParseRetryTime($input, $expected)
{
$retryTime = null;
MessageEvent::parse($input, '', $retryTime);
$this->assertSame($expected, $retryTime);
}
}