Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
687662c9
Commit
687662c9
authored
10 years ago
by
Kegan Dougal
Browse files
Options
Downloads
Patches
Plain Diff
Add notification-service unit tests.
parent
d1df3cd4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
syweb/webclient/test/unit/notification-service.spec.js
+78
-0
78 additions, 0 deletions
syweb/webclient/test/unit/notification-service.spec.js
with
78 additions
and
0 deletions
syweb/webclient/test/unit/notification-service.spec.js
0 → 100644
+
78
−
0
View file @
687662c9
describe
(
'
NotificationService
'
,
function
()
{
var
userId
=
"
@ali:matrix.org
"
;
var
displayName
=
"
Alice M
"
;
var
bingWords
=
[
"
coffee
"
,
"
foo(.*)bar
"
];
// literal and wildcard
beforeEach
(
function
()
{
module
(
'
notificationService
'
);
});
// User IDs
it
(
'
should bing on a user ID.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
"
Hello @ali:matrix.org, how are you?
"
)).
toEqual
(
true
);
}));
it
(
'
should bing on a partial user ID.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
"
Hello @ali, how are you?
"
)).
toEqual
(
true
);
}));
it
(
'
should bing on a case-insensitive user ID.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
"
Hello @AlI:matrix.org, how are you?
"
)).
toEqual
(
true
);
}));
// Display names
it
(
'
should bing on a display name.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
"
Hello Alice M, how are you?
"
)).
toEqual
(
true
);
}));
it
(
'
should bing on a case-insensitive display name.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
"
Hello ALICE M, how are you?
"
)).
toEqual
(
true
);
}));
// Bing words
it
(
'
should bing on a bing word.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
"
I really like coffee
"
)).
toEqual
(
true
);
}));
it
(
'
should bing on case-insensitive bing words.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
"
Coffee is great
"
)).
toEqual
(
true
);
}));
it
(
'
should bing on wildcard (.*) bing words.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
"
It was foomahbar I think.
"
)).
toEqual
(
true
);
}));
// invalid
it
(
'
should gracefully handle bad input.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
displayName
,
bingWords
,
{
"
foo
"
:
"
bar
"
})).
toEqual
(
false
);
}));
it
(
'
should gracefully handle just a user ID.
'
,
inject
(
function
(
notificationService
)
{
expect
(
notificationService
.
containsBingWord
(
userId
,
undefined
,
undefined
,
"
Hello @ali:matrix.org, how are you?
"
)).
toEqual
(
true
);
}));
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment