README.rst

Info

Parent directory

/

Last update

Modified — 2020-09-26 17:13:51 +0200

Last source

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
=============================================
IssHub : Your essential Git.Hub.Lab companion
=============================================


Welcome to the repository where `IssHub <https://isshub.io>`_ v2 is developed.

--------
Abstract
--------

IssHub is an "ISSues Hub", where you can manage your issues (and code requests, notifications...) from code hosting platforms like Github and Gitlab, in one place, with a common interface and advanced tools.

This is the repository of the second version, that is developed in a totally different way that the previous one: progressive, clean and in the open.

----------
Motivation
----------

The first version was developed starting on a "Proof of concept" and evolved over several years without a  clear vision on what was the goal, and no proper code architecture.

When `Joachim Jablon <https://github.com/ewjoachim>`_ and I prepared our `talk fo the Djangocon Europe 2019 in Copenhagen, "Maintaining a Django codebase after 10k commits" <https://www.youtube.com/watch?v=_DIlE-yc9ZQ&t=724s>`_, I "saw the light" and wanted to do a little experiment around all we talked about.

In the few months prior to the conference, as a planed sponsor, I worked a lot in IssHub to have it ready, bug-free (ahem) and mainly the biggest new feature since I started to work on this project in 2013: support for Gitlab in addition to Github.

It was a real pain as I encountered all the pain points we tried to solve in our talk

Third parties
    Over 6 years, Django evolved a lot, and a lot of third parties were abandoned. Upgrading was very difficult. Proof: IssHub v1 is still on Python 2.

Code architecture
    The original proof of concept was to simply be able to organize issues with labels. So, as a POC, it was normal to follow Github on how to model things. But Gitlab, does things in a very different way and I had to make it fit the Github model.

    So there was no clear separation (and even no separation at all) between the "domain", and all the rest of the application.

    And finally the logic was everywhere: in the models, in the managers, in the views, in the templates.... Exactly what you want to avoid to maintain - and evolve - a big project.

Tests
    I won't speak about tests in IssHub v1: I gave up on many parts, because of the big bowl of spaghetti I had.

So after our talk, instead of a little experiment about what we learnt in the process, I asked myself: why not starting up IssHub again, but this time doing it properly, and in the open, to force myself to do the things correctly.

And it could also be a good way for others to see what I, as a 43 years old senior developer with half of my life as a paid developer, think is **a** (and not **the**) good way of developing a "big project"


---------
Rationale
---------

The main concepts that are used on this project:

- coding in the open
- developer friendly
- future friendly
- clear separation of concerns

''''''''''''''''''
Coding in the open
''''''''''''''''''

The main reason for the code of IssHub v1 to be "closed source" is because I'm not proud of it. It is really far from everything I try to transmit at work: quality is important, if not the most important.

By doing this in the open, it will force me to do things well.

It will also be for me a good resource to provide when looking for new freelancer missions.

And, I hope, it can become a reference for everything I do elsewhere, from my own pet projects, to other "big projects" I may create in the future, or to simply pick ideas, code snippets, etc. when working for someone else.

And finally, having it in the open allow other people to participate in many ways (reporting bugs is a good start)

'''''''''''''''''''''''''''''
Developer and future friendly
'''''''''''''''''''''''''''''

  “Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live”

  -- John F. Woods

aka: future you

Nobody knows the future. A project started alone after work can become a big company later. Or it can just be you in a few years having to deal with "just a quick fix" made by past you. Or you simply want to have other hands working with you.

In all these cases, you want your code to be clean. You don't want to fight to have great code readability. You don't want to have a fix break totally unrelated things.

For this you want:

- code linting
- tests
- documentation

This will be one on the roots of this new rewrite of IssHub.

''''''''''''''''''''''''''''
Clear separation of concerns
''''''''''''''''''''''''''''

Having concerns separated allow better testing: each part can be unit tested, and the "glue" can be tested in integration mode.

Updates are also easier because each part does one thing and does it well.

The first thing we do is to do `Domain Driven Development <https://en.wikipedia.org/wiki/Domain-driven_design>`_: instead of mixing everything everywhere, domain logic will be apart from the rest. Considering Django as a third party app and not the center of the project, like it's very often the case.

On the "domain", we'll delimit some "bounded context, for example the data we manage from the repositories, the local interaction between logged in users and these data, payment/subscriptions...

So the domain will be a layer of our architecture. But it's not enough to make an application.

We'll need a layer to handle the persistence, one to manage the synchronization between us and the remote sources (Github, Gitlab...), another to display things to the user.

The domain is in the middle of all of these layers. It means that sync and front layers only handle data from the domain, not from the django ORM, which is only used as the persistence layer.

We then won't be able to use some powerful features of Django, ie all the parts that link the orm to the rest of Django: no `ModelForm`, no `UpdateView`... but we can still use `Form` and `ModelFormMixin`, using our domain to pass data to Django, as "pure python objects", validate the data...

It's a hard choice to make but for me, the separation of concerns, for a project of this size, is more important than the benefits of using Django as the ruler of everything.


--------------
Specifications
--------------

This part will evolve a lot during the development but there are still some things I know for sure.

'''''
Tools
'''''

All tools are incorporated in a `Makefile`, so it's easier to run commands. Tools listed below all have at least one `make` command to run them.

.. note::

   Run `make help` to list the available commands (the first one to run in a fresh python virtual environment being `make dev`)


Linting
=======

To enforce coding style in python, we'll use:

`black <https://black.readthedocs.io/en/stable/>`_
  Black is the "uncompromising code formatter"

  Used with default configuration.

  To check::

    make check-black

  To apply::

    make black


