SciPost Code Repository
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SciPost
Manage
Activity
Members
Labels
Plan
Issues
118
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
SciPost
SciPost
Commits
e49d002f
Commit
e49d002f
authored
1 year ago
by
George Katsikas
Browse files
Options
Downloads
Patches
Plain Diff
add common faker class with util methods
parent
7019d4a1
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
scipost_django/common/faker.py
+59
-0
59 additions, 0 deletions
scipost_django/common/faker.py
with
59 additions
and
0 deletions
scipost_django/common/faker.py
0 → 100644
+
59
−
0
View file @
e49d002f
__copyright__
=
"
Copyright © Stichting SciPost (SciPost Foundation)
"
__license__
=
"
AGPL v3
"
import
random
from
datetime
import
datetime
,
timedelta
from
django.utils.timezone
import
make_aware
import
factory
from
faker
import
Faker
from
faker.providers
import
BaseProvider
class
LazyRandEnum
(
factory
.
LazyAttribute
):
"""
Define a lazy attribute that takes a random value from a Django enum.
The Django enum is a list of two-tuples, where the first element is the
value and the second element is the human-readable name.
The attribute evalutates to the value, not the human-readable name.
"""
def
__init__
(
self
,
enum
,
*
args
,
**
kwargs
):
self
.
enum
=
enum
super
().
__init__
(
function
=
self
.
_random_choice_from_enum
,
*
args
,
**
kwargs
)
def
_random_choice_from_enum
(
self
,
_
):
return
random
.
choice
(
self
.
enum
)[
0
]
class
LazyAwareDate
(
factory
.
LazyAttribute
):
"""
Define a lazy attribute that returns a timezone-aware random date from a Faker provider.
"""
def
__init__
(
self
,
provider
,
*
args
,
**
kwargs
):
self
.
provider
=
provider
super
().
__init__
(
function
=
lambda
_
:
self
.
generate_aware_date
(
*
args
,
**
kwargs
))
def
_generate_date
(
self
,
*
args
,
**
kwargs
):
return
getattr
(
fake
,
self
.
provider
)(
*
args
,
**
kwargs
)
@staticmethod
def
_convert_to_datetime
(
date
):
return
datetime
.
combine
(
date
,
datetime
.
min
.
time
())
def
generate_aware_date
(
self
,
*
args
,
**
kwargs
):
return
make_aware
(
self
.
_convert_to_datetime
(
self
.
_generate_date
(
*
args
,
**
kwargs
))
)
class
DurationProvider
(
BaseProvider
):
def
duration
(
self
):
seconds
=
self
.
random_int
(
min
=
0
,
max
=
86400
)
return
timedelta
(
seconds
=
seconds
)
fake
=
Faker
()
fake
.
add_provider
(
DurationProvider
)
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