Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-scheduler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Platform
Development
swh-scheduler
Commits
6dbfd061
Commit
6dbfd061
authored
6 years ago
by
vlorentz
Browse files
Options
Downloads
Patches
Plain Diff
Remove ghtorrent/fake.py, it's not used anymore.
parent
e6ee2a7c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!89
Remove ghtorrent/fake.py, it's not used anymore.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
conftest.py
+0
-2
0 additions, 2 deletions
conftest.py
swh/scheduler/updater/ghtorrent/fake.py
+0
-82
0 additions, 82 deletions
swh/scheduler/updater/ghtorrent/fake.py
with
0 additions
and
84 deletions
conftest.py
+
0
−
2
View file @
6dbfd061
...
...
@@ -7,8 +7,6 @@ settings.register_profile("slow", max_examples=20, deadline=5000)
# Modules that should not be loaded by --doctest-modules
collect_ignore
=
[
# ImportError
'
swh/scheduler/updater/ghtorrent/fake.py
'
,
# NotImplementedError: save_group is not supported by this backend.
'
swh/scheduler/tests/tasks.py
'
,
# OSError: Configuration file must be defined
...
...
This diff is collapsed.
Click to expand it.
swh/scheduler/updater/ghtorrent/fake.py
deleted
100644 → 0
+
0
−
82
View file @
e6ee2a7c
# Copyright (C) 2018 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
import
random
import
string
from
arrow
import
utcnow
from
kombu
import
Connection
from
swh.scheduler.updater.ghtorrent
import
RabbitMQConn
,
events
class
FakeRandomOriginGenerator
:
def
_random_string
(
self
,
length
):
"""
Build a fake string of length length.
"""
return
''
.
join
([
random
.
choice
(
string
.
ascii_letters
+
string
.
digits
)
for
n
in
range
(
length
)])
def
generate
(
self
,
user_range
=
range
(
5
,
10
),
repo_range
=
range
(
10
,
15
)):
"""
Build a fake url
"""
length_username
=
random
.
choice
(
user_range
)
user
=
self
.
_random_string
(
length_username
)
length_repo
=
random
.
choice
(
repo_range
)
repo
=
self
.
_random_string
(
length_repo
)
return
'
%s/%s
'
%
(
user
,
repo
)
class
FakeGHTorrentPublisher
(
RabbitMQConn
):
"""
Fake GHTorrent that randomly publishes fake events. Those events
are published in similar manner as described by ghtorrent
'
s
documentation [2].
context: stuck with raw ghtorrent so far [1]
[1] https://github.com/ghtorrent/ghtorrent.org/issues/397#issuecomment-387052462 # noqa
[2] http://ghtorrent.org/streaming.html
"""
ADDITIONAL_CONFIG
=
{
'
nb_messages
'
:
(
'
int
'
,
100
)
}
def
__init__
(
self
,
**
config
):
super
().
__init__
(
**
config
)
self
.
fake_origin_generator
=
FakeRandomOriginGenerator
()
self
.
nb_messages
=
self
.
config
[
'
nb_messages
'
]
def
_random_event
(
self
):
"""
Create a fake and random event
"""
event_type
=
random
.
choice
([
'
evt
'
,
'
ent
'
])
sub_event
=
random
.
choice
(
events
[
event_type
])
return
{
'
type
'
:
sub_event
,
'
repo
'
:
{
'
name
'
:
self
.
fake_origin_generator
.
generate
(),
},
'
created_at
'
:
utcnow
().
isoformat
()
}
def
publish
(
self
,
nb_messages
=
None
):
if
not
nb_messages
:
nb_messages
=
self
.
nb_messages
with
Connection
(
self
.
config
[
'
conn
'
][
'
url
'
])
as
conn
:
with
conn
.
Producer
(
serializer
=
'
json
'
)
as
producer
:
for
n
in
range
(
nb_messages
):
event
=
self
.
_random_event
()
producer
.
publish
(
event
,
exchange
=
self
.
exchange
,
routing_key
=
self
.
routing_key
,
declare
=
[
self
.
queue
])
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