`isort <https://isort.readthedocs.io/>`_
  isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections

  Used with special configuration.

  To check::

    make check-isort

  To apply::

    make isort

But we still use lint checkers:

`pylint <https://docs.pylint.org/>`_
  Pylint is a tool that checks for errors in Python code, tries to enforce a coding standard and looks for code smells.

  With some code specifically ignored, and also with this plugin:

  `pylint.extensions.docparams <http://pylint.pycqa.org/en/stable/technical_reference/extensions.html#parameter-documentation-checker>`_
    If you document the parameters of your functions, methods and constructors and their types systematically in your code this optional component might be useful for you.

    Using configuration to enforce complete docstrings, using NumPy style.

  To run `pylint`::

    make pylint

`flake8 <http://flake8.pycqa.org>`_
  Flake8: Your Tool For Style Guide Enforcement

  A wrapper around `PyFlakes <https://pypi.org/project/pyflakes/>`_, `pycodestyle <https://pypi.org/project/pycodestyle/>`_ (formerly called pep8), `McCabe <https://pypi.org/project/mccabe/>`_.

  With these plugins;

  `flake8-bugbear <https://pypi.org/project/flake8-bugbear/>`_
    A plugin for Flake8 finding likely bugs and design problems in your program

  `flake8-comprehensions <https://pypi.org/project/flake8-comprehensions/>`_
    A flake8 plugin that helps you write better list/set/dict comprehensions.

  `flake8-docstrings <https://pypi.org/project/flake8-docstrings/>`_
    A simple module that adds an extension for the fantastic `pydocstyle <http://www.pydocstyle.org>`_ tool to flake8.

  To run `flake8`::

    make flake8

Yes, it's a lot. My IDE is configured to run isort + black on every save. So pylint and flake8 should report very few things, and when they does, it will mainly be about code badly written.

Other related `make` commands:

- Run isort and black::

    make pretty

- Run all lint checkers (isort, black, pylint, flake8 and mypy)::

    make lint

Documentation
=============

For code documentation, I enforce docstrings in all modules, classes, and functions/methods, using `NumPy style documentation <https://numpydoc.readthedocs.io>`_, using python typing "types" to define the types of parameters and return values.

The checks are enforced by `flake8-docstrings`_ for basic docstring presentation, and by `pylint.extensions.docparams`_ for content.

I'll try to use `python typing <https://docs.python.org/3/library/typing.html>`_ while avoiding making things too much complicated. So expect some `# type: ignore` comments here and there, notably on decorators.

The types will be checked by `mypy <https://mypy.readthedocs.io/>`_.

So, code documentation is important (take that, Django). But it is clearly not enough.

We need to document the install process and how to run the application, how to participate and use all the tools, how things works, from a developer point of view and from a user point of view, etc, etc.

All of this will be done via `sphinx <http://www.sphinx-doc.org>`_ and the documentation will be hosted on `ReadTheDocs <https://readthedocs.org>`_.

To build the documentation locally, simply run::

  make docs

The documentation will be available at `<https://isshub.readthedocs.io>`_ and will contain everything, including the current document, the documented source code, and every commit.

**Every commit?**

Yes, as will see later in this document, each commit will have a detailed description about the why and the how things are done, so in my opinion, it's like documentation about the process of development. This will be done via `PyDriller <https://pydriller.readthedocs.io>`_.

Testing
=======

For tests I won't use unittest (and so not the Django test subclasses), but `pytest <https://docs.pytest.org/>`_

And I want to do things a little bit differently that we are used too.

I *may* use TDD (`Test-Driven Development <https://en.wikipedia.org/wiki/Test-driven_development>`_), but it's not sure yet, as I'm really not used to it. Will see.

But...

See this `tweet from Cory House <https://mobile.twitter.com/housecor/status/1124308540162805761>`_:

  Test descriptions should ideally include:
    1. The name of the system under test
    2. The scenario under test
    3. The expected result

  Why?
    1. It makes the test easier to understand (remember, tests are docs too)
    2. It makes the test easier to fix when it fails

  -- @housecor 2019-05-03

How to do this?

Generally a test function is written this way:

.. code-block:: python

  def test_concat():
      assert concat('foo', 'bar') == 'foobar'

We can give it a bette name:

.. code-block:: python

  def test_concat_should_concat_two_strings():
      assert concat('foo', 'bar') == 'foobar'

And add a docstring:

.. code-block:: python

  def test_concat_should_concat_two_strings():
      """The ``concat`` function should concat the two given strings."""
      assert concat('foo', 'bar') == 'foobar'

We still don't respect what's said in the tweet.

And also there is no formalism.

What if we can say something like:

  Given the strings "foo" and "bar", when I pass them to the concat function, then it should return "foobar".

So let's use it:

.. code-block:: python

  def test_concat_should_concat_two_strings():
      """Given the strings "foo" and "bar", when I pass them to the concat function, then it should return "foobar"."""
      assert concat('foo', 'bar') == 'foobar'

It's better.

If this test sounds familiar to you, its normal: it's `Gherkin language <https://cucumber.io/docs/gherkin/reference/>`_ and used in BDD (`Behavior-driven development <https://en.wikipedia.org/wiki/Behavior-driven_development>`_)

BDD is generally used for functional tests. But I want to test if it can be applied at other levels: unit tests and integration tests.

So let's use `pytest-bdd <https://github.com/pytest-dev/pytest-bdd>`_ to write this test.

First, the Gherkin, in a file `concat-function.feature`:

.. code-block:: gherkin

  Feature: concat function

    Scenario: Concatenating two strings
      Given a string "foo"
      And a string "bar"
      When I pass them to the concat function
      Then I should get "foobar" in retun

