contributing.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  1. ==========================================
  2. Writing your first contribution for Django
  3. ==========================================
  4. Introduction
  5. ============
  6. Interested in giving back to the community a little? Maybe you've found a bug
  7. in Django that you'd like to see fixed, or maybe there's a small feature you
  8. want added.
  9. Contributing back to Django itself is the best way to see your own concerns
  10. addressed. This may seem daunting at first, but it's a well-traveled path with
  11. documentation, tooling, and a community to support you. We'll walk you through
  12. the entire process, so you can learn by example.
  13. Who's this tutorial for?
  14. ------------------------
  15. .. seealso::
  16. If you are looking for a reference on the details of making code
  17. contributions, see the :doc:`/internals/contributing/writing-code/index`
  18. documentation.
  19. For this tutorial, we expect that you have at least a basic understanding of
  20. how Django works. This means you should be comfortable going through the
  21. existing tutorials on :doc:`writing your first Django app</intro/tutorial01>`.
  22. In addition, you should have a good understanding of Python itself. But if you
  23. don't, `Dive Into Python`_ is a fantastic (and free) online book for beginning
  24. Python programmers.
  25. Those of you who are unfamiliar with version control systems and Trac will find
  26. that this tutorial and its links include just enough information to get started.
  27. However, you'll probably want to read some more about these different tools if
  28. you plan on contributing to Django regularly.
  29. For the most part though, this tutorial tries to explain as much as possible,
  30. so that it can be of use to the widest audience.
  31. .. admonition:: Where to get help:
  32. If you're having trouble going through this tutorial, please post a message
  33. on the `Django Forum`_ or drop by the `Django Discord server`_ to chat with
  34. other Django users who might be able to help.
  35. .. _Dive Into Python: https://diveintopython3.net/
  36. .. _Django Forum: https://forum.djangoproject.com/
  37. .. _Django Discord server: https://chat.djangoproject.com
  38. What does this tutorial cover?
  39. ------------------------------
  40. We'll be walking you through contributing to Django for the first time.
  41. By the end of this tutorial, you should have a basic understanding of both the
  42. tools and the processes involved. Specifically, we'll be covering the following:
  43. * Installing Git.
  44. * Downloading a copy of Django's development version.
  45. * Running Django's test suite.
  46. * Writing a test for your changes.
  47. * Writing the code for your changes.
  48. * Testing your changes.
  49. * Submitting a pull request.
  50. * Where to look for more information.
  51. Once you're done with the tutorial, you can look through the rest of
  52. :doc:`Django's documentation on contributing</internals/contributing/index>`.
  53. It contains lots of great information and is a must read for anyone who'd like
  54. to become a regular contributor to Django. If you've got questions, it's
  55. probably got the answers.
  56. .. admonition:: Python 3 required!
  57. The current version of Django doesn't support Python 2.7. Get Python 3 at
  58. `Python's download page <https://www.python.org/downloads/>`_ or with your
  59. operating system's package manager.
  60. .. admonition:: For Windows users
  61. See :ref:`install_python_windows` on Windows docs for additional guidance.
  62. Code of Conduct
  63. ===============
  64. As a contributor, you can help us keep the Django community open and inclusive.
  65. Please read and follow our `Code of Conduct <https://www.djangoproject.com/conduct/>`_.
  66. Installing Git
  67. ==============
  68. For this tutorial, you'll need Git installed to download the current
  69. development version of Django and to generate a branch for the changes you
  70. make.
  71. To check whether or not you have Git installed, enter ``git`` into the command
  72. line. If you get messages saying that this command could not be found, you'll
  73. have to download and install it, see `Git's download page`__.
  74. If you're not that familiar with Git, you can always find out more about its
  75. commands (once it's installed) by typing ``git help`` into the command line.
  76. __ https://git-scm.com/download
  77. Getting a copy of Django's development version
  78. ==============================================
  79. The first step to contributing to Django is to get a copy of the source code.
  80. First, `fork Django on GitHub <https://github.com/django/django/fork>`__. Then,
  81. from the command line, use the ``cd`` command to navigate to the directory
  82. where you'll want your local copy of Django to live.
  83. Download the Django source code repository using the following command:
  84. .. console::
  85. $ git clone https://github.com/YourGitHubName/django.git
  86. .. admonition:: Low bandwidth connection?
  87. You can add the ``--depth 1`` argument to ``git clone`` to skip downloading
  88. all of Django's commit history, which reduces data transfer from ~250 MB
  89. to ~70 MB.
  90. Now that you have a local copy of Django, you can install it just like you would
  91. install any package using ``pip``. The most convenient way to do so is by using
  92. a *virtual environment*, which is a feature built into Python that allows you
  93. to keep a separate directory of installed packages for each of your projects so
  94. that they don't interfere with each other.
  95. It's a good idea to keep all your virtual environments in one place, for
  96. example in ``.virtualenvs/`` in your home directory.
  97. Create a new virtual environment by running:
  98. .. console::
  99. $ python3 -m venv ~/.virtualenvs/djangodev
  100. The path is where the new environment will be saved on your computer.
  101. The final step in setting up your virtual environment is to activate it:
  102. .. code-block:: console
  103. $ source ~/.virtualenvs/djangodev/bin/activate
  104. If the ``source`` command is not available, you can try using a dot instead:
  105. .. code-block:: console
  106. $ . ~/.virtualenvs/djangodev/bin/activate
  107. You have to activate the virtual environment whenever you open a new
  108. terminal window.
  109. .. admonition:: For Windows users
  110. To activate your virtual environment on Windows, run:
  111. .. code-block:: doscon
  112. ...\> %HOMEPATH%\.virtualenvs\djangodev\Scripts\activate.bat
  113. The name of the currently activated virtual environment is displayed on the
  114. command line to help you keep track of which one you are using. Anything you
  115. install through ``pip`` while this name is displayed will be installed in that
  116. virtual environment, isolated from other environments and system-wide packages.
  117. .. _intro-contributing-install-local-copy:
  118. Go ahead and install the previously cloned copy of Django:
  119. .. console::
  120. $ python -m pip install -e /path/to/your/local/clone/django/
  121. The installed version of Django is now pointing at your local copy by installing
  122. in editable mode. You will immediately see any changes you make to it, which is
  123. of great help when writing your first contribution.
  124. Creating projects with a local copy of Django
  125. ---------------------------------------------
  126. It may be helpful to test your local changes with a Django project. First you
  127. have to create a new virtual environment, :ref:`install the previously cloned
  128. local copy of Django in editable mode <intro-contributing-install-local-copy>`,
  129. and create a new Django project outside of your local copy of Django. You will
  130. immediately see any changes you make to Django in your new project, which is
  131. of great help when writing your first contribution, especially if testing
  132. any changes to the UI.
  133. You can follow the :doc:`tutorial</intro/tutorial01>` for help in creating a
  134. Django project.
  135. Running Django's test suite for the first time
  136. ==============================================
  137. When contributing to Django it's very important that your code changes don't
  138. introduce bugs into other areas of Django. One way to check that Django still
  139. works after you make your changes is by running Django's test suite. If all
  140. the tests still pass, then you can be reasonably sure that your changes
  141. work and haven't broken other parts of Django. If you've never run Django's test
  142. suite before, it's a good idea to run it once beforehand to get familiar with
  143. its output.
  144. Before running the test suite, enter the Django ``tests/`` directory using the
  145. ``cd tests`` command, and install test dependencies by running:
  146. .. console::
  147. $ python -m pip install -r requirements/py3.txt
  148. If you encounter an error during the installation, your system might be missing
  149. a dependency for one or more of the Python packages. Consult the failing
  150. package's documentation or search the web with the error message that you
  151. encounter.
  152. Now we are ready to run the test suite:
  153. .. console::
  154. $ ./runtests.py
  155. Now sit back and relax. Django's entire test suite has thousands of tests, and
  156. it takes at least a few minutes to run, depending on the speed of your
  157. computer.
  158. While Django's test suite is running, you'll see a stream of characters
  159. representing the status of each test as it completes. ``E`` indicates that an
  160. error was raised during a test, and ``F`` indicates that a test's assertions
  161. failed. Both of these are considered to be test failures. Meanwhile, ``x`` and
  162. ``s`` indicated expected failures and skipped tests, respectively. Dots indicate
  163. passing tests.
  164. Skipped tests are typically due to missing external libraries required to run
  165. the test; see :ref:`running-unit-tests-dependencies` for a list of dependencies
  166. and be sure to install any for tests related to the changes you are making (we
  167. won't need any for this tutorial). Some tests are specific to a particular
  168. database backend and will be skipped if not testing with that backend. SQLite
  169. is the database backend for the default settings. To run the tests using a
  170. different backend, see :ref:`running-unit-tests-settings`.
  171. Once the tests complete, you should be greeted with a message informing you
  172. whether the test suite passed or failed. Since you haven't yet made any changes
  173. to Django's code, the entire test suite **should** pass. If you get failures or
  174. errors make sure you've followed all of the previous steps properly. See
  175. :ref:`running-unit-tests` for more information.
  176. Note that the latest Django "main" branch may not always be stable. When
  177. developing against "main", you can check `Django's continuous integration
  178. builds`__ to determine if the failures are specific to your machine or if they
  179. are also present in Django's official builds. If you click to view a particular
  180. build, you can view the "Configuration Matrix" which shows failures broken down
  181. by Python version and database backend.
  182. __ https://djangoci.com
  183. .. note::
  184. For this tutorial and the ticket we're working on, testing against SQLite
  185. is sufficient, however, it's possible (and sometimes necessary) to
  186. :ref:`run the tests using a different database
  187. <running-unit-tests-settings>`. When making UI changes, you will need to
  188. :ref:`run the Selenium tests <running-selenium-tests>`.
  189. Working on a feature
  190. ====================
  191. For this tutorial, we'll work on a "fake ticket" as a case study. Here are the
  192. imaginary details:
  193. .. admonition:: Ticket #99999 -- Allow making toast
  194. Django should provide a function ``django.shortcuts.make_toast()`` that
  195. returns ``'toast'``.
  196. We'll now implement this feature and associated tests.
  197. Creating a branch
  198. =================
  199. Before making any changes, create a new branch for the ticket:
  200. .. console::
  201. $ git checkout -b ticket_99999
  202. You can choose any name that you want for the branch, "ticket_99999" is an
  203. example. All changes made in this branch will be specific to the ticket and
  204. won't affect the main copy of the code that we cloned earlier.
  205. Writing some tests for your ticket
  206. ==================================
  207. In most cases, for a contribution to be accepted into Django it has to include
  208. tests. For bug fix contributions, this means writing a regression test to
  209. ensure that the bug is never reintroduced into Django later on. A regression
  210. test should be written in such a way that it will fail while the bug still
  211. exists and pass once the bug has been fixed. For contributions containing new
  212. features, you'll need to include tests which ensure that the new features are
  213. working correctly. They too should fail when the new feature is not present,
  214. and then pass once it has been implemented.
  215. A good way to do this is to write your new tests first, before making any
  216. changes to the code. This style of development is called
  217. `test-driven development`__ and can be applied to both entire projects and
  218. single changes. After writing your tests, you then run them to make sure that
  219. they do indeed fail (since you haven't fixed that bug or added that feature
  220. yet). If your new tests don't fail, you'll need to fix them so that they do.
  221. After all, a regression test that passes regardless of whether a bug is present
  222. is not very helpful at preventing that bug from reoccurring down the road.
  223. Now for our hands-on example.
  224. __ https://en.wikipedia.org/wiki/Test-driven_development
  225. Writing a test for ticket #99999
  226. --------------------------------
  227. In order to resolve this ticket, we'll add a ``make_toast()`` function to the
  228. ``django.shortcuts`` module. First we are going to write a test that tries to
  229. use the function and check that its output looks correct.
  230. Navigate to Django's ``tests/shortcuts/`` folder and create a new file
  231. ``test_make_toast.py``. Add the following code::
  232. from django.shortcuts import make_toast
  233. from django.test import SimpleTestCase
  234. class MakeToastTests(SimpleTestCase):
  235. def test_make_toast(self):
  236. self.assertEqual(make_toast(), "toast")
  237. This test checks that the ``make_toast()`` returns ``'toast'``.
  238. .. admonition:: But this testing thing looks kinda hard...
  239. If you've never had to deal with tests before, they can look a little hard
  240. to write at first glance. Fortunately, testing is a *very* big subject in
  241. computer programming, so there's lots of information out there:
  242. * A good first look at writing tests for Django can be found in the
  243. documentation on :doc:`/topics/testing/overview`.
  244. * Dive Into Python (a free online book for beginning Python developers)
  245. includes a great `introduction to Unit Testing`__.
  246. * After reading those, if you want something a little meatier to sink
  247. your teeth into, there's always the Python :mod:`unittest` documentation.
  248. __ https://diveintopython3.net/unit-testing.html
  249. Running your new test
  250. ---------------------
  251. Since we haven't made any modifications to ``django.shortcuts`` yet, our test
  252. should fail. Let's run all the tests in the ``shortcuts`` folder to make sure
  253. that's really what happens. ``cd`` to the Django ``tests/`` directory and run:
  254. .. console::
  255. $ ./runtests.py shortcuts
  256. If the tests ran correctly, you should see one failure corresponding to the test
  257. method we added, with this error:
  258. .. code-block:: pytb
  259. ImportError: cannot import name 'make_toast' from 'django.shortcuts'
  260. If all of the tests passed, then you'll want to make sure that you added the
  261. new test shown above to the appropriate folder and file name.
  262. Writing the code for your ticket
  263. ================================
  264. Next we'll be adding the ``make_toast()`` function.
  265. Navigate to the ``django/`` folder and open the ``shortcuts.py`` file. At the
  266. bottom, add::
  267. def make_toast():
  268. return "toast"
  269. Now we need to make sure that the test we wrote earlier passes, so we can see
  270. whether the code we added is working correctly. Again, navigate to the Django
  271. ``tests/`` directory and run:
  272. .. console::
  273. $ ./runtests.py shortcuts
  274. Everything should pass. If it doesn't, make sure you correctly added the
  275. function to the correct file.
  276. Running Django's test suite for the second time
  277. ===============================================
  278. Once you've verified that your changes and test are working correctly, it's
  279. a good idea to run the entire Django test suite to verify that your change
  280. hasn't introduced any bugs into other areas of Django. While successfully
  281. passing the entire test suite doesn't guarantee your code is bug free, it does
  282. help identify many bugs and regressions that might otherwise go unnoticed.
  283. To run the entire Django test suite, ``cd`` into the Django ``tests/``
  284. directory and run:
  285. .. console::
  286. $ ./runtests.py
  287. Writing Documentation
  288. =====================
  289. This is a new feature, so it should be documented. Open the file
  290. ``docs/topics/http/shortcuts.txt`` and add the following at the end of the
  291. file:
  292. .. code-block:: rst
  293. ``make_toast()``
  294. ================
  295. .. function:: make_toast()
  296. .. versionadded:: 2.2
  297. Returns ``'toast'``.
  298. Since this new feature will be in an upcoming release it is also added to the
  299. release notes for the next version of Django. Open the release notes for the
  300. latest version in ``docs/releases/``, which at time of writing is ``2.2.txt``.
  301. Add a note under the "Minor Features" header:
  302. .. code-block:: rst
  303. :mod:`django.shortcuts`
  304. ~~~~~~~~~~~~~~~~~~~~~~~
  305. * The new :func:`django.shortcuts.make_toast` function returns ``'toast'``.
  306. For more information on writing documentation, including an explanation of what
  307. the ``versionadded`` bit is all about, see
  308. :doc:`/internals/contributing/writing-documentation`. That page also includes
  309. an explanation of how to build a copy of the documentation locally, so you can
  310. preview the HTML that will be generated.
  311. Previewing your changes
  312. =======================
  313. Now it's time to review the changes made in the branch. To stage all the
  314. changes ready for commit, run:
  315. .. console::
  316. $ git add --all
  317. Then display the differences between your current copy of Django (with your
  318. changes) and the revision that you initially checked out earlier in the
  319. tutorial with:
  320. .. console::
  321. $ git diff --cached
  322. Use the arrow keys to move up and down.
  323. .. code-block:: diff
  324. diff --git a/django/shortcuts.py b/django/shortcuts.py
  325. index 7ab1df0e9d..8dde9e28d9 100644
  326. --- a/django/shortcuts.py
  327. +++ b/django/shortcuts.py
  328. @@ -156,3 +156,7 @@ def resolve_url(to, *args, **kwargs):
  329. # Finally, fall back and assume it's a URL
  330. return to
  331. +
  332. +
  333. +def make_toast():
  334. + return 'toast'
  335. diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt
  336. index 7d85d30c4a..81518187b3 100644
  337. --- a/docs/releases/2.2.txt
  338. +++ b/docs/releases/2.2.txt
  339. @@ -40,6 +40,11 @@ database constraints. Constraints are added to models using the
  340. Minor features
  341. --------------
  342. +:mod:`django.shortcuts`
  343. +~~~~~~~~~~~~~~~~~~~~~~~
  344. +
  345. +* The new :func:`django.shortcuts.make_toast` function returns ``'toast'``.
  346. +
  347. :mod:`django.contrib.admin`
  348. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  349. diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
  350. index 7b3a3a2c00..711bf6bb6d 100644
  351. --- a/docs/topics/http/shortcuts.txt
  352. +++ b/docs/topics/http/shortcuts.txt
  353. @@ -271,3 +271,12 @@ This example is equivalent to::
  354. my_objects = list(MyModel.objects.filter(published=True))
  355. if not my_objects:
  356. raise Http404("No MyModel matches the given query.")
  357. +
  358. +``make_toast()``
  359. +================
  360. +
  361. +.. function:: make_toast()
  362. +
  363. +.. versionadded:: 2.2
  364. +
  365. +Returns ``'toast'``.
  366. diff --git a/tests/shortcuts/test_make_toast.py b/tests/shortcuts/test_make_toast.py
  367. new file mode 100644
  368. index 0000000000..6f4c627b6e
  369. --- /dev/null
  370. +++ b/tests/shortcuts/test_make_toast.py
  371. @@ -0,0 +1,7 @@
  372. +from django.shortcuts import make_toast
  373. +from django.test import SimpleTestCase
  374. +
  375. +
  376. +class MakeToastTests(SimpleTestCase):
  377. + def test_make_toast(self):
  378. + self.assertEqual(make_toast(), 'toast')
  379. When you're done previewing the changes, hit the ``q`` key to return to the
  380. command line. If the diff looked okay, it's time to commit the changes.
  381. Committing the changes
  382. ======================
  383. To commit the changes:
  384. .. console::
  385. $ git commit
  386. This opens up a text editor to type the commit message. Follow the :ref:`commit
  387. message guidelines <committing-guidelines>` and write a message like:
  388. .. code-block:: text
  389. Fixed #99999 -- Added a shortcut function to make toast.
  390. Pushing the commit and making a pull request
  391. ============================================
  392. After committing the changes, send it to your fork on GitHub (substitute
  393. "ticket_99999" with the name of your branch if it's different):
  394. .. console::
  395. $ git push origin ticket_99999
  396. You can create a pull request by visiting the `Django GitHub page
  397. <https://github.com/django/django/>`_. You'll see your branch under "Your
  398. recently pushed branches". Click "Compare & pull request" next to it.
  399. Please don't do it for this tutorial, but on the next page that displays a
  400. preview of the changes, you would click "Create pull request".
  401. Next steps
  402. ==========
  403. Congratulations, you've learned how to make a pull request to Django! Details
  404. of more advanced techniques you may need are in
  405. :doc:`/internals/contributing/writing-code/working-with-git`.
  406. Now you can put those skills to good use by helping to improve Django's
  407. codebase.
  408. More information for new contributors
  409. -------------------------------------
  410. Before you get too into contributing to Django, there's a little more
  411. information on contributing that you should probably take a look at:
  412. * You should make sure to read Django's documentation on
  413. :doc:`claiming tickets and submitting pull requests
  414. </internals/contributing/writing-code/submitting-patches>`.
  415. It covers Trac etiquette, how to claim tickets for yourself, expected
  416. coding style (both for code and docs), and many other important details.
  417. * First time contributors should also read Django's :doc:`documentation
  418. for first time contributors</internals/contributing/new-contributors/>`.
  419. It has lots of good advice for those of us who are new to helping out
  420. with Django.
  421. * After those, if you're still hungry for more information about
  422. contributing, you can always browse through the rest of
  423. :doc:`Django's documentation on contributing</internals/contributing/index>`.
  424. It contains a ton of useful information and should be your first source
  425. for answering any questions you might have.
  426. Finding your first real ticket
  427. ------------------------------
  428. Once you've looked through some of that information, you'll be ready to go out
  429. and find a ticket of your own to contribute to. Pay special attention to
  430. tickets with the "easy pickings" criterion. These tickets are often much
  431. simpler in nature and are great for first time contributors. Once you're
  432. familiar with contributing to Django, you can start working on more difficult
  433. and complicated tickets.
  434. If you just want to get started already (and nobody would blame you!), try
  435. taking a look at the list of `easy tickets without a branch`__ and the
  436. `easy tickets that have branches which need improvement`__. If you're familiar
  437. with writing tests, you can also look at the list of
  438. `easy tickets that need tests`__. Remember to follow the guidelines about
  439. claiming tickets that were mentioned in the link to Django's documentation on
  440. :doc:`claiming tickets and submitting branches
  441. </internals/contributing/writing-code/submitting-patches>`.
  442. __ https://code.djangoproject.com/query?status=new&status=reopened&has_patch=0&easy=1&col=id&col=summary&col=status&col=owner&col=type&col=milestone&order=priority
  443. __ https://code.djangoproject.com/query?status=new&status=reopened&needs_better_patch=1&easy=1&col=id&col=summary&col=status&col=owner&col=type&col=milestone&order=priority
  444. __ https://code.djangoproject.com/query?status=new&status=reopened&needs_tests=1&easy=1&col=id&col=summary&col=status&col=owner&col=type&col=milestone&order=priority
  445. What's next after creating a pull request?
  446. ------------------------------------------
  447. After a ticket has a branch, it needs to be reviewed by a second set of eyes.
  448. After submitting a pull request, update the ticket metadata by setting the
  449. flags on the ticket to say "has patch", "doesn't need tests", etc, so others
  450. can find it for review. Contributing doesn't necessarily always mean writing
  451. code from scratch. Reviewing open pull requests is also a very helpful
  452. contribution. See :doc:`/internals/contributing/triaging-tickets` for details.