File tree 3 files changed +48
-3
lines changed
tests/Integration/Broadcasting
3 files changed +48
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class AnonymousBroadcastable implements ShouldBroadcast
36
36
*
37
37
* @return void
38
38
*/
39
- public function __construct (protected string |array $ channels )
39
+ public function __construct (protected Channel | string |array $ channels )
40
40
{
41
41
$ this ->channels = Arr::wrap ($ channels );
42
42
}
Original file line number Diff line number Diff line change 3
3
namespace Illuminate \Support \Facades ;
4
4
5
5
use Illuminate \Broadcasting \AnonymousBroadcastable ;
6
+ use Illuminate \Broadcasting \Channel ;
7
+ use Illuminate \Broadcasting \PresenceChannel ;
8
+ use Illuminate \Broadcasting \PrivateChannel ;
6
9
use Illuminate \Contracts \Broadcasting \Factory as BroadcastingFactoryContract ;
7
- use Illuminate \Support \Arr ;
8
10
9
11
/**
10
12
* @method static void routes(array|null $attributes = null)
@@ -50,8 +52,24 @@ protected static function getFacadeAccessor()
50
52
/**
51
53
* Begin sending a broadcast to the given channels.
52
54
*/
53
- public static function on (string |array $ channels ): AnonymousBroadcastable
55
+ public static function on (Channel | string |array $ channels ): AnonymousBroadcastable
54
56
{
55
57
return new AnonymousBroadcastable ($ channels );
56
58
}
59
+
60
+ /**
61
+ * Begin sending a broadcast to the given private channel.
62
+ */
63
+ public static function private (string $ channel ): AnonymousBroadcastable
64
+ {
65
+ return static ::on (new PrivateChannel ($ channel ));
66
+ }
67
+
68
+ /**
69
+ * Begin sending a broadcast to the given presence channel.
70
+ */
71
+ public static function presence (string $ channel ): AnonymousBroadcastable
72
+ {
73
+ return static ::on (new PresenceChannel ($ channel ));
74
+ }
57
75
}
Original file line number Diff line number Diff line change 3
3
namespace Illuminate \Tests \Integration \Broadcasting ;
4
4
5
5
use Illuminate \Broadcasting \AnonymousBroadcastable ;
6
+ use Illuminate \Broadcasting \PresenceChannel ;
6
7
use Illuminate \Broadcasting \PrivateChannel ;
7
8
use Illuminate \Support \Facades \Broadcast as BroadcastFacade ;
8
9
use Illuminate \Support \Facades \Event as EventFacade ;
@@ -105,4 +106,30 @@ public function testSendToOthersOnly()
105
106
return $ event ->socket = '12345 ' ;
106
107
});
107
108
}
109
+
110
+ public function testSendToPrivateChannel ()
111
+ {
112
+ EventFacade::fake ();
113
+
114
+ BroadcastFacade::private ('test-channel ' )->send ();
115
+
116
+ EventFacade::assertDispatched (AnonymousBroadcastable::class, function ($ event ) {
117
+ $ channel = $ event ->broadcastOn ()[0 ];
118
+
119
+ return $ channel instanceof PrivateChannel && $ channel ->name === 'private-test-channel ' ;
120
+ });
121
+ }
122
+
123
+ public function testSendToPresenceChannel ()
124
+ {
125
+ EventFacade::fake ();
126
+
127
+ BroadcastFacade::presence ('test-channel ' )->send ();
128
+
129
+ EventFacade::assertDispatched (AnonymousBroadcastable::class, function ($ event ) {
130
+ $ channel = $ event ->broadcastOn ()[0 ];
131
+
132
+ return $ channel instanceof PresenceChannel && $ channel ->name === 'presence-test-channel ' ;
133
+ });
134
+ }
108
135
}
You can’t perform that action at this time.
0 commit comments