Then the test:

.. code-block:: python

  from pytest_bdd import scenario, given, when, then

  @scenario('concat-function.feature', 'Concatenating two strings')
  def test_concat():
      pass

  @given('a string "foo"')
  def string_foo():
      return 'foo'

  @given('a string "bar"')
  def string_bar():
      return 'bar'

  @when('I pass them to the concat function')
  def concat_foo_and_bar(string_foo, string_bar):
      return concat(string_foo)

  @then('I should get "foobar" in return')
  def result_should_be_foobar(concat_foo_and_bar):
      assert concat_foo_and_bar == 'foobar'

It can seems cumbersome, but we can:
 - use the great power of pytest fixtures
 - parametrize the strings
 - use the parametrize feature of pytest to run a scenario for different inputs

I won't go further here on how to make this code less cumbersome and more reusable, but as all my tests will be written this way, you'll see a lot of examples.

Among the benefits:
 - the "features", ie the tests (in Gherkin) are readable/writeable by everyone
 - we can write our "features" in advance: we have the specifications and documentation
 - we have a formal way of describing what we test and how we do it.
 - every part does one thing so easy to correct if needed

The main (and only one, in my opinion) inconvenient is that tests may be longer to write. But we cannot have some advantages without losing something, and for me it's something I can live with.

And you'll be surprised to see this "BDD" thing used in very unusual case. An example?

.. code-block:: gherkin

  Feature: Describing a Repository

    Scenario: A Repository has a name
        Given a Repository
        Then it must have a field named name

    Scenario: A Repository name is a string
        Given a Repository
        Then its name must be a string

    Scenario: A Repository name is mandatory
        Given a Repository
        Then its name is mandatory

Yes, things like that :)

Git
===

Commits are as much important as code. They hold the whole history of the project and commits can be used to know why things were done a certain way.

So I want my commits to be very descriptive. So I'll follow a specification, based on `conventional commits <https://www.conventionalcommits.org>`_, at least for the title of the commit. Please refer to this documentation to know more about the syntax. The accepted types are:

- build
- ci
- chore
- docs
- feat
- fix
- perf
- refactor
- revert
- style
- tests

The description will be written in restructured text (like all the documentation in this project), with 3 mandatory sections:

Abstract
  A short description of the issue being addressed.

Motivation
  Describe why particular design decisions were made.

Rationale
  Describe why particular design decisions were made.

This is heavily inspired by the `PEP suggested sections <https://www.python.org/dev/peps/pep-0012/#suggested-sections>`_, and other sections can be added from the list in pep 0012, but the three ones above are mandatory, in this order.

This will also be checked by the CI for every commits.

The repository provides a template in `.gitmessage` to use for new commits. To instruct git to use it, run::

    git config commit.template .gitmessage


To check if the last commit is valid, you can run::

    make check-commit

If you want to validate an other commit message than the last one, check `ci/check_commit_message.py -h`

The commits are so important to me that they will be available in the "Internals" part of the documentation in a easily browsable way.

Another important thing is that, in my opinion, the state of the project after every commit must be a valid state: tests must pass. It is absolutely necessary when you want to find the source of a bug via `git-bisect`.

This will be validated by the CI that will run all the CI jobs for all the commits, via the `ci/check-every-commit.sh` script.

Also, I'm a fan of `git-flow <https://nvie.com/posts/a-successful-git-branching-model/>`_ and it (the `avh edition <https://github.com/petervanderdoes/gitflow-avh>`_) will be used in this project, but adding the username in the branch name (easier to filter on if many users), so for example my own development branches will be prefixed by `features/twidi/`. (If branches from other people in pull requests do not follow this pattern, it will be done on my side)

Continuous integration
======================

All of these tools will be run via continuous integration, on `CircleCi <https://circleci.com/>`_.

One status will be posted on Github for each job for every pull requests.  In addition, every commit will also have a status, via the `check-every-commit` job.

To access the list of jobs: https://circleci.com/gh/Isshub-io/isshub


''''''
Coding
''''''

Domain
======

As said previously, I'll use Domain Driven Development, at least some parts, not sure yet.

The first step is to have a `isshub.domain` package.

It will contain some sub-packages:

contexts
--------

Bounded contexts are used to separate groups of things that work together but independent of other contexts.

The contexts hold some entities, objects that have a distinct identity.

The contexts are:

