-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Remove usage of project.documentation_type in tasks #4896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ericholscher
merged 7 commits into
readthedocs:master
from
stsewd:remove-usage-of-project-doctype
Jan 23, 2019
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7c807bb
Remove usage of project.documentation_type in tasks
stsewd 4afd086
Fix search command
stsewd f88a09b
Fix search again
stsewd 3b00678
Tests
stsewd 44f9f9c
Refactor
stsewd 93d3e63
One more test
stsewd 20c671f
Merge branch 'master' into remove-usage-of-project-doctype
stsewd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -729,6 +729,7 @@ def update_app_instances( | |
args=[ | ||
self.project.pk, | ||
self.version.pk, | ||
self.config.doctype, | ||
], | ||
kwargs=dict( | ||
hostname=socket.gethostname(), | ||
|
@@ -812,7 +813,9 @@ def build_docs_html(self): | |
broadcast( | ||
type='app', | ||
task=move_files, | ||
args=[self.version.pk, socket.gethostname()], | ||
args=[ | ||
self.version.pk, socket.gethostname(), self.config.doctype | ||
], | ||
kwargs=dict(html=True), | ||
) | ||
except socket.error: | ||
|
@@ -885,6 +888,7 @@ def is_type_sphinx(self): | |
def sync_files( | ||
project_pk, | ||
version_pk, | ||
doctype, | ||
hostname=None, | ||
html=False, | ||
localmedia=False, | ||
|
@@ -919,6 +923,7 @@ def sync_files( | |
move_files( | ||
version_pk, | ||
hostname, | ||
doctype, | ||
html=html, | ||
localmedia=localmedia, | ||
search=search, | ||
|
@@ -937,6 +942,7 @@ def sync_files( | |
def move_files( | ||
version_pk, | ||
hostname, | ||
doctype, | ||
html=False, | ||
localmedia=False, | ||
search=False, | ||
|
@@ -971,59 +977,58 @@ def move_files( | |
if html: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_=version.project.documentation_type, | ||
type_=doctype, | ||
) | ||
target = version.project.rtd_build_path(version.slug) | ||
Syncer.copy(from_path, target, host=hostname) | ||
|
||
if 'sphinx' in version.project.documentation_type: | ||
if search: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_='sphinx_search', | ||
) | ||
to_path = version.project.get_production_media_path( | ||
type_='json', | ||
version_slug=version.slug, | ||
include_file=False, | ||
) | ||
Syncer.copy(from_path, to_path, host=hostname) | ||
if search: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_='sphinx_search', | ||
) | ||
to_path = version.project.get_production_media_path( | ||
type_='json', | ||
version_slug=version.slug, | ||
include_file=False, | ||
) | ||
Syncer.copy(from_path, to_path, host=hostname) | ||
|
||
if localmedia: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_='sphinx_localmedia', | ||
) | ||
to_path = version.project.get_production_media_path( | ||
type_='htmlzip', | ||
version_slug=version.slug, | ||
include_file=False, | ||
) | ||
Syncer.copy(from_path, to_path, host=hostname) | ||
if localmedia: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_='sphinx_localmedia', | ||
) | ||
to_path = version.project.get_production_media_path( | ||
type_='htmlzip', | ||
version_slug=version.slug, | ||
include_file=False, | ||
) | ||
Syncer.copy(from_path, to_path, host=hostname) | ||
|
||
# Always move PDF's because the return code lies. | ||
if pdf: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_='sphinx_pdf', | ||
) | ||
to_path = version.project.get_production_media_path( | ||
type_='pdf', | ||
version_slug=version.slug, | ||
include_file=False, | ||
) | ||
Syncer.copy(from_path, to_path, host=hostname) | ||
if epub: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_='sphinx_epub', | ||
) | ||
to_path = version.project.get_production_media_path( | ||
type_='epub', | ||
version_slug=version.slug, | ||
include_file=False, | ||
) | ||
Syncer.copy(from_path, to_path, host=hostname) | ||
# Always move PDF's because the return code lies. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comment looks outdated |
||
if pdf: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_='sphinx_pdf', | ||
) | ||
to_path = version.project.get_production_media_path( | ||
type_='pdf', | ||
version_slug=version.slug, | ||
include_file=False, | ||
) | ||
Syncer.copy(from_path, to_path, host=hostname) | ||
if epub: | ||
from_path = version.project.artifact_path( | ||
version=version.slug, | ||
type_='sphinx_epub', | ||
) | ||
to_path = version.project.get_production_media_path( | ||
type_='epub', | ||
version_slug=version.slug, | ||
include_file=False, | ||
) | ||
Syncer.copy(from_path, to_path, host=hostname) | ||
|
||
|
||
@app.task(queue='web') | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
from __future__ import division, print_function, unicode_literals | ||
|
||
from django.test import TestCase | ||
from django_dynamic_fixture import get | ||
from mock import patch | ||
|
||
from readthedocs.builds.models import Version | ||
from readthedocs.projects.models import Project | ||
from readthedocs.projects.tasks import sync_files | ||
|
||
|
||
class SyncFilesTests(TestCase): | ||
|
||
def setUp(self): | ||
self.project = get(Project) | ||
self.version = get(Version, project=self.project) | ||
|
||
@patch('readthedocs.builds.syncers.Syncer.copy') | ||
@patch('readthedocs.projects.tasks.shutil.rmtree') | ||
def test_sync_files_clean_old_artifacts(self, rmtree, copy): | ||
sync_files(self.project.pk, self.version.pk, 'sphinx', html=True) | ||
pdf, epub = rmtree.call_args_list | ||
|
||
# pdf and epub are cleaned | ||
args, _ = pdf | ||
self.assertIn('pdf', args[0]) | ||
args, _ = epub | ||
self.assertIn('epub', args[0]) | ||
|
||
# Artifacts are copied to the rtd-builds directory | ||
copy.assert_called_once() | ||
args, _ = copy.call_args | ||
self.assertIn('artifacts', args[0]) | ||
self.assertIn('sphinx', args[0]) | ||
self.assertIn('rtd-builds', args[1]) | ||
|
||
@patch('readthedocs.builds.syncers.Syncer.copy') | ||
@patch('readthedocs.projects.tasks.shutil.rmtree') | ||
def test_sync_files_pdf(self, rmtree, copy): | ||
sync_files( | ||
self.project.pk, self.version.pk, 'sphinx', pdf=True | ||
) | ||
|
||
# epub is cleaned | ||
rmtree.assert_called_once() | ||
args, _ = rmtree.call_args | ||
self.assertIn('epub', args[0]) | ||
|
||
# Artifacts are copied to the media directory | ||
copy.assert_called_once() | ||
args, _ = copy.call_args | ||
self.assertIn('artifacts', args[0]) | ||
self.assertIn('sphinx_pdf', args[0]) | ||
self.assertIn('media/pdf', args[1]) | ||
|
||
@patch('readthedocs.builds.syncers.Syncer.copy') | ||
@patch('readthedocs.projects.tasks.shutil.rmtree') | ||
def test_sync_files_epub(self, rmtree, copy): | ||
sync_files( | ||
self.project.pk, self.version.pk, 'sphinx', epub=True | ||
) | ||
|
||
# pdf is cleaned | ||
rmtree.assert_called_once() | ||
args, _ = rmtree.call_args | ||
self.assertIn('pdf', args[0]) | ||
|
||
# Artifacts are copied to the media directory | ||
copy.assert_called_once() | ||
args, _ = copy.call_args | ||
self.assertIn('artifacts', args[0]) | ||
self.assertIn('sphinx_epub', args[0]) | ||
self.assertIn('media/epub', args[1]) | ||
|
||
@patch('readthedocs.builds.syncers.Syncer.copy') | ||
@patch('readthedocs.projects.tasks.shutil.rmtree') | ||
def test_sync_files_localmedia(self, rmtree, copy): | ||
sync_files( | ||
self.project.pk, self.version.pk, 'sphinx', localmedia=True | ||
) | ||
pdf, epub = rmtree.call_args_list | ||
|
||
# pdf and epub are cleaned | ||
args, _ = pdf | ||
self.assertIn('pdf', args[0]) | ||
args, _ = epub | ||
self.assertIn('epub', args[0]) | ||
|
||
# Artifacts are copied to the media directory | ||
copy.assert_called_once() | ||
args, _ = copy.call_args | ||
self.assertIn('artifacts', args[0]) | ||
self.assertIn('sphinx_localmedia', args[0]) | ||
self.assertIn('media/htmlzip', args[1]) | ||
|
||
@patch('readthedocs.builds.syncers.Syncer.copy') | ||
@patch('readthedocs.projects.tasks.shutil.rmtree') | ||
def test_sync_files_search(self, rmtree, copy): | ||
sync_files( | ||
self.project.pk, self.version.pk, 'sphinx', search=True | ||
) | ||
pdf, epub = rmtree.call_args_list | ||
|
||
# pdf and epub are cleaned | ||
args, _ = pdf | ||
self.assertIn('pdf', args[0]) | ||
args, _ = epub | ||
self.assertIn('epub', args[0]) | ||
|
||
# Artifacts are copied to the media directory | ||
copy.assert_called_once() | ||
args, _ = copy.call_args | ||
self.assertIn('artifacts', args[0]) | ||
self.assertIn('sphinx_search', args[0]) | ||
self.assertIn('media/json', args[1]) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.