7
7
8
8
namespace Tests \Feature ;
9
9
10
+ use PhpMqtt \Client \ConnectionSettings ;
10
11
use PhpMqtt \Client \MqttClient ;
11
12
use Tests \TestCase ;
12
13
@@ -20,29 +21,40 @@ class PublishSubscribeTest extends TestCase
20
21
public function publishSubscribeData (): array
21
22
{
22
23
return [
23
- ['test/foo/bar/baz ' , 'test/foo/bar/baz ' , 'hello world ' , []],
24
- ['test/foo/bar/+ ' , 'test/foo/bar/baz ' , 'hello world ' , ['baz ' ]],
25
- ['test/foo/+/baz ' , 'test/foo/bar/baz ' , 'hello world ' , ['bar ' ]],
26
- ['test/foo/# ' , 'test/foo/bar/baz ' , 'hello world ' , ['bar/baz ' ]],
27
- ['test/foo/+/bar/# ' , 'test/foo/my/bar/baz ' , 'hello world ' , ['my ' , 'baz ' ]],
28
- ['test/foo/+/bar/# ' , 'test/foo/my/bar/baz/blub ' , 'hello world ' , ['my ' , 'baz/blub ' ]],
29
- ['test/foo/bar/baz ' , 'test/foo/bar/baz ' , random_bytes (2 * 1024 * 1024 ), []], // 2MB message
24
+ [false , 'test/foo/bar/baz ' , 'test/foo/bar/baz ' , 'hello world ' , []],
25
+ [false , 'test/foo/bar/+ ' , 'test/foo/bar/baz ' , 'hello world ' , ['baz ' ]],
26
+ [false , 'test/foo/+/baz ' , 'test/foo/bar/baz ' , 'hello world ' , ['bar ' ]],
27
+ [false , 'test/foo/# ' , 'test/foo/bar/baz ' , 'hello world ' , ['bar/baz ' ]],
28
+ [false , 'test/foo/+/bar/# ' , 'test/foo/my/bar/baz ' , 'hello world ' , ['my ' , 'baz ' ]],
29
+ [false , 'test/foo/+/bar/# ' , 'test/foo/my/bar/baz/blub ' , 'hello world ' , ['my ' , 'baz/blub ' ]],
30
+ [false , 'test/foo/bar/baz ' , 'test/foo/bar/baz ' , random_bytes (2 * 1024 * 1024 ), []], // 2MB message
31
+ [true , 'test/foo/bar/baz ' , 'test/foo/bar/baz ' , 'hello world ' , []],
32
+ [true , 'test/foo/bar/+ ' , 'test/foo/bar/baz ' , 'hello world ' , ['baz ' ]],
33
+ [true , 'test/foo/+/baz ' , 'test/foo/bar/baz ' , 'hello world ' , ['bar ' ]],
34
+ [true , 'test/foo/# ' , 'test/foo/bar/baz ' , 'hello world ' , ['bar/baz ' ]],
35
+ [true , 'test/foo/+/bar/# ' , 'test/foo/my/bar/baz ' , 'hello world ' , ['my ' , 'baz ' ]],
36
+ [true , 'test/foo/+/bar/# ' , 'test/foo/my/bar/baz/blub ' , 'hello world ' , ['my ' , 'baz/blub ' ]],
37
+ [true , 'test/foo/bar/baz ' , 'test/foo/bar/baz ' , random_bytes (2 * 1024 * 1024 ), []], // 2MB message
30
38
];
31
39
}
32
40
33
41
/**
34
42
* @dataProvider publishSubscribeData
35
43
*/
36
44
public function test_publishing_and_subscribing_using_quality_of_service_0_works_as_intended (
45
+ bool $ useBlockingSocket ,
37
46
string $ subscriptionTopicFilter ,
38
47
string $ publishTopic ,
39
48
string $ publishMessage ,
40
49
array $ matchedTopicWildcards
41
50
): void
42
51
{
43
52
// We connect and subscribe to a topic using the first client.
53
+ $ connectionSettings = (new ConnectionSettings ())
54
+ ->useBlockingSocket ($ useBlockingSocket );
55
+
44
56
$ subscriber = new MqttClient ($ this ->mqttBrokerHost , $ this ->mqttBrokerPort , 'subscriber ' );
45
- $ subscriber ->connect (null , true );
57
+ $ subscriber ->connect ($ connectionSettings , true );
46
58
47
59
$ subscriber ->subscribe (
48
60
$ subscriptionTopicFilter ,
@@ -76,15 +88,19 @@ function (string $topic, string $message, bool $retained, array $wildcards) use
76
88
* @dataProvider publishSubscribeData
77
89
*/
78
90
public function test_publishing_and_subscribing_using_quality_of_service_1_works_as_intended (
91
+ bool $ useBlockingSocket ,
79
92
string $ subscriptionTopicFilter ,
80
93
string $ publishTopic ,
81
94
string $ publishMessage ,
82
95
array $ matchedTopicWildcards
83
96
): void
84
97
{
85
98
// We connect and subscribe to a topic using the first client.
99
+ $ connectionSettings = (new ConnectionSettings ())
100
+ ->useBlockingSocket ($ useBlockingSocket );
101
+
86
102
$ subscriber = new MqttClient ($ this ->mqttBrokerHost , $ this ->mqttBrokerPort , 'subscriber ' );
87
- $ subscriber ->connect (null , true );
103
+ $ subscriber ->connect ($ connectionSettings , true );
88
104
89
105
$ subscriber ->subscribe (
90
106
$ subscriptionTopicFilter ,
@@ -118,15 +134,19 @@ function (string $topic, string $message, bool $retained, array $wildcards) use
118
134
* @dataProvider publishSubscribeData
119
135
*/
120
136
public function test_publishing_and_subscribing_using_quality_of_service_2_works_as_intended (
137
+ bool $ useBlockingSocket ,
121
138
string $ subscriptionTopicFilter ,
122
139
string $ publishTopic ,
123
140
string $ publishMessage ,
124
141
array $ matchedTopicWildcards
125
142
): void
126
143
{
127
144
// We connect and subscribe to a topic using the first client.
145
+ $ connectionSettings = (new ConnectionSettings ())
146
+ ->useBlockingSocket ($ useBlockingSocket );
147
+
128
148
$ subscriber = new MqttClient ($ this ->mqttBrokerHost , $ this ->mqttBrokerPort , 'subscriber ' );
129
- $ subscriber ->connect (null , true );
149
+ $ subscriber ->connect ($ connectionSettings , true );
130
150
131
151
$ subscription = function (string $ topic , string $ message , bool $ retained , array $ wildcards ) use ($ subscriber , $ subscriptionTopicFilter , $ publishTopic , $ publishMessage , $ matchedTopicWildcards ) {
132
152
// By asserting something here, we will avoid a no-assertions-in-test warning, making the test pass.
0 commit comments