code_repository
'''''''''''''''

The `code_repository` context will hold things around repositories, issues, code requests...

Its entities are:

Repository
    Repositories are the central entity of the whole isshub project. Everything is tied to them, at one level or another.
Namespace
    A namespace is a place where repositories or other namespaces are stored.

Fetching
========

Frontend
========

Changes

fix(bdd): Rename “can/cannot be none” describing scenarios

Commit
Hash

cf1ea754ee276b16ddce53692a59174b2b583369

Date

2020-09-26 17:13:51 +0200

Type

Modified

Stats

+2 -2

@@ -376,9 +376,9 @@ And you'll be surprised to see this "BDD" thing used in very unusual case. An ex
         Given a Repository
         Then its name must be a string

-    Scenario: A Repository name cannot be None
+    Scenario: A Repository name is mandatory
         Given a Repository
-        Then its name cannot be None
+        Then its name is mandatory

 Yes, things like that :)

build(make): Remove the dev-upgrade make command (use make dev)

Commit
Hash

8ba4c5b6ea39ccc596f0ed30f3e945d0f9b53ef3

Date

2020-09-26 14:13:56 +0200

Type

Modified

Stats

+5 -0

@@ -125,6 +125,11 @@ Tools

 All tools are incorporated in a `Makefile`, so it's easier to run commands. Tools listed below all have at least one `make` command to run them.

+.. note::
+
+   Run `make help` to list the available commands (the first one to run in a fresh python virtual environment being `make dev`)
+
+
 Linting
 =======

chore: Fix breaking changes from updated dependencies

Commit
Hash

7c6dfe01ac4ffbaac21d5d3836d5fda9c8391cf7

Date

2020-09-25 22:54:00 +0200

Type

Modified

Stats

+1 -7

@@ -189,12 +189,6 @@ But we still use lint checkers:
   `flake8-docstrings <https://pypi.org/project/flake8-docstrings/>`_
     A simple module that adds an extension for the fantastic `pydocstyle <http://www.pydocstyle.org>`_ tool to flake8.

-  `flake8-imports <https://pypi.org/project/flake8-imports/>`_
-    Flake8 extension to run isort check over the source files.
-
-  `flake8-mypy <https://pypi.org/project/flake8-mypy/>`_
-    A plugin for Flake8 integrating `mypy <http://mypy-lang.org/>`_.
-
   To run `flake8`::

     make flake8
@@ -220,7 +214,7 @@ The checks are enforced by `flake8-docstrings`_ for basic docstring presentation

 I'll try to use `python typing <https://docs.python.org/3/library/typing.html>`_ while avoiding making things too much complicated. So expect some `# type: ignore` comments here and there, notably on decorators.

-The types will be checked by `mypy`_.
+The types will be checked by `mypy <https://mypy.readthedocs.io/>`_.

 So, code documentation is important (take that, Django). But it is clearly not enough.

docs(fix): Fix bad syntax in README

Commit
Hash

8079b794876aea1f62bf7d30a7a59a1e04bc62ef

Date

2019-08-16 00:09:59 +0200

Type

Modified

Stats

+1 -1

@@ -469,7 +469,7 @@ The contexts hold some entities, objects that have a distinct identity.
 The contexts are:

 code_repository
-''''
+'''''''''''''''

 The `code_repository` context will hold things around repositories, issues, code requests...

refactor(core): Rename core domain context to code_repository

Commit
Hash

07e279b370c0924f2b2cf32aea016b307001dfa0

Date

2019-08-15 23:31:33 +0200

Type

Modified

Stats

+2 -2

@@ -468,10 +468,10 @@ The contexts hold some entities, objects that have a distinct identity.

 The contexts are:

-core
+code_repository
 ''''

-The `core` context will hold the "core" domain, around repositories, issues, code requests...
+The `code_repository` context will hold things around repositories, issues, code requests...

 Its entities are:

feat(namespace): Add Namespace entity in core domain context

Commit
Hash

3a2dd3cc6f6de1fa1b03db95eaa357628824f075

Date

2019-06-07 21:03:50 +0200

Type

Modified

Stats

+3 -1

@@ -471,12 +471,14 @@ The contexts are:
 core
 ''''

-The `core` context will hold the "core" domaines, around repositories, issues, code requests...
+The `core` context will hold the "core" domain, around repositories, issues, code requests...

 Its entities are:

 Repository
     Repositories are the central entity of the whole isshub project. Everything is tied to them, at one level or another.
+Namespace
+    A namespace is a place where repositories or other namespaces are stored.

 Fetching
 ========

feat(repository): Add 1st domain context (core) and entity (Repository)

Commit
Hash

37d8930e4da80b776842d3834d6bf81f860c5692

Date

2019-06-07 21:03:50 +0200

Type

Modified

Stats

+25 -0

@@ -453,6 +453,31 @@ Coding
 Domain
 ======

+As said previously, I'll use Domain Driven Development, at least some parts, not sure yet.
+
+The first step is to have a `isshub.domain` package.
+
+It will contain some sub-packages:
+
+contexts
+--------
+
+Bounded contexts are used to separate groups of things that work together but independent of other contexts.
+
+The contexts hold some entities, objects that have a distinct identity.
+
+The contexts are:
+
+core
+''''
+
+The `core` context will hold the "core" domaines, around repositories, issues, code requests...
+
+Its entities are:
+
+Repository
+    Repositories are the central entity of the whole isshub project. Everything is tied to them, at one level or another.
+
 Fetching
 ========

tests(bdd): Enbrace behavior driven development

Commit
Hash

c3d850c1fe495dd31e2277f670cc90e823e0b593

Date

2019-06-03 13:55:01 +0200

Type

Modified

Stats

+136 -0

@@ -247,6 +247,142 @@ And I want to do things a little bit differently that we are used too.

 I *may* use TDD (`Test-Driven Development <https://en.wikipedia.org/wiki/Test-driven_development>`_), but it's not sure yet, as I'm really not used to it. Will see.

