Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
aff4d850
Commit
aff4d850
authored
9 years ago
by
Paul "LeoNerd" Evans
Browse files
Options
Downloads
Patches
Plain Diff
Add some unit tests of prune_events()
parent
ae3082dd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/events/__init__.py
+0
-0
0 additions, 0 deletions
tests/events/__init__.py
tests/events/test_utils.py
+115
-0
115 additions, 0 deletions
tests/events/test_utils.py
with
115 additions
and
0 deletions
tests/events/__init__.py
0 → 100644
+
0
−
0
View file @
aff4d850
This diff is collapsed.
Click to expand it.
tests/events/test_utils.py
0 → 100644
+
115
−
0
View file @
aff4d850
# -*- coding: utf-8 -*-
# Copyright 2015 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the 'License');
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an 'AS IS' BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
..
import
unittest
from
synapse.events
import
FrozenEvent
from
synapse.events.utils
import
prune_event
class
PruneEventTestCase
(
unittest
.
TestCase
):
"""
Asserts that a new event constructed with `evdict` will look like
`matchdict` when it is redacted.
"""
def
run_test
(
self
,
evdict
,
matchdict
):
self
.
assertEquals
(
prune_event
(
FrozenEvent
(
evdict
)).
get_dict
(),
matchdict
)
def
test_minimal
(
self
):
self
.
run_test
(
{
'
type
'
:
'
A
'
},
{
'
type
'
:
'
A
'
,
'
content
'
:
{},
'
signatures
'
:
{},
'
unsigned
'
:
{},
}
)
def
test_basic_keys
(
self
):
self
.
run_test
(
{
'
type
'
:
'
A
'
,
'
room_id
'
:
'
!1:domain
'
,
'
sender
'
:
'
@2:domain
'
,
'
event_id
'
:
'
$3:domain
'
,
'
origin
'
:
'
domain
'
,
},
{
'
type
'
:
'
A
'
,
'
room_id
'
:
'
!1:domain
'
,
'
sender
'
:
'
@2:domain
'
,
'
event_id
'
:
'
$3:domain
'
,
'
origin
'
:
'
domain
'
,
'
content
'
:
{},
'
signatures
'
:
{},
'
unsigned
'
:
{},
}
)
def
test_unsigned_age_ts
(
self
):
self
.
run_test
(
{
'
type
'
:
'
B
'
,
'
unsigned
'
:
{
'
age_ts
'
:
20
},
},
{
'
type
'
:
'
B
'
,
'
content
'
:
{},
'
signatures
'
:
{},
'
unsigned
'
:
{
'
age_ts
'
:
20
},
}
)
self
.
run_test
(
{
'
type
'
:
'
B
'
,
'
unsigned
'
:
{
'
other_key
'
:
'
here
'
},
},
{
'
type
'
:
'
B
'
,
'
content
'
:
{},
'
signatures
'
:
{},
'
unsigned
'
:
{},
}
)
def
test_content
(
self
):
self
.
run_test
(
{
'
type
'
:
'
C
'
,
'
content
'
:
{
'
things
'
:
'
here
'
},
},
{
'
type
'
:
'
C
'
,
'
content
'
:
{},
'
signatures
'
:
{},
'
unsigned
'
:
{},
}
)
self
.
run_test
(
{
'
type
'
:
'
m.room.create
'
,
'
content
'
:
{
'
creator
'
:
'
@2:domain
'
,
'
other_field
'
:
'
here
'
},
},
{
'
type
'
:
'
m.room.create
'
,
'
content
'
:
{
'
creator
'
:
'
@2:domain
'
},
'
signatures
'
:
{},
'
unsigned
'
:
{},
}
)
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