contributing.rst 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. ============
  2. Contributing
  3. ============
  4. .. contents::
  5. Contributing happens via "Pull requests" (PR) on github. Every PR needs to be
  6. reviewed before it can be merged and the Continuous Integration should be green.
  7. The PR has to be approved (and is often merged too) by one "code owner", either
  8. by the code owner who is responsible for the subsystem the PR belongs to or by
  9. two core developers or by Araq.
  10. See `codeowners <codeowners.html>`_ for more details.
  11. Writing tests
  12. =============
  13. There are 4 types of tests:
  14. 1. ``runnableExamples`` documentation comment tests, ran by ``nim doc mymod.nim``
  15. These end up in documentation and ensure documentation stays in sync with code.
  16. 2. separate test files, e.g.: ``tests/stdlib/tos.nim``.
  17. In nim repo, `testament` (see below) runs all `$nim/tests/*/t*.nim` test files;
  18. for nimble packages, see https://github.com/nim-lang/nimble#tests.
  19. 3. (deprecated) tests in ``when isMainModule:`` block, ran by ``nim r mymod.nim``.
  20. ``nimble test`` can run those in nimble packages when specified in a
  21. `task "test"`.
  22. 4. (not preferred) `.. code-block:: nim` RST snippets; these should only be used in rst sources,
  23. in nim sources `runnableExamples` should now always be preferred to those for
  24. several reasons (cleaner syntax, syntax highlights, batched testing, and
  25. `rdoccmd` allows customization).
  26. Not all the tests follow the convention here, feel free to change the ones
  27. that don't. Always leave the code cleaner than you found it.
  28. Stdlib
  29. ------
  30. Each stdlib module (anything under ``lib/``, e.g. ``lib/pure/os.nim``) should
  31. preferably have a corresponding separate test file, eg `tests/stdlib/tos.nim`.
  32. The old convention was to add a ``when isMainModule:`` block in the source file,
  33. which only gets executed when the tester is building the file.
  34. Each test should be in a separate ``block:`` statement, such that
  35. each has its own scope. Use boolean conditions and ``doAssert`` for the
  36. testing by itself, don't rely on echo statements or similar; in particular avoid
  37. things like `echo "done"`.
  38. Sample test:
  39. .. code-block:: nim
  40. block: # bug #1234
  41. static: doAssert 1+1 == 2
  42. block: # bug #1235
  43. var seq2D = newSeqWith(4, newSeq[bool](2))
  44. seq2D[0][0] = true
  45. seq2D[1][0] = true
  46. seq2D[0][1] = true
  47. doAssert seq2D == @[@[true, true], @[true, false],
  48. @[false, false], @[false, false]]
  49. # doAssert with `not` can now be done as follows:
  50. doAssert not (1 == 2)
  51. Always refer to a github issue using the following exact syntax: `bug #1234` as shown
  52. above, so that it's consistent and easier to search or for tooling. Some browser
  53. extensions (eg https://github.com/sindresorhus/refined-github) will even turn those
  54. in clickable links when it works.
  55. Rationale for using a separate test file instead of `when isMainModule:` block:
  56. * allows custom compiler flags or testing options (see details below)
  57. * faster CI since they can be joined in `megatest` (combined into a single test)
  58. * avoids making the parser do un-necessary work when a source file is merely imported
  59. * avoids mixing source and test code when reporting line of code statistics or code coverage
  60. Compiler
  61. --------
  62. The tests for the compiler use a testing tool called ``testament``. They are all
  63. located in ``tests/`` (e.g.: ``tests/destructor/tdestructor3.nim``).
  64. Each test has its own file. All test files are prefixed with ``t``. If you want
  65. to create a file for import into another test only, use the prefix ``m``.
  66. At the beginning of every test is the expected behavior of the test.
  67. Possible keys are:
  68. - ``cmd``: A compilation command template e.g. ``nim $target --threads:on $options $file``
  69. - ``output``: The expected output (stdout + stderr), most likely via ``echo``
  70. - ``exitcode``: Exit code of the test (via ``exit(number)``)
  71. - ``errormsg``: The expected compiler error message
  72. - ``file``: The file the errormsg was produced at
  73. - ``line``: The line the errormsg was produced at
  74. For a full spec, see here: ``testament/specs.nim``
  75. An example for a test:
  76. .. code-block:: nim
  77. discard """
  78. errormsg: "type mismatch: got (PTest)"
  79. """
  80. type
  81. PTest = ref object
  82. proc test(x: PTest, y: int) = nil
  83. var buf: PTest
  84. buf.test()
  85. Running tests
  86. =============
  87. You can run the tests with
  88. ::
  89. ./koch tests
  90. which will run a good subset of tests. Some tests may fail. If you
  91. only want to see the output of failing tests, go for
  92. ::
  93. ./koch tests --failing all
  94. You can also run only a single category of tests. A category is a subdirectory
  95. in the ``tests`` directory. There are a couple of special categories; for a
  96. list of these, see ``testament/categories.nim``, at the bottom.
  97. ::
  98. ./koch tests c lib # compiles/runs stdlib modules, including `isMainModule` tests
  99. ./koch tests c megatest # runs a set of tests that can be combined into 1
  100. To run a single test:
  101. ::
  102. ./koch test run <category>/<name> # e.g.: tuples/ttuples_issues
  103. ./koch test run tests/stdlib/tos.nim # can also provide relative path
  104. For reproducible tests (to reproduce an environment more similar to the one
  105. run by Continuous Integration on travis/appveyor), you may want to disable your
  106. local configuration (e.g. in ``~/.config/nim/nim.cfg``) which may affect some
  107. tests; this can also be achieved by using
  108. ``export XDG_CONFIG_HOME=pathtoAlternateConfig`` before running ``./koch``
  109. commands.
  110. Comparing tests
  111. ===============
  112. Test failures can be grepped using ``Failure:``.
  113. The tester can compare two test runs. First, you need to create the
  114. reference test. You'll also need to the commit id, because that's what
  115. the tester needs to know in order to compare the two.
  116. ::
  117. git checkout devel
  118. DEVEL_COMMIT=$(git rev-parse HEAD)
  119. ./koch tests
  120. Then switch over to your changes and run the tester again.
  121. ::
  122. git checkout your-changes
  123. ./koch tests
  124. Then you can ask the tester to create a ``testresults.html`` which will
  125. tell you if any new tests passed/failed.
  126. ::
  127. ./koch tests --print html $DEVEL_COMMIT
  128. Deprecation
  129. ===========
  130. Backward compatibility is important, so instead of a rename you need to deprecate
  131. the old name and introduce a new name:
  132. .. code-block:: nim
  133. # for routines (proc/template/macro/iterator) and types:
  134. proc oldProc(a: int, b: float): bool {.deprecated:
  135. "deprecated since v1.2.3; use `newImpl: string -> int` instead".} = discard
  136. # for (const/var/let/fields) the msg is not yet supported:
  137. const Foo {.deprecated.} = 1
  138. # for enum types, you can deprecate the type or some elements
  139. # (likewise with object types and their fields):
  140. type Bar {.deprecated.} = enum bar0, bar1
  141. type Barz = enum baz0, baz1 {.deprecated.}, baz2
  142. See also `Deprecated <manual.html#pragmas-deprecated-pragma>`_
  143. pragma in the manual.
  144. Documentation
  145. =============
  146. When contributing new procs, be sure to add documentation, especially if
  147. the proc is public. Even private procs benefit from documentation and can be
  148. viewed using ``nim doc --docInternal foo.nim``.
  149. Documentation begins on the line
  150. following the ``proc`` definition, and is prefixed by ``##`` on each line.
  151. Runnable code examples are also encouraged, to show typical behavior with a few
  152. test cases (typically 1 to 3 ``assert`` statements, depending on complexity).
  153. These ``runnableExamples`` are automatically run by ``nim doc mymodule.nim``
  154. as well as ``testament`` and guarantee they stay in sync.
  155. .. code-block:: nim
  156. proc addBar*(a: string): string =
  157. ## Adds "Bar" to `a`.
  158. runnableExamples:
  159. assert "baz".addBar == "bazBar"
  160. result = a & "Bar"
  161. See `parentDir <os.html#parentDir,string>`_ example.
  162. The RestructuredText Nim uses has a special syntax for including code snippets
  163. embedded in documentation; these are not run by ``nim doc`` and therefore are
  164. not guaranteed to stay in sync, so ``runnableExamples`` is usually preferred:
  165. .. code-block:: nim
  166. proc someproc*(): string =
  167. ## Return "something"
  168. ##
  169. ## .. code-block::
  170. ## echo someproc() # "something"
  171. result = "something" # single-hash comments do not produce documentation
  172. The ``.. code-block:: nim`` followed by a newline and an indentation instructs the
  173. ``nim doc`` command to produce syntax-highlighted example code with the
  174. documentation (``.. code-block::`` is sufficient from inside a nim module).
  175. When forward declaration is used, the documentation should be included with the
  176. first appearance of the proc.
  177. .. code-block:: nim
  178. proc hello*(): string
  179. ## Put documentation here
  180. proc nothing() = discard
  181. proc hello*(): string =
  182. ## ignore this
  183. echo "hello"
  184. The preferred documentation style is to begin with a capital letter and use
  185. the imperative (command) form. That is, between:
  186. .. code-block:: nim
  187. proc hello*(): string =
  188. ## Return "hello"
  189. result = "hello"
  190. or
  191. .. code-block:: nim
  192. proc hello*(): string =
  193. ## says hello
  194. result = "hello"
  195. the first is preferred.
  196. Best practices
  197. ==============
  198. Note: these are general guidelines, not hard rules; there are always exceptions.
  199. Code reviews can just point to a specific section here to save time and
  200. propagate best practices.
  201. .. _define_needs_prefix:
  202. New `defined(foo)` symbols need to be prefixed by the nimble package name, or
  203. by `nim` for symbols in nim sources (e.g. compiler, standard library). This is
  204. to avoid name conflicts across packages.
  205. .. code-block:: nim
  206. # if in nim sources
  207. when defined(allocStats): discard # bad, can cause conflicts
  208. when defined(nimAllocStats): discard # preferred
  209. # if in a pacakge `cligen`:
  210. when defined(debug): discard # bad, can cause conflicts
  211. when defined(cligenDebug): discard # preferred
  212. .. _noimplicitbool:
  213. Take advantage of no implicit bool conversion
  214. .. code-block:: nim
  215. doAssert isValid() == true
  216. doAssert isValid() # preferred
  217. .. _design_for_mcs:
  218. Design with method call syntax chaining in mind
  219. .. code-block:: nim
  220. proc foo(cond: bool, lines: seq[string]) # bad
  221. proc foo(lines: seq[string], cond: bool) # preferred
  222. # can be called as: `getLines().foo(false)`
  223. .. _avoid_quit:
  224. Use exceptions (including assert / doAssert) instead of ``quit``
  225. rationale: https://forum.nim-lang.org/t/4089
  226. .. code-block:: nim
  227. quit() # bad in almost all cases
  228. doAssert() # preferred
  229. .. _tests_use_doAssert:
  230. Use ``doAssert`` (or ``require``, etc), not ``assert`` in all tests so they'll
  231. be enabled even in release mode (except for tests in ``runnableExamples`` blocks
  232. which for which ``nim doc`` ignores ``-d:release``).
  233. .. code-block:: nim
  234. when isMainModule:
  235. assert foo() # bad
  236. doAssert foo() # preferred
  237. .. _delegate_printing:
  238. Delegate printing to caller: return ``string`` instead of calling ``echo``
  239. rationale: it's more flexible (e.g. allows caller to call custom printing,
  240. including prepending location info, writing to log files, etc).
  241. .. code-block:: nim
  242. proc foo() = echo "bar" # bad
  243. proc foo(): string = "bar" # preferred (usually)
  244. .. _use_Option:
  245. [Ongoing debate] Consider using Option instead of return bool + var argument,
  246. unless stack allocation is needed (e.g. for efficiency).
  247. .. code-block:: nim
  248. proc foo(a: var Bar): bool
  249. proc foo(): Option[Bar]
  250. .. _use_doAssert_not_echo:
  251. Tests (including in testament) should always prefer assertions over ``echo``,
  252. except when that's not possible. It's more precise, easier for readers and
  253. maintaners to where expected values refer to. See for example
  254. https://github.com/nim-lang/Nim/pull/9335 and https://forum.nim-lang.org/t/4089
  255. .. code-block:: nim
  256. echo foo() # adds a line for testament in `output:` block inside `discard`.
  257. doAssert foo() == [1, 2] # preferred, except when not possible to do so.
  258. The Git stuff
  259. =============
  260. General commit rules
  261. --------------------
  262. 1. Important, critical bugfixes that have a tiny chance of breaking
  263. somebody's code should be backported to the latest stable release
  264. branch (currently 1.2.x) and maybe also to the 1.0 branch.
  265. The commit message should contain the tag ``[backport]`` for "backport to all
  266. stable releases" and the tag ``[backport:$VERSION]`` for backporting to the
  267. given $VERSION.
  268. 2. If you introduce changes which affect backwards compatibility,
  269. make breaking changes, or have PR which is tagged as ``[feature]``,
  270. the changes should be mentioned in `the changelog
  271. <https://github.com/nim-lang/Nim/blob/devel/changelog.md>`_.
  272. 3. All changes introduced by the commit (diff lines) must be related to the
  273. subject of the commit.
  274. If you change something unrelated to the subject parts of the file, because
  275. your editor reformatted automatically the code or whatever different reason,
  276. this should be excluded from the commit.
  277. *Tip:* Never commit everything as is using ``git commit -a``, but review
  278. carefully your changes with ``git add -p``.
  279. 4. Changes should not introduce any trailing whitespace.
  280. Always check your changes for whitespace errors using ``git diff --check``
  281. or add following ``pre-commit`` hook:
  282. .. code-block:: sh
  283. #!/bin/sh
  284. git diff --check --cached || exit $?
  285. 5. Describe your commit and use your common sense.
  286. Example commit message:
  287. ``Fixes #123; refs #124``
  288. indicates that issue ``#123`` is completely fixed (github may automatically
  289. close it when the PR is committed), wheres issue ``#124`` is referenced
  290. (e.g.: partially fixed) and won't close the issue when committed.
  291. 6. Commits should be always be rebased against devel (so a fast forward
  292. merge can happen)
  293. e.g.: use ``git pull --rebase origin devel``. This is to avoid messing up
  294. git history.
  295. Exceptions should be very rare: when rebase gives too many conflicts, simply
  296. squash all commits using the script shown in
  297. https://github.com/nim-lang/Nim/pull/9356
  298. 7. Do not mix pure formatting changes (e.g. whitespace changes, nimpretty) or
  299. automated changes (e.g. nimfix) with other code changes: these should be in
  300. separate commits (and the merge on github should not squash these into 1).
  301. Continuous Integration (CI)
  302. ---------------------------
  303. 1. Continuous Integration is by default run on every push in a PR; this clogs
  304. the CI pipeline and affects other PR's; if you don't need it (e.g. for WIP or
  305. documentation only changes), add ``[ci skip]`` to your commit message title.
  306. This convention is supported by `Appveyor
  307. <https://www.appveyor.com/docs/how-to/filtering-commits/#skip-directive-in-commit-message>`_
  308. and `Travis <https://docs.travis-ci.com/user/customizing-the-build/#skipping-a-build>`_.
  309. 2. Consider enabling CI (azure, github actions and builds.sr.ht) in your own Nim fork, and
  310. waiting for CI to be green in that fork (fixing bugs as needed) before
  311. opening your PR in original Nim repo, so as to reduce CI congestion. Same
  312. applies for updates on a PR: you can test commits on a separate private
  313. branch before updating the main PR.
  314. Debugging CI failures, flaky tests, etc
  315. ---------------------------------------
  316. 1. First check the CI logs and search for `FAIL` to find why CI failed; if the
  317. failure seems related to your PR, try to fix the code instead of restarting CI.
  318. 2. If CI failure seems unrelated to your PR, it could be caused by a flaky test.
  319. File a bug for it if it isn't already reported. A PR push (or opening/closing PR)
  320. will re-trigger all CI jobs (even successful ones, which can be wasteful). Instead,
  321. follow these instructions to only restart the jobs that failed:
  322. * Azure: if on your own fork, it's possible from inside azure console
  323. (eg `dev.azure.com/username/username/_build/results?buildId=1430&view=results`) via `rerun failed jobs` on top.
  324. If either on you own fork or in Nim repo, it's possible from inside github UI
  325. under checks tab, see https://github.com/timotheecour/Nim/issues/211#issuecomment-629751569
  326. * github actions: under "Checks" tab, click "Re-run jobs" in the right.
  327. * builds.sr.ht: create a sourcehut account so you can restart a PR job as illustrated
  328. Code reviews
  329. ------------
  330. 1. Whenever possible, use github's new 'Suggested change' in code reviews, which
  331. saves time explaining the change or applying it; see also
  332. https://forum.nim-lang.org/t/4317
  333. 2. When reviewing large diffs that may involve code moving around, github's interface
  334. doesn't help much as it doesn't highlight moves. Instead you can use something
  335. like this, see visual results `here <https://github.com/nim-lang/Nim/pull/10431#issuecomment-456968196>`_:
  336. .. code-block:: sh
  337. git fetch origin pull/10431/head && git checkout FETCH_HEAD
  338. git diff --color-moved-ws=allow-indentation-change --color-moved=blocks HEAD^
  339. 3. In addition, you can view github-like diffs locally to identify what was changed
  340. within a code block using `diff-highlight` or `diff-so-fancy`, e.g.:
  341. .. code-block:: sh
  342. # put this in ~/.gitconfig:
  343. [core]
  344. pager = "diff-so-fancy | less -R" # or: use: `diff-highlight`
  345. .. include:: docstyle.rst
  346. Evolving the stdlib
  347. ===================
  348. As outlined in https://github.com/nim-lang/RFCs/issues/173 there are a couple
  349. of guidelines about what should go into the stdlib, what should be added and
  350. what eventually should be removed.
  351. What the compiler itself needs must be part of the stdlib
  352. ---------------------------------------------------------
  353. Maybe in the future the compiler itself can depend on Nimble packages but for
  354. the time being, we strive to have zero dependencies in the compiler as the
  355. compiler is the root of the bootstrapping process and is also used to build
  356. Nimble.
  357. Vocabulary types must be part of the stdlib
  358. -------------------------------------------
  359. These are types most packages need to agree on for better interoperability,
  360. for example ``Option[T]``. This rule also covers the existing collections like
  361. ``Table``, ``CountTable`` etc. "Sorted" containers based on a tree-like data
  362. structure are still missing and should be added.
  363. Time handling, especially the ``Time`` type are also covered by this rule.
  364. Existing, battle-tested modules stay
  365. ------------------------------------
  366. Reason: There is no benefit in moving them around just to fullfill some design
  367. fashion as in "Nim's core MUST BE SMALL". If you don't like an existing module,
  368. don't import it. If a compilation target (e.g. JS) cannot support a module,
  369. document this limitation.
  370. This covers modules like ``os``, ``osproc``, ``strscans``, ``strutils``,
  371. ``strformat``, etc.
  372. Syntactic helpers can start as experimental stdlib modules
  373. ----------------------------------------------------------
  374. Reason: Generally speaking as external dependencies they are not exposed
  375. to enough users so that we can see if the shortcuts provide enough benefit
  376. or not. Many programmers avoid external dependencies, even moreso for
  377. "tiny syntactic improvements". However, this is only true for really good
  378. syntactic improvements that have the potential to clean up other parts of
  379. the Nim library substantially. If in doubt, new stdlib modules should start
  380. as external, successful Nimble packages.
  381. Other new stdlib modules do not start as stdlib modules
  382. -------------------------------------------------------
  383. As we strive for higher quality everywhere, it's easier to adopt existing,
  384. battle-tested modules eventually rather than creating modules from scratch.
  385. Little additions are acceptable
  386. -------------------------------
  387. As long as they are documented and tested well, adding little helpers
  388. to existing modules is acceptable. For two reasons:
  389. 1. It makes Nim easier to learn and use in the long run.
  390. ("Why does sequtils lack a ``countIt``?
  391. Because version 1.0 happens to have lacked it? Silly...")
  392. 2. To encourage contributions. Contributors often start with PRs that
  393. add simple things and then they stay and also fix bugs. Nim is an
  394. open source project and lives from people's contributions and involvement.
  395. Newly introduced issues have to be balanced against motivating new people. We know where
  396. to find perfectly designed pieces of software that have no bugs -- these are the systems
  397. that nobody uses.
  398. Conventions
  399. -----------
  400. 1. New stdlib modules should go under `Nim/lib/std/`. The rationale is to require
  401. users to import via `import std/foo` instead of `import foo`, which would cause
  402. potential conflicts with nimble packages. Note that this still applies for new modules
  403. in existing logical directories, eg:
  404. use `lib/std/collections/foo.nim`, not `lib/pure/collections/foo.nim`.
  405. 2. New module names should prefer plural form whenever possible, eg:
  406. `std/sums.nim` instead of `std/sum.nim`. In particular, this reduces chances of conflicts
  407. between module name and the symbols it defines. Furthermore, is should use `snake_case`
  408. and not use capital letters, which cause issues when going from an OS without case
  409. sensitivity to an OS without it.