- Jan 07, 2020
-
-
Georges Racinet authored
-
- Jan 05, 2020
-
-
Georges Racinet authored
pull-force-topic command See merge request !2
-
- Dec 18, 2019
-
-
Georges Racinet authored
As the docstring explains, this will help us somewhat with uniformity or how user information is passed around.
-
- Dec 19, 2019
-
-
Georges Racinet authored
-
- Dec 16, 2019
-
-
Georges Racinet authored
-
- Dec 15, 2019
-
-
Georges Racinet authored
-
Georges Racinet authored
and this uncovers a funny phenomenon, that hook gives an infinite loop when running on local Mercurial repos. Most of the work of the git_sync hook is done indirectly by the fact that `hg-git` rewraps the `push command`, but this still would catch stupid mistakes in that glue code, and `py-heptadod` is now 100% covered.
-
Georges Racinet authored
We don't need `repositories-root` if we have a fixed value for `mirror-path`. This allows us to shift indentation a bit, and that shouldn't be dangerous because the `mirror_path()` function is now fully tested
-
Georges Racinet authored
That one may sound futile, but it's actually a good thing to now that these debugging things are reliable, when using them to investigate actual problems.
-
Georges Racinet authored
We don't support Python3 at the time being, we'll jump into Python3-only at some time in the (near) future. With this, we have full coverage of the wsgi module. Hence the tests will catch true problems, thanks to Py3 incompatibility between `bytes` and `str`. This is better than adding a `pragma: no cover`.
-
Georges Racinet authored
since this wsgi server is meant for service the wire protocol of repos over HTTP only, the utility is a bit dubious, but let's honour it anyway. Normally, `hgweb_mod` should do it as well, but I couldn't get it to see a different config value (seems to be unsettable by .hg/hgrc)
-
Georges Racinet authored
that means actually testing that it's properly passed to `hgweb_mod`, the one doing the job
-
Georges Racinet authored
This actually finishes ec9c7408d7df, in which I forgot to use the value. That was wrong, yet didn't break anything in practice, because the hardcoded value is still the only useful one outside of tests. Doing the conditional instantiation in a class method allows to test it independently without resorting to ugly stuff such as module reload.
-
Georges Racinet authored
-
Georges Racinet authored
-
Georges Racinet authored
This will be help bootsrapping developer environments. Apparently it's now deprecated to run tests with `setup.py test`, so we don't bother listing it in setup.py.
-
- Dec 14, 2019
-
-
Georges Racinet authored
This is about as much we can test without using a WSGI request object (fake or real)
-
Georges Racinet authored
For now this is testing of current behaviour, keeping note of a potential security tightening (not a hole because HgServe is always invoked from localhost with the Heptapod headers, but it would be better to stay secure if it accidentally were to respond on public interfaces)
-
Georges Racinet authored
this will be more direct for unit tests. Also we did not need to store its path. More tests will demonstrate that.
-
Georges Racinet authored
we now have a proper Mercurial extension and it declares that configuration item
-
Georges Racinet authored
This depends onto heptapod-docker!5, which sets said environment variable. This still allows us to run in a gunicorn one-liner without any further wrapper, while being less hardcoded and unit-testable, as the first test demonstrates. It would be even nicer to instantiate `HgServe` without any configuration file (relying e.g. on baseui to pass configuration), this could be done later.
-
- Dec 12, 2019
-
-
Georges Racinet authored
found these by redoing a pull-force-topic after a first one (with an incomplete strip leading to the error)
-
Georges Racinet authored
This is meant to import Pull Requests from external systems, such as Bitbucket. We don't provide a way to also change the branch in this first implementation (users can do it afterwards if they want to). But if it turns out we get lots of MRs wrongly targetted because of this, we'll do it. The implementation is a lower version of doing hg `incoming --bundle`, followed by `hg log` on the bundle to know the contained changesets, and then `hg unbundle` and `hg topic TOPIC` Being lower level than the CLI, we can do the whole in one single transaction, which will be important for Heptapod (single inner Git push) We decided to stay quite close to the CLI surface though, hence we still need to link the bundle file on the filesystem, and reopen it aftewards. We could have instead cherry-picked from the `exchange.pull`, but that would have been awkward. If we turn out to have problems with real life cases with phases or obsmarkers, we could cherry-pick from `exchange.pull` instead, but that will be more complicated.
-
- Dec 13, 2019
-
-
Georges Racinet authored
-
- Dec 14, 2019
-
-
Georges Racinet authored
This gives a 100% coverage on this module for me
-
- Dec 13, 2019
-
-
Georges Racinet authored
in our cases, failures depend whether other extensions, such as evolve or hg-git are themselves ready for Mercurial default. Currently we do have a test in a topic that's broken because evolve 9.2.1 is not compatible with Mercurial default. We will of course change the build to use evolve default, but it's not guaranteed to work, and even so, that may break later on. We don't want to stall our development for this.
-
Georges Racinet authored
-
Georges Racinet authored
-
Georges Racinet authored
no need to run against all versions if linter rejects changes. This is mostly to play with GitLab CI, py-heptapod tests are currently fast enough that's not much of an issue.
-
Georges Racinet authored
and it makes sense to factorize a bit, mostly stuff that should be in the base image.
-
Georges Racinet authored
it will be useless to run that agains several Mercurial versions
-
Georges Racinet authored
Up to now, we've been testing with the system global one, which turns out to be Mercurial 5.2
-
- Dec 11, 2019
-
-
Georges Racinet authored
This had to be rewritten after the hook itself has been moved from hg-git to here. It's a good occasion to do it with our test helpers. We now have 100% coverage for this hooks submodule
-
- Dec 03, 2019
-
-
Georges Racinet authored
This is so we don't forget to convert it to the appropriate testing system.
-
- Dec 13, 2019
-
-
Georges Racinet authored
It's probably what we always want if we care about the return, will maybe become the default later. Tested by using it in test_write_commit_random()
-
Georges Racinet authored
That should help users focus a bit more on topology, at a negligible price in speed. The content really has to be random, to make sure there is something to commit.
-
- Dec 11, 2019
-
-
Georges Racinet authored
It seems that the high level command in the `commands` module is the one taking care of locks etc, so maybe it's better to go through it. We rewrap it in the way that's more usable than being forced to provide a kwarg for each phase, hence the name `set_phase()`
-
Georges Racinet authored
-
Georges Racinet authored
-
Georges Racinet authored
and demonstrating them in tests. Checked also that hgrc is properly read in LocalRepoWrapper.load()
-