- Jun 05, 2020
-
-
Georges Racinet authored
We don't need to repeat the Heptapod instance in all log messages, nor the password
-
Georges Racinet authored
These preparations (signed-in webdriver, personal access token) are only done once per session, but if the session is comprised of only a few tests, they can represent a good chunk of the run time. For example, launching the only current test in test_wikis.py, they represent 45% of the total time (on a warmed up GDK Heptapod based on GitLab 12.10).
-
- Jun 03, 2020
-
-
Georges Racinet authored
It is for now only used in Docker mode, that's why the obviously lack of command was there.
-
Georges Racinet authored
This is more direct than `webdriver_retrieve()`, with the usual benefits of API methods: performance and stability In this particular case, we were relying on the full session cookie to be accepted in the API, which is not guaranteed to be acceptable in the long run. At this point `webdriver_retrieve()` is not called any more, but we're not removing it right away.
-
Georges Racinet authored
The `wait_availability` kwarg is replaced by the separate `wait_hg_availability()` method, so that it can also be used with other project retrieval methods that we're going to add.
-
Georges Racinet authored
It's a good thing not to rely on webdriver methods for this, as it is faster and more stable.
-
Georges Racinet authored
Keeping logs about tests claiming thread monopoly at the INFO level, but ordinary tests signaling can be pushed down to DEBUG.
-
Georges Racinet authored
By implementing the new primitives, we can now leverage the base implementation of `backup_create()` and `backup_restore()` (which were largely derived from the first implementation in `DockerHeptapod` anyway)
-
Georges Racinet authored
All they need are services management and rake capability, previously only available for Docker installations.
-
Georges Racinet authored
The `--heptapod-gdk` option declares the test to be launched in GDK context, leading to the new `GdkHeptapod` class to be instantiated, with the GDK root dir specified with `--heptapod-gdk-root`. The new `needs.services` decorator will allow to declare tests that need services (and rake) management, hence will be satisfied more broadly than the `docker` marker. Notably these tests won't be skipped in GDK context.
-
Georges Racinet authored
Just for readability
-
Georges Racinet authored
The only caller at the time being is its sibling method `apply_hashed_storage_setting()`, that will hence become available for all concrete subclasses that implement `ctl_services()`.
-
Georges Racinet authored
It derives from SourceHeptapod, only adding service management and rake capabilities, hence being able to support backup tests and other tests that require service management.
-
Georges Racinet authored
Instead of just declaring `backup_create()` and `backup_restore()`, we implement them generically, relying on a new set of primitives to be implemented in subclasses: - `ctl_services()`: service management - `RAILS_SERVICES`: class attribute listing the Rails app services (web and background). These will be different in the Docker and GDK cases. - `rake()` - `remove_all_backups()`
-
- Jun 02, 2020
-
-
Georges Racinet authored
Closes #9
-
- May 29, 2020
-
-
Georges Racinet authored
At this stage we only want to prevent unwanted publication. See heptapod#284 for future actual support.
-
- May 27, 2020
-
-
Georges Racinet authored
We simply build up on the test for fast-forward refusal, by performing the rebase after the refusal and proceeding up to the full merge.
-
Georges Racinet authored
It will wait automatically for the rebase to be finished and assert its success. We could later on add options to test bad rebases if we need to.
-
- May 09, 2020
-
-
Georges Racinet authored
This is to reproduce heptapod#243 We also add a counter test that only deploy tokens for the right project are accepted.
-
Georges Racinet authored
The API method won't work for a while, wrote them before noticing the version information in online documentation. So we had to make a lengthy webdriver_create_deploy_token, hoping the page structure won't change too much before we can rely on the API methods.
-
- May 24, 2020
-
-
Georges Racinet authored
Overlooked in merge Backed out changeset b1810ba7eb2b
-
- May 22, 2020
-
-
Georges Racinet authored
This will be necessary for tests about content that's not encoded with the current default encoding. Because of this, the output might not be utf-8 either. For now, just avoiding an error is good enough.
-
- May 23, 2020
-
-
Georges Racinet authored
-
- May 21, 2020
-
-
Georges Racinet authored
-
- May 14, 2020
-
-
Georges Racinet authored
-
Georges Racinet authored
-
- May 19, 2020
-
-
Georges Racinet authored
First test is about switching from a topic to the real branch, second checks that everything goes fine in a push with plenty of topics and a named branch.
-
Georges Racinet authored
-
- May 18, 2020
-
-
Georges Racinet authored
This reproduces heptapod#260
-
Georges Racinet authored
That also will be useful for all tests involving the CI. In most of them we won't care about what the CI configuration says, we'll only need it to exist and be valid.
-
Georges Racinet authored
This is going to be a very recurring pattern.
-
- May 14, 2020
-
-
Georges Racinet authored
The scenarios that require a precise value for the hashed storage boolean are very useful, but they can for now only run in Docker context, which is quite late in our development nowadays. So we're adding a scenario that works on whatever the current storage strategy currently is, like we already did for transfers.
-
Georges Racinet authored
Some callers want to pass a system user name, and we have to accept that for uniformity ('git' is been used as meaning "the default user", which is lame but that's another story)
-
- May 12, 2020
-
-
Georges Racinet authored
It will be a long while before Heptapod's web UI can support both Git and Mercurial, but starting to write tests with Git this will be useful to - reach the point where only the UI is lacking and avoid breaking Git support more - better understand some Gitlab aspects by direct comparison with the Git case At this point, HTTP transport for Git is not expected to work at all.
-
Georges Racinet authored
-
Georges Racinet authored
We'll start soon to write basic tests for Git support, currently SSH would be the only transport expected to work.
-
Georges Racinet authored
and there was no assertion for the intermediate GET
-
Georges Racinet authored
previously we didn't test on empty repositories (could have been broken by changes in Heptapod 0.13), nor did we test errors such as re-creation attempt.
-
Georges Racinet authored
These will be useful in `test_repo_files`, but also in many places, notably if VCS independence is seeked.
-
- May 11, 2020
-
-
Georges Racinet authored
More inspection of the behaviour in the Git case indicate that going through the creation endpoint again for an update is incorrect. The proper verb for update is PUT, but the URL is the same one, which is a bit surprising for the creation.
-