Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
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
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Commits
eb361063
Commit
eb361063
authored
3 years ago
by
Jonas Braathen
Browse files
Options
Downloads
Patches
Plain Diff
Change popoulate_fixtures to a management command
parent
2725d790
No related branches found
No related tags found
1 merge request
!186
Change popoulate_fixtures to a management command
Pipeline
#102191
passed
3 years ago
Stage: venv update
Stage: tests and linting
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
greg/management/commands/populate_test_data.py
+38
-13
38 additions, 13 deletions
greg/management/commands/populate_test_data.py
with
38 additions
and
13 deletions
greg/
test
s/populate_
fixtures
.py
→
greg/
management/command
s/populate_
test_data
.py
+
38
−
13
View file @
eb361063
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
Adds a few more specific models for testing purposes. Alternative to the similiar
Adds a few more specific models for testing purposes. Alternative to the similiar
script for adding random data to various fields.
script for adding random data to various fields.
WARNING: This
script
removes all entries in most tables. Do not execute it unless you
WARNING: This
command
removes all entries in most tables. Do not execute it unless you
are absolutely certain you know what you are doing.
are absolutely certain you know what you are doing.
There are 4 guests:
There are 4 guests:
...
@@ -22,10 +22,11 @@ one of them has denied the other one.
...
@@ -22,10 +22,11 @@ one of them has denied the other one.
"""
"""
import
datetime
import
datetime
import
logging
from
django.core.management.base
import
CommandError
from
django.db
import
connection
from
django.db
import
connection
from
django.conf
import
settings
from
django.conf
import
settings
from
django.core.management.base
import
BaseCommand
from
django.utils
import
timezone
from
django.utils
import
timezone
from
greg.models
import
(
from
greg.models
import
(
...
@@ -55,8 +56,6 @@ OU_EUROPE_NAME_EN = "Europe"
...
@@ -55,8 +56,6 @@ OU_EUROPE_NAME_EN = "Europe"
CONSENT_IDENT_MANDATORY
=
"
mandatory
"
CONSENT_IDENT_MANDATORY
=
"
mandatory
"
CONSENT_IDENT_OPTIONAL
=
"
optional
"
CONSENT_IDENT_OPTIONAL
=
"
optional
"
logger
=
logging
.
getLogger
(
__name__
)
class
DatabasePopulation
:
class
DatabasePopulation
:
"""
"""
...
@@ -66,7 +65,7 @@ class DatabasePopulation:
...
@@ -66,7 +65,7 @@ class DatabasePopulation:
"""
"""
def
truncate_tables
(
self
):
def
truncate_tables
(
self
):
logger
.
info
(
"
truncating tables...
"
)
print
(
"
truncating tables...
"
)
with
connection
.
cursor
()
as
cursor
:
with
connection
.
cursor
()
as
cursor
:
for
table
in
(
for
table
in
(
"
greg_consent
"
,
"
greg_consent
"
,
...
@@ -85,9 +84,9 @@ class DatabasePopulation:
...
@@ -85,9 +84,9 @@ class DatabasePopulation:
"
greg_person
"
,
"
greg_person
"
,
"
greg_sponsor
"
,
"
greg_sponsor
"
,
):
):
logging
.
info
(
"
purging table
%s
"
,
table
)
print
(
"
purging table
"
,
table
)
cursor
.
execute
(
f
"
DELETE FROM
{
table
}
"
)
cursor
.
execute
(
f
"
DELETE FROM
{
table
}
"
)
logger
.
info
(
"
...tables purged
"
)
print
(
"
...tables purged
"
)
def
_add_consent_types_and_choices
(
self
):
def
_add_consent_types_and_choices
(
self
):
mandatory
=
ConsentType
.
objects
.
create
(
mandatory
=
ConsentType
.
objects
.
create
(
...
@@ -391,7 +390,7 @@ class DatabasePopulation:
...
@@ -391,7 +390,7 @@ class DatabasePopulation:
)
)
def
populate_database
(
self
):
def
populate_database
(
self
):
logger
.
info
(
"
populating db...
"
)
print
(
"
populating db...
"
)
# Add the types, sponsors and ous
# Add the types, sponsors and ous
self
.
_add_consent_types_and_choices
()
self
.
_add_consent_types_and_choices
()
self
.
_add_ous_with_identifiers
()
self
.
_add_ous_with_identifiers
()
...
@@ -402,10 +401,36 @@ class DatabasePopulation:
...
@@ -402,10 +401,36 @@ class DatabasePopulation:
self
.
_add_waiting_person
()
self
.
_add_waiting_person
()
self
.
_add_invited_person
()
self
.
_add_invited_person
()
self
.
_add_expired_person
()
self
.
_add_expired_person
()
logger
.
info
(
"
...done populating db
"
)
print
(
"
...done populating db
"
)
class
Command
(
BaseCommand
):
help
=
__doc__
def
add_arguments
(
self
,
parser
):
parser
.
add_argument
(
"
--destructive
"
,
type
=
str
,
required
=
True
,
help
=
"
Verify database name. THIS COMMAND IS DESTRUCTIVE.
"
,
)
def
handle
(
self
,
*
args
,
**
options
):
"""
Handle import of OUs from OrgReg.
- Updates already present OUs with new information
- Creates not present OUs
- Set not present OUs as inactive
"""
db_name
=
str
(
settings
.
DATABASES
[
"
default
"
][
"
NAME
"
])
if
options
.
get
(
"
destructive
"
)
!=
db_name
:
raise
CommandError
(
"
Must pass {!r} to --destructive, as its tables will be truncated
"
.
format
(
db_name
)
)
if
__name__
==
"
__main__
"
:
database_population
=
DatabasePopulation
()
database_population
=
DatabasePopulation
()
database_population
.
truncate_tables
()
database_population
.
truncate_tables
()
database_population
.
populate_database
()
database_population
.
populate_database
()
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