Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-06-26 11:34:20 +0300
committerJoas Schilling <coding@schilljs.com>2020-06-26 11:34:20 +0300
commita5ec81e6744c8b5ee71aded34d254a2f83176ee0 (patch)
tree9cd3b9b7583c6857e06cb1b3161543aa92aa1dbc /tests
parent5900f65ac76c767b541a8004ce332028eff71a55 (diff)
New line as information seperator
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/php/Notification/NotifierTest.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/php/Notification/NotifierTest.php b/tests/php/Notification/NotifierTest.php
index 2e34cca11..a602207ec 100644
--- a/tests/php/Notification/NotifierTest.php
+++ b/tests/php/Notification/NotifierTest.php
@@ -733,9 +733,9 @@ class NotifierTest extends \Test\TestCase {
// Push messages
'one-to-one push' => [
$subject = 'chat', Room::ONE_TO_ONE_CALL, ['userType' => 'users', 'userId' => 'testUser'], 'Test user', 'Test user',
- 'Test user: Hi @Administrator',
+ 'Test user' . "\n" . 'Hi @Administrator',
[
- '{user}: {message}',
+ '{user}' . "\n" . '{message}',
[
'user' => ['type' => 'user', 'id' => 'testUser', 'name' => 'Test user'],
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Test user', 'call-type' => 'one2one'],
@@ -746,9 +746,9 @@ class NotifierTest extends \Test\TestCase {
],
'user push' => [
$subject = 'chat', Room::GROUP_CALL, ['userType' => 'users', 'userId' => 'testUser'], 'Test user', 'Room name',
- 'Test user in Room name: Hi @Administrator',
+ 'Test user in Room name' . "\n" . 'Hi @Administrator',
[
- '{user} in {call}: {message}',
+ '{user} in {call}' . "\n" . '{message}',
[
'user' => ['type' => 'user', 'id' => 'testUser', 'name' => 'Test user'],
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'group'],
@@ -759,9 +759,9 @@ class NotifierTest extends \Test\TestCase {
],
'deleted user push' => [
$subject = 'chat', Room::GROUP_CALL, ['userType' => 'users', 'userId' => 'testUser'], null, 'Room name',
- 'Deleted user in Room name: Hi @Administrator',
+ 'Deleted user in Room name' . "\n" . 'Hi @Administrator',
[
- 'Deleted user in {call}: {message}',
+ 'Deleted user in {call}' . "\n" . '{message}',
[
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'group'],
'message' => ['type' => 'highlight', 'id' => '123456789', 'name' => 'Hi @Administrator'],
@@ -771,9 +771,9 @@ class NotifierTest extends \Test\TestCase {
],
'user push public' => [
$subject = 'chat', Room::PUBLIC_CALL, ['userType' => 'users', 'userId' => 'testUser'], 'Test user', 'Room name',
- 'Test user in Room name: Hi @Administrator',
+ 'Test user in Room name' . "\n" . 'Hi @Administrator',
[
- '{user} in {call}: {message}',
+ '{user} in {call}' . "\n" . '{message}',
[
'user' => ['type' => 'user', 'id' => 'testUser', 'name' => 'Test user'],
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'public'],
@@ -784,9 +784,9 @@ class NotifierTest extends \Test\TestCase {
],
'deleted user push public' => [
$subject = 'chat', Room::PUBLIC_CALL, ['userType' => 'users', 'userId' => 'testUser'], null, 'Room name',
- 'Deleted user in Room name: Hi @Administrator',
+ 'Deleted user in Room name' . "\n" . 'Hi @Administrator',
[
- 'Deleted user in {call}: {message}',
+ 'Deleted user in {call}' . "\n" . '{message}',
[
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'public'],
'message' => ['type' => 'highlight', 'id' => '123456789', 'name' => 'Hi @Administrator'],
@@ -796,9 +796,9 @@ class NotifierTest extends \Test\TestCase {
],
'guest push public' => [
$subject = 'chat', Room::PUBLIC_CALL, ['userType' => 'guests', 'userId' => 'testSpreedSession'], null, 'Room name',
- 'Guest in Room name: Hi @Administrator',
+ 'Guest in Room name' . "\n" . 'Hi @Administrator',
[
- 'Guest in {call}: {message}',
+ 'Guest in {call}' . "\n" . '{message}',
[
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'public'],
'message' => ['type' => 'highlight', 'id' => '123456789', 'name' => 'Hi @Administrator'],
@@ -808,9 +808,9 @@ class NotifierTest extends \Test\TestCase {
],
'named guest push public' => [
$subject = 'chat', Room::PUBLIC_CALL, ['userType' => 'guests', 'userId' => 'testSpreedSession'], null, 'Room name',
- 'MyNameIs (guest) in Room name: Hi @Administrator',
+ 'MyNameIs (guest) in Room name' . "\n" . 'Hi @Administrator',
[
- '{guest} (guest) in {call}: {message}',
+ '{guest} (guest) in {call}' . "\n" . '{message}',
[
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'public'],
'guest' => ['type' => 'guest', 'id' => 'random-hash', 'name' => 'MyNameIs'],
@@ -821,9 +821,9 @@ class NotifierTest extends \Test\TestCase {
],
'empty named guest push public' => [
$subject = 'chat', Room::PUBLIC_CALL, ['userType' => 'guests', 'userId' => 'testSpreedSession'], null, 'Room name',
- 'Guest in Room name: Hi @Administrator',
+ 'Guest in Room name' . "\n" . 'Hi @Administrator',
[
- 'Guest in {call}: {message}',
+ 'Guest in {call}' . "\n" . '{message}',
[
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'public'],
'message' => ['type' => 'highlight', 'id' => '123456789', 'name' => 'Hi @Administrator'],