+But...
+
+See this `tweet from Cory House <https://mobile.twitter.com/housecor/status/1124308540162805761>`_:
+
+  Test descriptions should ideally include:
+    1. The name of the system under test
+    2. The scenario under test
+    3. The expected result
+
+  Why?
+    1. It makes the test easier to understand (remember, tests are docs too)
+    2. It makes the test easier to fix when it fails
+
+  -- @housecor 2019-05-03
+
+How to do this?
+
+Generally a test function is written this way:
+
+.. code-block:: python
+
+  def test_concat():
+      assert concat('foo', 'bar') == 'foobar'
+
+We can give it a bette name:
+
+.. code-block:: python
+
+  def test_concat_should_concat_two_strings():
+      assert concat('foo', 'bar') == 'foobar'
+
+And add a docstring:
+
+.. code-block:: python
+
+  def test_concat_should_concat_two_strings():
+      """The ``concat`` function should concat the two given strings."""
+      assert concat('foo', 'bar') == 'foobar'
+
+We still don't respect what's said in the tweet.
+
+And also there is no formalism.
+
+What if we can say something like:
+
+  Given the strings "foo" and "bar", when I pass them to the concat function, then it should return "foobar".
+
+So let's use it:
+
+.. code-block:: python
+
+  def test_concat_should_concat_two_strings():
+      """Given the strings "foo" and "bar", when I pass them to the concat function, then it should return "foobar"."""
+      assert concat('foo', 'bar') == 'foobar'
+
+It's better.
+
+If this test sounds familiar to you, its normal: it's `Gherkin language <https://cucumber.io/docs/gherkin/reference/>`_ and used in BDD (`Behavior-driven development <https://en.wikipedia.org/wiki/Behavior-driven_development>`_)
+
+BDD is generally used for functional tests. But I want to test if it can be applied at other levels: unit tests and integration tests.
+
+So let's use `pytest-bdd <https://github.com/pytest-dev/pytest-bdd>`_ to write this test.
+
+First, the Gherkin, in a file `concat-function.feature`:
+
+.. code-block:: gherkin
+
+  Feature: concat function
+
+    Scenario: Concatenating two strings
+      Given a string "foo"
+      And a string "bar"
+      When I pass them to the concat function
+      Then I should get "foobar" in retun
+
+Then the test:
+
+.. code-block:: python
+
+  from pytest_bdd import scenario, given, when, then
+
+  @scenario('concat-function.feature', 'Concatenating two strings')
+  def test_concat():
+      pass
+
+  @given('a string "foo"')
+  def string_foo():
+      return 'foo'
+
+  @given('a string "bar"')
+  def string_bar():
+      return 'bar'
+
+  @when('I pass them to the concat function')
+  def concat_foo_and_bar(string_foo, string_bar):
+      return concat(string_foo)
+
+  @then('I should get "foobar" in return')
+  def result_should_be_foobar(concat_foo_and_bar):
+      assert concat_foo_and_bar == 'foobar'
+
+It can seems cumbersome, but we can:
+ - use the great power of pytest fixtures
+ - parametrize the strings
+ - use the parametrize feature of pytest to run a scenario for different inputs
+
+I won't go further here on how to make this code less cumbersome and more reusable, but as all my tests will be written this way, you'll see a lot of examples.
+
+Among the benefits:
+ - the "features", ie the tests (in Gherkin) are readable/writeable by everyone
+ - we can write our "features" in advance: we have the specifications and documentation
+ - we have a formal way of describing what we test and how we do it.
+ - every part does one thing so easy to correct if needed
+
+The main (and only one, in my opinion) inconvenient is that tests may be longer to write. But we cannot have some advantages without losing something, and for me it's something I can live with.
+
+And you'll be surprised to see this "BDD" thing used in very unusual case. An example?
+
+.. code-block:: gherkin
+
+  Feature: Describing a Repository
+
+    Scenario: A Repository has a name
+        Given a Repository
+        Then it must have a field named name
+
+    Scenario: A Repository name is a string
+        Given a Repository
+        Then its name must be a string
+
+    Scenario: A Repository name cannot be None
+        Given a Repository
+        Then its name cannot be None
+
+Yes, things like that :)
+
 Git
 ===

ci: Make the CI do all checks for every commits

Commit
Hash

207539153f1de5ee11a9d8b03848a44da8165a9c

Date

2019-06-03 13:55:00 +0200

Type

Modified

Stats

+5 -1

@@ -294,6 +294,10 @@ If you want to validate an other commit message than the last one, check `ci/che

 The commits are so important to me that they will be available in the "Internals" part of the documentation in a easily browsable way.

+Another important thing is that, in my opinion, the state of the project after every commit must be a valid state: tests must pass. It is absolutely necessary when you want to find the source of a bug via `git-bisect`.
+
+This will be validated by the CI that will run all the CI jobs for all the commits, via the `ci/check-every-commit.sh` script.
+
 Also, I'm a fan of `git-flow <https://nvie.com/posts/a-successful-git-branching-model/>`_ and it (the `avh edition <https://github.com/petervanderdoes/gitflow-avh>`_) will be used in this project, but adding the username in the branch name (easier to filter on if many users), so for example my own development branches will be prefixed by `features/twidi/`. (If branches from other people in pull requests do not follow this pattern, it will be done on my side)

 Continuous integration
@@ -301,7 +305,7 @@ Continuous integration

 All of these tools will be run via continuous integration, on `CircleCi <https://circleci.com/>`_.

-One status will be posted on Github for each job for every pull requests.
+One status will be posted on Github for each job for every pull requests.  In addition, every commit will also have a status, via the `check-every-commit` job.

 To access the list of jobs: https://circleci.com/gh/Isshub-io/isshub

ci: Configuration for circle-ci

Commit
Hash

fcd2779c4a1fc545cb105ab3b71a43fc70af8fdc

Date

2019-06-03 13:55:00 +0200

Type

Modified

Stats

+10 -0

@@ -296,6 +296,16 @@ The commits are so important to me that they will be available in the "Internals

 Also, I'm a fan of `git-flow <https://nvie.com/posts/a-successful-git-branching-model/>`_ and it (the `avh edition <https://github.com/petervanderdoes/gitflow-avh>`_) will be used in this project, but adding the username in the branch name (easier to filter on if many users), so for example my own development branches will be prefixed by `features/twidi/`. (If branches from other people in pull requests do not follow this pattern, it will be done on my side)

+Continuous integration
+======================
+
+All of these tools will be run via continuous integration, on `CircleCi <https://circleci.com/>`_.
+
+One status will be posted on Github for each job for every pull requests.
+
+To access the list of jobs: https://circleci.com/gh/Isshub-io/isshub
+
+
 ''''''
 Coding
 ''''''

