1
0
mirror of https://github.com/django/django.git synced 2025-04-05 14:06:42 +00:00

Refs #34976 -- Provide feedback when startapp and startproject are called

tests: added test for startproject output

tests: added output tests for startapp

fix: try to fix unicode encoding error using sys.stdout.write

fix: changed stdout encoding

chore: used self instead of sys for printing

fix: deleted new line character

refactor: handle target in TemplateCommand

ci: use sys.stdout.reconfigure to make ci works

tests: fixed startapp test
This commit is contained in:
Salvo Polizzi 2024-01-11 16:25:42 +01:00 committed by Salvo Polizzi
parent 4e4f889ea5
commit cdda249c48
2 changed files with 44 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import os
import posixpath
import shutil
import stat
import sys
import tempfile
from importlib.util import find_spec
from urllib.request import build_opener
@ -230,6 +231,17 @@ class TemplateCommand(BaseCommand):
shutil.rmtree(path_to_remove)
run_formatters([top_dir], **formatter_paths)
self.handle_target(name, target)
def handle_target(self, name, target=None):
if target is None:
target = os.getcwd()
else:
target = os.path.abspath(target)
# call needed to avoid windows encoding errors
sys.stdout.reconfigure(encoding="utf-8")
self.stdout.write(f"Success! Created {name} at {target}.")
def handle_template(self, template, subdir):
"""

View File

@ -754,6 +754,7 @@ class DjangoAdminSettingsDirectory(AdminScriptTestCase):
args = ["startapp", "こんにちは"]
app_path = os.path.join(self.test_dir, "こんにちは")
out, err = self.run_django_admin(args, "test_project.settings")
self.assertOutput(out, f"Success! Created こんにちは at {self.test_dir}")
self.assertNoOutput(err)
self.assertTrue(os.path.exists(app_path))
with open(os.path.join(app_path, "apps.py"), encoding="utf8") as f:
@ -2405,6 +2406,21 @@ class StartProject(LiveServerTestCase, AdminScriptTestCase):
self.assertOutput(err, "usage:")
self.assertOutput(err, "You must provide a project name.")
def test_output(self):
dirs = {
"testproject": self.test_dir,
"testproject1": os.path.join(self.test_dir, "otherdirectory"),
}
for name_project, dir in dirs.items():
with self.subTest(name_project=name_project, dir=dir):
args = ["startproject", name_project]
if not os.path.exists(dir):
os.mkdir(dir)
args.append(dir)
out, err = self.run_django_admin(args)
self.assertOutput(out, f"Success! Created {name_project} at {dir}")
self.assertNoOutput(err)
def test_simple_project(self):
"Make sure the startproject management command creates a project"
args = ["startproject", "testproject"]
@ -2879,6 +2895,22 @@ class StartApp(AdminScriptTestCase):
)
self.assertFalse(os.path.exists(testproject_dir))
def test_output(self):
dirs = {
"foo": self.test_dir,
# Use a subdirectory so it is outside the PYTHONPATH.
"bar": os.path.join(self.test_dir, "apps/otherdir"),
}
for name_app, dir in dirs.items():
with self.subTest(name_app=name_app, dir=dir):
args = ["startapp", name_app]
if not os.path.exists(dir):
os.makedirs(dir)
args.append(dir)
out, err = self.run_django_admin(args)
self.assertOutput(out, f"Success! Created {name_app} at {dir}")
self.assertNoOutput(err)
def test_importable_name(self):
"""
startapp validates that app name doesn't clash with existing Python