Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Zwordi
funkwhale
Commits
48df30db
Verified
Commit
48df30db
authored
7 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
We now persist system accounts to database
parent
fba9a5c9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/funkwhale_api/federation/actors.py
+10
-8
10 additions, 8 deletions
api/funkwhale_api/federation/actors.py
api/tests/federation/test_actors.py
+9
-0
9 additions, 0 deletions
api/tests/federation/test_actors.py
with
19 additions
and
8 deletions
api/funkwhale_api/federation/actors.py
+
10
−
8
View file @
48df30db
...
...
@@ -49,15 +49,17 @@ class SystemActor(object):
additional_attributes
=
{}
def
get_actor_instance
(
self
):
a
=
models
.
Actor
(
**
self
.
get_instance_argument
(
self
.
id
,
name
=
self
.
name
,
summary
=
self
.
summary
,
**
self
.
additional_attributes
)
args
=
self
.
get_instance_argument
(
self
.
id
,
name
=
self
.
name
,
summary
=
self
.
summary
,
**
self
.
additional_attributes
)
url
=
args
.
pop
(
'
url
'
)
a
,
created
=
models
.
Actor
.
objects
.
get_or_create
(
url
=
url
,
defaults
=
args
,
)
a
.
pk
=
self
.
id
return
a
def
get_instance_argument
(
self
,
id
,
name
,
summary
,
**
kwargs
):
...
...
This diff is collapsed.
Click to expand it.
api/tests/federation/test_actors.py
+
9
−
0
View file @
48df30db
...
...
@@ -6,6 +6,7 @@ from django.utils import timezone
from
rest_framework
import
exceptions
from
funkwhale_api.federation
import
actors
from
funkwhale_api.federation
import
models
from
funkwhale_api.federation
import
serializers
from
funkwhale_api.federation
import
utils
...
...
@@ -188,3 +189,11 @@ def test_test_post_outbox_handles_create_note(
to
=
[
actor
.
url
],
on_behalf_of
=
actors
.
SYSTEM_ACTORS
[
'
test
'
].
get_actor_instance
()
)
def
test_getting_actor_instance_persists_in_db
(
db
):
test
=
actors
.
SYSTEM_ACTORS
[
'
test
'
].
get_actor_instance
()
from_db
=
models
.
Actor
.
objects
.
get
(
url
=
test
.
url
)
for
f
in
test
.
_meta
.
fields
:
assert
getattr
(
from_db
,
f
.
name
)
==
getattr
(
test
,
f
.
name
)
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