Merge pull request #735 from tcely/patch-2
Some checks are pending
Run Django tests for TubeSync / test (3.10) (push) Waiting to run
Run Django tests for TubeSync / test (3.11) (push) Waiting to run
Run Django tests for TubeSync / test (3.12) (push) Waiting to run
Run Django tests for TubeSync / test (3.7) (push) Waiting to run
Run Django tests for TubeSync / test (3.8) (push) Waiting to run
Run Django tests for TubeSync / test (3.9) (push) Waiting to run
Run Django tests for TubeSync / containerise (push) Waiting to run

Ensure the directory exists for testing
This commit is contained in:
meeb 2025-02-17 23:44:22 +11:00 committed by GitHub
commit 676b2c3ace
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 5 deletions

View File

@ -4,5 +4,5 @@
.gitattributes
README.md
tubesync/media
tubesync/downloads
db.sqlite3
tubesync/tubesync/downloads
db.sqlite3

4
.gitignore vendored
View File

@ -63,7 +63,7 @@ db.sqlite3
db.sqlite3-journal
/tubesync/static/
/tubesync/media/
/tubesync/downloads/
/tubesync/tubesync/downloads/
# Flask stuff:
instance/
@ -136,4 +136,4 @@ Pipfile.lock
.vscode/launch.json
# Ignore Jetbrains IDE files
.idea/
.idea/

View File

@ -16,7 +16,7 @@ from django.test import TestCase, Client, override_settings
from django.utils import timezone
from background_task.models import Task
from .models import Source, Media
from .tasks import cleanup_old_media
from .tasks import cleanup_old_media, check_source_directory_exists
from .filtering import filter_media
from .utils import filter_response
from .choices import (Val, Fallback, IndexSchedule, SourceResolution,
@ -212,6 +212,8 @@ class FrontEndTestCase(TestCase):
task = Task.objects.get_task('sync.tasks.index_source_task',
args=(source_uuid,))[0]
self.assertEqual(task.queue, source_uuid)
# Run the check_source_directory_exists task
check_source_directory_exists.now(source_uuid)
# Check the source is now on the source overview page
response = c.get('/sources')
self.assertEqual(response.status_code, 200)