docs(git): Explain that git-flow will be used

Commit
Hash

a0569ddeb4fb8b994f30dbfbc0b5038400ce5b4c

Date

2019-06-03 13:54:59 +0200

Type

Modified

Stats

+2 -0

@@ -294,6 +294,8 @@ If you want to validate an other commit message than the last one, check `ci/che

 The commits are so important to me that they will be available in the "Internals" part of the documentation in a easily browsable way.

+Also, I'm a fan of `git-flow <https://nvie.com/posts/a-successful-git-branching-model/>`_ and it (the `avh edition <https://github.com/petervanderdoes/gitflow-avh>`_) will be used in this project, but adding the username in the branch name (easier to filter on if many users), so for example my own development branches will be prefixed by `features/twidi/`. (If branches from other people in pull requests do not follow this pattern, it will be done on my side)
+
 ''''''
 Coding
 ''''''

docs(git): Add git commits to documentation

Commit
Hash

0a048252b817f1ddf14dcc2b318fac4335a27b89

Date

2019-06-03 13:54:59 +0200

Type

Modified

Stats

+5 -1

@@ -232,8 +232,11 @@ To build the documentation locally, simply run::

   make docs

+The documentation will be available at `<https://isshub.readthedocs.io>`_ and will contain everything, including the current document, the documented source code, and every commit.

-The documentation will be available at `<https://isshub.readthedocs.io>`_ and will contain everything, including the current document and the documented source code.
+**Every commit?**
+
+Yes, as will see later in this document, each commit will have a detailed description about the why and the how things are done, so in my opinion, it's like documentation about the process of development. This will be done via `PyDriller <https://pydriller.readthedocs.io>`_.

 Testing
 =======
@@ -289,6 +292,7 @@ To check if the last commit is valid, you can run::

 If you want to validate an other commit message than the last one, check `ci/check_commit_message.py -h`

+The commits are so important to me that they will be available in the "Internals" part of the documentation in a easily browsable way.

 ''''''
 Coding

style(git): Force format of git commit messages

Commit
Hash

4467a1f65e3ad02747eb4f433e3d7b197e598aec

Date

2019-06-03 13:54:59 +0200

Type

Modified

Stats

+43 -0

