Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Terraform modules
Monitor
Service Desk
Analyze
Contributor 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
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
8bbde224
Commit
8bbde224
authored
3 years ago
by
Jonathan Weth
Browse files
Options
Downloads
Patches
Plain Diff
Use TransactionTestCase for PDFFile tests
parent
7b228c51
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!464
Resolve "Support PDF generation via a headless Chromium running in the background using celery"
Pipeline
#7152
canceled
3 years ago
Stage: test
Stage: build
Stage: publish
Stage: docker
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/core/tests/models/test_pdffile.py
+78
-81
78 additions, 81 deletions
aleksis/core/tests/models/test_pdffile.py
with
78 additions
and
81 deletions
aleksis/core/tests/models/test_pdffile.py
+
78
−
81
View file @
8bbde224
...
...
@@ -5,7 +5,7 @@ from datetime import datetime, timedelta
from
django.core.files
import
File
from
django.core.files.storage
import
default_storage
from
django.template.loader
import
render_to_string
from
django.test
import
override_settings
from
django.test
import
TransactionTestCase
,
override_settings
from
django.utils
import
timezone
import
freezegun
...
...
@@ -17,89 +17,86 @@ from aleksis.core.util.pdf import clean_up_expired_pdf_files
pytestmark
=
pytest
.
mark
.
django_db
_test_pdf
=
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)),
"
test.pdf
"
)
def
_get_test_html
():
return
render_to_string
(
"
core/pages/test_pdf.html
"
)
def
test_pdf_file
():
dummy_person
=
Person
.
objects
.
create
(
first_name
=
"
Jane
"
,
last_name
=
"
Doe
"
)
html
=
_get_test_html
()
assert
"
html
"
in
html
file_object
=
PDFFile
.
objects
.
create
(
person
=
dummy_person
,
html
=
html
)
assert
isinstance
(
file_object
.
expires_at
,
datetime
)
assert
file_object
.
expires_at
>
timezone
.
now
()
assert
not
bool
(
file_object
.
file
)
with
open
(
_test_pdf
,
"
rb
"
)
as
f
:
file_object
.
file
.
save
(
"
print.pdf
"
,
File
(
f
))
file_object
.
save
()
re_base
=
r
"
pdfs/[a-zA-Z0-9]+\.pdf
"
assert
re
.
match
(
re_base
,
file_object
.
file
.
name
)
@pytest.mark.django_db
(
transaction
=
True
)
def
test_delete_signal
():
dummy_person
=
Person
.
objects
.
create
(
first_name
=
"
Jane
"
,
last_name
=
"
Doe
"
)
file_object
=
PDFFile
.
objects
.
create
(
person
=
dummy_person
,
html
=
_get_test_html
())
with
open
(
_test_pdf
,
"
rb
"
)
as
f
:
file_object
.
file
.
save
(
"
print.pdf
"
,
File
(
f
))
file_object
.
save
()
file_path
=
file_object
.
file
.
path
assert
default_storage
.
exists
(
file_path
)
file_object
.
delete
()
assert
not
default_storage
.
exists
(
file_path
)
@pytest.mark.usefixtures
(
"
celery_worker
"
)
@override_settings
(
CELERY_BROKER_URL
=
"
memory://localhost//
"
)
@pytest.mark.django_db
(
transaction
=
True
)
def
test_delete_expired_files
():
# Create test instances
dummy_person
=
Person
.
objects
.
create
(
first_name
=
"
Jane
"
,
last_name
=
"
Doe
"
)
file_object
=
PDFFile
.
objects
.
create
(
person
=
dummy_person
,
html
=
_get_test_html
())
file_object2
=
PDFFile
.
objects
.
create
(
person
=
dummy_person
,
html
=
_get_test_html
(),
expires_at
=
timezone
.
now
()
+
timedelta
(
minutes
=
10
),
)
with
open
(
_test_pdf
,
"
rb
"
)
as
f
:
file_object
.
file
.
save
(
"
print.pdf
"
,
File
(
f
))
file_object2
.
file
.
save
(
"
print.pdf
"
,
File
(
f
))
file_object
.
save
()
file_object2
.
save
()
clean_up_expired_pdf_files
()
assert
PDFFile
.
objects
.
get
(
pk
=
file_object
.
pk
)
assert
PDFFile
.
objects
.
get
(
pk
=
file_object2
.
pk
)
# Prepare times
test_time_before
=
timezone
.
now
()
+
timedelta
(
minutes
=
2.5
)
test_time_between
=
timezone
.
now
()
+
timedelta
(
minutes
=
4
)
test_time_after
=
timezone
.
now
()
+
timedelta
(
minutes
=
15
)
# None of the files are expired
with
freezegun
.
freeze_time
(
test_time_before
):
clean_up_expired_pdf_files
()
assert
PDFFile
.
objects
.
get
(
pk
=
file_object
.
pk
)
assert
PDFFile
.
objects
.
get
(
pk
=
file_object2
.
pk
)
class
PDFFIleTest
(
TransactionTestCase
):
serialized_rollback
=
True
_test_pdf
=
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)),
"
test.pdf
"
)
def
_get_test_html
(
self
):
return
render_to_string
(
"
core/pages/test_pdf.html
"
)
def
test_pdf_file
(
self
):
dummy_person
=
Person
.
objects
.
create
(
first_name
=
"
Jane
"
,
last_name
=
"
Doe
"
)
html
=
self
.
_get_test_html
()
assert
"
html
"
in
html
file_object
=
PDFFile
.
objects
.
create
(
person
=
dummy_person
,
html
=
html
)
assert
isinstance
(
file_object
.
expires_at
,
datetime
)
assert
file_object
.
expires_at
>
timezone
.
now
()
assert
not
bool
(
file_object
.
file
)
with
open
(
self
.
_test_pdf
,
"
rb
"
)
as
f
:
file_object
.
file
.
save
(
"
print.pdf
"
,
File
(
f
))
file_object
.
save
()
re_base
=
r
"
pdfs/[a-zA-Z0-9]+\.pdf
"
assert
re
.
match
(
re_base
,
file_object
.
file
.
name
)
def
test_delete_signal
(
self
):
dummy_person
=
Person
.
objects
.
create
(
first_name
=
"
Jane
"
,
last_name
=
"
Doe
"
)
file_object
=
PDFFile
.
objects
.
create
(
person
=
dummy_person
,
html
=
self
.
_get_test_html
())
with
open
(
self
.
_test_pdf
,
"
rb
"
)
as
f
:
file_object
.
file
.
save
(
"
print.pdf
"
,
File
(
f
))
file_object
.
save
()
file_path
=
file_object
.
file
.
path
assert
default_storage
.
exists
(
file_path
)
file_object
.
delete
()
assert
not
default_storage
.
exists
(
file_path
)
def
test_delete_expired_files
(
self
):
# Create test instances
dummy_person
=
Person
.
objects
.
create
(
first_name
=
"
Jane
"
,
last_name
=
"
Doe
"
)
file_object
=
PDFFile
.
objects
.
create
(
person
=
dummy_person
,
html
=
self
.
_get_test_html
())
file_object2
=
PDFFile
.
objects
.
create
(
person
=
dummy_person
,
html
=
self
.
_get_test_html
(),
expires_at
=
timezone
.
now
()
+
timedelta
(
minutes
=
10
),
)
with
open
(
self
.
_test_pdf
,
"
rb
"
)
as
f
:
file_object
.
file
.
save
(
"
print.pdf
"
,
File
(
f
))
file_object2
.
file
.
save
(
"
print.pdf
"
,
File
(
f
))
file_object
.
save
()
file_object2
.
save
()
# One file is expired
with
freezegun
.
freeze_time
(
test_time_between
):
clean_up_expired_pdf_files
()
with
pytest
.
raises
(
PDFFile
.
DoesNotExist
):
PDFFile
.
objects
.
get
(
pk
=
file_object
.
pk
)
assert
PDFFile
.
objects
.
get
(
pk
=
file_object
.
pk
)
assert
PDFFile
.
objects
.
get
(
pk
=
file_object2
.
pk
)
# Both files are expired
with
freezegun
.
freeze_time
(
test_time_after
):
clean_up_expired_pdf_files
()
with
pytest
.
raises
(
PDFFile
.
DoesNotExist
):
PDFFile
.
objects
.
get
(
pk
=
file_object
.
pk
)
with
pytest
.
raises
(
PDFFile
.
DoesNotExist
):
PDFFile
.
objects
.
get
(
pk
=
file_object2
.
pk
)
# Prepare times
test_time_before
=
timezone
.
now
()
+
timedelta
(
minutes
=
2.5
)
test_time_between
=
timezone
.
now
()
+
timedelta
(
minutes
=
4
)
test_time_after
=
timezone
.
now
()
+
timedelta
(
minutes
=
15
)
# None of the files are expired
with
freezegun
.
freeze_time
(
test_time_before
):
clean_up_expired_pdf_files
()
assert
PDFFile
.
objects
.
get
(
pk
=
file_object
.
pk
)
assert
PDFFile
.
objects
.
get
(
pk
=
file_object2
.
pk
)
# One file is expired
with
freezegun
.
freeze_time
(
test_time_between
):
clean_up_expired_pdf_files
()
with
pytest
.
raises
(
PDFFile
.
DoesNotExist
):
PDFFile
.
objects
.
get
(
pk
=
file_object
.
pk
)
assert
PDFFile
.
objects
.
get
(
pk
=
file_object2
.
pk
)
# Both files are expired
with
freezegun
.
freeze_time
(
test_time_after
):
clean_up_expired_pdf_files
()
with
pytest
.
raises
(
PDFFile
.
DoesNotExist
):
PDFFile
.
objects
.
get
(
pk
=
file_object
.
pk
)
with
pytest
.
raises
(
PDFFile
.
DoesNotExist
):
PDFFile
.
objects
.
get
(
pk
=
file_object2
.
pk
)
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