@@ -247,6 +247,49 @@ I *may* use TDD (`Test-Driven Development <https://en.wikipedia.org/wiki/Test-dr
 Git
 ===

+Commits are as much important as code. They hold the whole history of the project and commits can be used to know why things were done a certain way.
+
+So I want my commits to be very descriptive. So I'll follow a specification, based on `conventional commits <https://www.conventionalcommits.org>`_, at least for the title of the commit. Please refer to this documentation to know more about the syntax. The accepted types are:
+
+- build
+- ci
+- chore
+- docs
+- feat
+- fix
+- perf
+- refactor
+- revert
+- style
+- tests
+
+The description will be written in restructured text (like all the documentation in this project), with 3 mandatory sections:
+
+Abstract
+  A short description of the issue being addressed.
+
+Motivation
+  Describe why particular design decisions were made.
+
+Rationale
+  Describe why particular design decisions were made.
+
+This is heavily inspired by the `PEP suggested sections <https://www.python.org/dev/peps/pep-0012/#suggested-sections>`_, and other sections can be added from the list in pep 0012, but the three ones above are mandatory, in this order.
+
+This will also be checked by the CI for every commits.
+
+The repository provides a template in `.gitmessage` to use for new commits. To instruct git to use it, run::
+
+    git config commit.template .gitmessage
+
+
+To check if the last commit is valid, you can run::
+
+    make check-commit
+
+If you want to validate an other commit message than the last one, check `ci/check_commit_message.py -h`
+
+
 ''''''
 Coding
 ''''''

style: Add mypy for better code quality

Commit
Hash

141b284a4c9579ccaf65b84b68964385a0c7f469

Date

2019-05-27 17:14:12 +0200

Type

Modified

Stats

+4 -0

@@ -218,6 +218,10 @@ For code documentation, I enforce docstrings in all modules, classes, and functi

 The checks are enforced by `flake8-docstrings`_ for basic docstring presentation, and by `pylint.extensions.docparams`_ for content.

+I'll try to use `python typing <https://docs.python.org/3/library/typing.html>`_ while avoiding making things too much complicated. So expect some `# type: ignore` comments here and there, notably on decorators.
+
+The types will be checked by `mypy`_.
+
 So, code documentation is important (take that, Django). But it is clearly not enough.

 We need to document the install process and how to run the application, how to participate and use all the tools, how things works, from a developer point of view and from a user point of view, etc, etc.

style: Add black and isort to ensure code quality

Commit
Hash

2de7ffd18c5651d3361139cca60129dbf3ff184e

Date

2019-05-27 17:14:12 +0200

Type

Modified

Stats

+37 -2

@@ -130,6 +130,35 @@ Linting

 To enforce coding style in python, we'll use:

+`black <https://black.readthedocs.io/en/stable/>`_
+  Black is the "uncompromising code formatter"
+
+  Used with default configuration.
+
+  To check::
+
+    make check-black
+
+  To apply::
+
+    make black
+
+
+`isort <https://isort.readthedocs.io/>`_
+  isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections
+
+  Used with special configuration.
+
+  To check::
+
+    make check-isort
+
+  To apply::
+
+    make isort
+
+But we still use lint checkers:
+
 `pylint <https://docs.pylint.org/>`_
   Pylint is a tool that checks for errors in Python code, tries to enforce a coding standard and looks for code smells.

@@ -170,9 +199,15 @@ To enforce coding style in python, we'll use:

     make flake8

-Other related `make` command:
+Yes, it's a lot. My IDE is configured to run isort + black on every save. So pylint and flake8 should report very few things, and when they does, it will mainly be about code badly written.
+
+Other related `make` commands:
+
+- Run isort and black::
+
+    make pretty

-- Run all lint checkers (pylint, flake8)::
+- Run all lint checkers (isort, black, pylint, flake8 and mypy)::

     make lint

style: Add flake8 and pylint to ensure code quality

Commit
Hash

4458a00cdd0c52cfbc504d9352a4f38d569c5986

Date

2019-05-27 17:14:11 +0200

Type

Modified

Stats

+54 -0

@@ -128,9 +128,63 @@ All tools are incorporated in a `Makefile`, so it's easier to run commands. Tool
 Linting
 =======

+To enforce coding style in python, we'll use:
+
+`pylint <https://docs.pylint.org/>`_
+  Pylint is a tool that checks for errors in Python code, tries to enforce a coding standard and looks for code smells.
+
+  With some code specifically ignored, and also with this plugin:
+
+  `pylint.extensions.docparams <http://pylint.pycqa.org/en/stable/technical_reference/extensions.html#parameter-documentation-checker>`_
+    If you document the parameters of your functions, methods and constructors and their types systematically in your code this optional component might be useful for you.
+
+    Using configuration to enforce complete docstrings, using NumPy style.
+
+  To run `pylint`::
+
+    make pylint
+
+`flake8 <http://flake8.pycqa.org>`_
+  Flake8: Your Tool For Style Guide Enforcement
+
+  A wrapper around `PyFlakes <https://pypi.org/project/pyflakes/>`_, `pycodestyle <https://pypi.org/project/pycodestyle/>`_ (formerly called pep8), `McCabe <https://pypi.org/project/mccabe/>`_.
+
+  With these plugins;
+
+  `flake8-bugbear <https://pypi.org/project/flake8-bugbear/>`_
+    A plugin for Flake8 finding likely bugs and design problems in your program
+
+  `flake8-comprehensions <https://pypi.org/project/flake8-comprehensions/>`_
+    A flake8 plugin that helps you write better list/set/dict comprehensions.
+
+  `flake8-docstrings <https://pypi.org/project/flake8-docstrings/>`_
+    A simple module that adds an extension for the fantastic `pydocstyle <http://www.pydocstyle.org>`_ tool to flake8.
+
+  `flake8-imports <https://pypi.org/project/flake8-imports/>`_
+    Flake8 extension to run isort check over the source files.
+
+  `flake8-mypy <https://pypi.org/project/flake8-mypy/>`_
+    A plugin for Flake8 integrating `mypy <http://mypy-lang.org/>`_.
+
+  To run `flake8`::
+
+    make flake8
+
+Other related `make` command:
+
+- Run all lint checkers (pylint, flake8)::
+
+    make lint
+
 Documentation
 =============

+For code documentation, I enforce docstrings in all modules, classes, and functions/methods, using `NumPy style documentation <https://numpydoc.readthedocs.io>`_, using python typing "types" to define the types of parameters and return values.
+
+The checks are enforced by `flake8-docstrings`_ for basic docstring presentation, and by `pylint.extensions.docparams`_ for content.
+
+So, code documentation is important (take that, Django). But it is clearly not enough.
+
 We need to document the install process and how to run the application, how to participate and use all the tools, how things works, from a developer point of view and from a user point of view, etc, etc.

 All of this will be done via `sphinx <http://www.sphinx-doc.org>`_ and the documentation will be hosted on `ReadTheDocs <https://readthedocs.org>`_.

tests: Setup testing tools with pytest

Commit
Hash

2342faaf808c9d6c1baf00f4558e9bde62bfee3c

Date

2019-05-27 17:14:11 +0200

Type

Modified

Stats

+6 -0

@@ -145,6 +145,12 @@ The documentation will be available at `<https://isshub.readthedocs.io>`_ and wi
 Testing
 =======

+For tests I won't use unittest (and so not the Django test subclasses), but `pytest <https://docs.pytest.org/>`_
+
+And I want to do things a little bit differently that we are used too.
+
+I *may* use TDD (`Test-Driven Development <https://en.wikipedia.org/wiki/Test-driven_development>`_), but it's not sure yet, as I'm really not used to it. Will see.
+
 Git
 ===

docs: Documentation generation

Commit
Hash

91e6919e3713e0ac8945b3be8ce0140d7cb933ed

Date

2019-05-27 17:14:11 +0200

Type

Modified

Stats

+11 -0

@@ -131,6 +131,17 @@ Linting
 Documentation
 =============

+We need to document the install process and how to run the application, how to participate and use all the tools, how things works, from a developer point of view and from a user point of view, etc, etc.
+
+All of this will be done via `sphinx <http://www.sphinx-doc.org>`_ and the documentation will be hosted on `ReadTheDocs <https://readthedocs.org>`_.
+
+To build the documentation locally, simply run::
+
+  make docs
+
+
+The documentation will be available at `<https://isshub.readthedocs.io>`_ and will contain everything, including the current document and the documented source code.
+
 Testing
 =======

chore: Base of Isshub project

Commit
Hash

663f485247adbd4df9b50dec328b6607887e0689

Date

2019-05-27 17:14:11 +0200

Type

Added

Stats

+152 -0

@@ -0,0 +1,152 @@
+=============================================
+IssHub : Your essential Git.Hub.Lab companion
+=============================================
+
+
+Welcome to the repository where `IssHub <https://isshub.io>`_ v2 is developed.
+
+--------
+Abstract
+--------
+
+IssHub is an "ISSues Hub", where you can manage your issues (and code requests, notifications...) from code hosting platforms like Github and Gitlab, in one place, with a common interface and advanced tools.
+
+This is the repository of the second version, that is developed in a totally different way that the previous one: progressive, clean and in the open.
+
+----------
+Motivation
+----------
+
+The first version was developed starting on a "Proof of concept" and evolved over several years without a  clear vision on what was the goal, and no proper code architecture.
+
+When `Joachim Jablon <https://github.com/ewjoachim>`_ and I prepared our `talk fo the Djangocon Europe 2019 in Copenhagen, "Maintaining a Django codebase after 10k commits" <https://www.youtube.com/watch?v=_DIlE-yc9ZQ&t=724s>`_, I "saw the light" and wanted to do a little experiment around all we talked about.
+
+In the few months prior to the conference, as a planed sponsor, I worked a lot in IssHub to have it ready, bug-free (ahem) and mainly the biggest new feature since I started to work on this project in 2013: support for Gitlab in addition to Github.
+
+It was a real pain as I encountered all the pain points we tried to solve in our talk
+
+Third parties
+    Over 6 years, Django evolved a lot, and a lot of third parties were abandoned. Upgrading was very difficult. Proof: IssHub v1 is still on Python 2.
+
+Code architecture
+    The original proof of concept was to simply be able to organize issues with labels. So, as a POC, it was normal to follow Github on how to model things. But Gitlab, does things in a very different way and I had to make it fit the Github model.
+
+    So there was no clear separation (and even no separation at all) between the "domain", and all the rest of the application.
+
+    And finally the logic was everywhere: in the models, in the managers, in the views, in the templates.... Exactly what you want to avoid to maintain - and evolve - a big project.
+
+Tests
+    I won't speak about tests in IssHub v1: I gave up on many parts, because of the big bowl of spaghetti I had.
+
+So after our talk, instead of a little experiment about what we learnt in the process, I asked myself: why not starting up IssHub again, but this time doing it properly, and in the open, to force myself to do the things correctly.
+
+And it could also be a good way for others to see what I, as a 43 years old senior developer with half of my life as a paid developer, think is **a** (and not **the**) good way of developing a "big project"
+
+
+---------
+Rationale
+---------
+
+The main concepts that are used on this project:
+
+- coding in the open
+- developer friendly
+- future friendly
+- clear separation of concerns
+
+''''''''''''''''''
+Coding in the open
+''''''''''''''''''
+
+The main reason for the code of IssHub v1 to be "closed source" is because I'm not proud of it. It is really far from everything I try to transmit at work: quality is important, if not the most important.
+
+By doing this in the open, it will force me to do things well.
+
+It will also be for me a good resource to provide when looking for new freelancer missions.
+
+And, I hope, it can become a reference for everything I do elsewhere, from my own pet projects, to other "big projects" I may create in the future, or to simply pick ideas, code snippets, etc. when working for someone else.
+
+And finally, having it in the open allow other people to participate in many ways (reporting bugs is a good start)
+
+'''''''''''''''''''''''''''''
+Developer and future friendly
+'''''''''''''''''''''''''''''
+
+  “Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live”
+
+  -- John F. Woods
+
+aka: future you
+
+Nobody knows the future. A project started alone after work can become a big company later. Or it can just be you in a few years having to deal with "just a quick fix" made by past you. Or you simply want to have other hands working with you.
+
+In all these cases, you want your code to be clean. You don't want to fight to have great code readability. You don't want to have a fix break totally unrelated things.
+
+For this you want:
+
+- code linting
+- tests
+- documentation
+
+This will be one on the roots of this new rewrite of IssHub.
+
+''''''''''''''''''''''''''''
+Clear separation of concerns
+''''''''''''''''''''''''''''
+
+Having concerns separated allow better testing: each part can be unit tested, and the "glue" can be tested in integration mode.
+
+Updates are also easier because each part does one thing and does it well.
+
+The first thing we do is to do `Domain Driven Development <https://en.wikipedia.org/wiki/Domain-driven_design>`_: instead of mixing everything everywhere, domain logic will be apart from the rest. Considering Django as a third party app and not the center of the project, like it's very often the case.
+
+On the "domain", we'll delimit some "bounded context, for example the data we manage from the repositories, the local interaction between logged in users and these data, payment/subscriptions...
+
+So the domain will be a layer of our architecture. But it's not enough to make an application.
+
+We'll need a layer to handle the persistence, one to manage the synchronization between us and the remote sources (Github, Gitlab...), another to display things to the user.
+
+The domain is in the middle of all of these layers. It means that sync and front layers only handle data from the domain, not from the django ORM, which is only used as the persistence layer.
+
+We then won't be able to use some powerful features of Django, ie all the parts that link the orm to the rest of Django: no `ModelForm`, no `UpdateView`... but we can still use `Form` and `ModelFormMixin`, using our domain to pass data to Django, as "pure python objects", validate the data...
+
+It's a hard choice to make but for me, the separation of concerns, for a project of this size, is more important than the benefits of using Django as the ruler of everything.
+
+
+--------------
+Specifications
+--------------
+
+This part will evolve a lot during the development but there are still some things I know for sure.
+
+'''''
+Tools
+'''''
+
+All tools are incorporated in a `Makefile`, so it's easier to run commands. Tools listed below all have at least one `make` command to run them.
+
+Linting
+=======
+
+Documentation
+=============
+
+Testing
+=======
+
+Git
+===
+
+''''''
+Coding
+''''''
+
+Domain
+======
+
+Fetching
+========
+
+Frontend
+========
+