Red-DiscordBot/redbot/pytest/downloader_testrepo.export
jack1142 e2c8b11008 [V3 Downloader] Revision tracking (#2571)
* feat(downloader): Install cog from specific commit in repo (initial commit)

- Repo and Installable have commit property now
- New class inheriting from Installable -
InstalledCog (old one from converters.py removed)
- New Repo.checkout() method, which is also async ctx manager
ref #2527

* fix(downloader): Keep information about repo's branch in config

- This is needed to make sure that repo can go back from detached state in some rare unexpected
cases
- current branch is determined by `git symbolic-ref` now as this command errors for detached
HEAD

* feat(downloader): Update repo without cogs, update single cog

The most important part of issue #2527 has been added here
- `[p]repo update` command added
- new conf format - nested dictionary repo_name->cog_name->cog_json
  installed libraries are now kept in conf too
  - `InstalledCog` renamed to `InstalledModule` - installed libraries use this class
  - `Downloader.installed_libraries()` and `Downloader.installed_modules()` added
  - `Downloader._add_to_installed()` and `Downloader._remove_from_installed()`
    now accept list of modules, of both cogs and libraries
- `[p]cog install` tells about fails of copying cog and installing shared libraries
- `[p]cog update` will truly update only chosen cogs (if provided) or cogs that need update
  - pinned cogs aren't checked
  - before update, repos are updated
  - to determine if update is needed `Repo.get_modified_modules()` is used
- `[p]cog pin` and `[p]cog unpin` commands for pinning/unpinning cogs added
- `Repo.checkout()` allows to choose ctx manager exit's checkout revision
- `Repo.install_cog()` returns `InstalledModule` now and raises CopyingError (maybe breaking?)
- `Repo.install_libraries()` returns 2-tuple of installed and failed libraries (maybe breaking?)
- `RepoManager.get_all_cogs()` added, which returns cogs from all repos
- `RepoManager.repos` property added, which contains tuple of `Repo`

* test(downloader): Repo.current_branch() throws an exception, when branch can't be determined

* style(downloader): rename _add_to_installed to _save_to_installed

This method is used for both adding and updating existing modules in Config

* refactor(downloader): add ctx.typing() for few commands

`[p]cog install` is nested hell, can't wait for moving install logic to separate method

* fix(downloader): refactor and fix `set` usage

* perf(downloader): update commits for ALL checked modules to omit diffs next time

This will also disable running git diff for cogs that have the same commit as the latest one

* style(downloader): few style improvements

- use of mutable object in method definition
- make Repo._get_full_sha1() public method
- too long
line
- don't use len to check if sequence is empty

* feat(downloader): add `[p]cog updateallfromrepos` and `[p]cog updatetoversion` commands

- moved cog update logic into `Downloader._cog_update_logic()` (lack of better name)
  - splitted
whole cog update process into smaller methods
  - might still need some improvements
- added new
methods to `Repo` class:
  - `is_on_branch()` to check if repo is currently checked out to branch

- `is_ancestor()` to check if one commit is ancestor of the other
- fix for
`Downloader._available_updates()` behaviour
broken by commit
5755ab08ba67556b3863e907c6f44d80f4f13d88

* feat(downloader): try to find last commit where module is still present

Enhancements:
- `Installable` now has `repo` attribute containing repo object or `None` if repo is
missing
- `Downloader._install_cogs()` and `Downloader._reinstall_libraries()` are able to install
modules from different commits of repo
- `Repo.checkout()` as ctx manager will now exit to commit
which was active before checking out
- unification of `rev` and `hash` terms:
All function
parameters are explicitly called `hash`, if it can only be commit's full sha1 hash or `rev` if it
can be anything that names a commit object, see
[link](https://git-scm.com/docs/git-rev-parse#_specifying_revisions)
- new
`Repo.get_last_module_occurence()` method, which gets module's Installable from last commit in which
it still occurs

* docs(downloader): Add basic description for `InstalledModule`

* fix(downloader): cog ignored during updates if its commit was missing

After config format update, commit string is empty until update and when such cog was checked and it
wasn't available in repo anymore, it was ignored

* refactor(downloader): Installing cogs from specific rev will pin them

* perf(downloader): Don't checkout when current commit equals target hash

- changes to `Repo.checkout()`:
  - `exit_to_rev` is now keyword only argument
  - added
`force_checkout` to force checkout even if `Repo.commit` value is the same as target hash

* refactor(downloader): Repo._run() stderr is redirected to debug log now

- added two keyword arguments:
  - `valid_exit_codes` which specifies valid exit codes, used to
determine if stderr should be sent as debug or error level in logging
  - `debug_only` which
specifies if stderr can be sent only as debug level in logging

* style(downloader): stop using `set` as arg name in `_load_repos()`

* feat(downloader): pass multiple cogs to `[p]cog (un)pin`

* refactor(downloader): accept module name instead of instance, fix spelling

* style(downloader): few small style changes

* fix(downloader): add type annotations + fixes based on them

- fix wrong type annotations and add a lot of new ones
- add checks for `Installable.repo` being `None`
- fix wrong return type in `Downloader._install_requirements`
- show repo names correctly when updating all repos
- fix error when some requirement fails to install

BREAKING CHANGE:
- type of `Repo.available_modules` is now consistent (always `tuple`)

* tests: use same event loop policy as in Red's code

* enhance(downloader): fully handle ambiguous revisions

* build(deps): add pytest-mock dependency to tests extra

* fix(downloader): minor fixes

* feat(downloader): add tool for editing Downloader's test repo

This script aims to help update the human-readable version of repo
used for git integration tests in ``redbot/tests/downloader_testrepo.export``
by exporting/importing it in/from provided directory.

Note
----
Editing `downloader_git_test_repo.export` file manually is strongly discouraged,
especially editing any part of commit directives as that causes a change in the commit's hash.
Another problem devs could encounter when trying to manually edit that file
are editors that will use CRLF instead of LF for new line character(s) and therefore break it.

I also used `.gitattributes` to prevent autocrlf from breaking testrepo.

Also, if Git ever changes currently used SHA-1 to SHA-256 we will have to
update old hashes with new ones. But it's a small drawback,
when we can have human-readable version of repo.

Known limitations
-----------------
``git fast-export`` exports commits without GPG signs so this script disables it in repo's config.
This also means devs shouldn't use ``--gpg-sign`` flag in ``git commit`` within the test repo.

* tests(downloader): add git tests and test repo for them

Also added Markdown file that is even more clear than export file
on what the test repo contains.
This is manually created but can be automated on later date.

* test(downloader): add more tests related to RepoManager

These tests use expected output that is already guaranteed by git tests.

* chore(CODEOWNERS): add jack1142 to Downloader's folders

I know this doesn't actually give any benefit to people that don't have
write permission to the repo but I saw other big fella devs doing this,
so I think this might be advisable.

* enhance(downloader): allow easy schema updates in future

* enhance(downloader): more typing fixes, add comments for clarity

* feat(downloader): add python and bot version check to update process

follow-up on #2605, this commit fully fixes #1866

* chore(changelog): add towncrier entries

* fix(downloader): use `*args` instead of `commands.Greedy`

* fix(downloader): hot-reload issue - `InstallableType` now inherits from `IntEnum`

There's desync of `InstallableType` class types due to hot-reload
and `IntEnum` allows for equality check between different types

* enhance(downloader): ensure there's no cog with same name installed

should fix #2927

* fix(downloader): last few changes before marking as ready for review
2019-11-07 20:36:16 -05:00

135 lines
3.7 KiB
Plaintext

# THIS FILE SHOULDN'T BE EDITED MANUALLY. USE `edit_testrepo.py` TOOL TO UPDATE THE REPO.
blob
mark :1
original-oid cfd75093008a560c1f2a09e5068e0dd1517eaa1c
data 14
Sample file 1.
reset refs/heads/ambiguous_with_tag
commit refs/heads/ambiguous_with_tag
mark :2
original-oid c6f0e5ec04d99bdf8c6c78ff20d66d286eecb3ea
author Cog-Creators <cog-creators@example.org> 1571921830 +0200
committer Cog-Creators <cog-creators@example.org> 1571919491 +0200
data 27
Commit ambiguous with tag.
M 100644 :1 sample_file1.txt
reset refs/heads/ambiguous_1
commit refs/heads/ambiguous_1
mark :3
original-oid 95da0b576271cb5bee5f3e075074c03ee05fed05
author Cog-Creators <cog-creators@example.org> 1571777704 +0200
committer Cog-Creators <cog-creators@example.org> 1571777704 +0200
data 23
Ambiguous commit 16955
M 100644 :1 sample_file1.txt
reset refs/heads/ambiguous_2
commit refs/heads/ambiguous_2
mark :4
original-oid 95da0b57a416d9c8ce950554228d1fc195c30b43
author Cog-Creators <cog-creators@example.org> 1571777704 +0200
committer Cog-Creators <cog-creators@example.org> 1571777704 +0200
data 23
Ambiguous commit 44414
M 100644 :1 sample_file1.txt
blob
mark :5
original-oid f1a18139c84a82addbded8a7b5738c36fb02fce1
data 22
print("Hello world!")
blob
mark :6
original-oid 1abb7a2470722faee2175980ee202717b4158057
data 14
Sample file 2.
reset refs/tags/lightweight
commit refs/tags/lightweight
mark :7
original-oid c950fc05a540dd76b944719c2a3302da2e2f3090
author Cog-Creators <cog-creators@example.org> 1571776887 +0200
committer Cog-Creators <cog-creators@example.org> 1571777047 +0200
data 31
Initial commit, prepare files.
M 100644 :5 mycog/__init__.py
M 100644 :1 sample_file1.txt
M 100644 :6 sample_file2.txt
blob
mark :8
original-oid 10ec5813415b6d7c902eee95cc13dc38c6f50917
data 11
Added file.
blob
mark :9
original-oid 5ed17bf7914989db85f2e66045e62b35eed10f3b
data 42
def setup(bot):
print("Hello world!")
commit refs/tags/lightweight
mark :10
original-oid fb99eb7d2d5bed514efc98fe6686b368f8425745
author Cog-Creators <cog-creators@example.org> 1571777140 +0200
committer Cog-Creators <cog-creators@example.org> 1571777140 +0200
data 39
Add, modify, rename and remove a file.
from :7
M 100644 :8 added_file.txt
M 100644 :9 mycog/__init__.py
D sample_file1.txt
D sample_file2.txt
M 100644 :6 sample_file3.txt
commit refs/tags/annotated
mark :11
original-oid a7120330cc179396914e0d6af80cfa282adc124b
author Cog-Creators <cog-creators@example.org> 1571777209 +0200
committer Cog-Creators <cog-creators@example.org> 1571777209 +0200
data 14
Remove mycog.
from :10
D mycog/__init__.py
blob
mark :12
original-oid 1ba9a868ae2f65571c75681ec47d40595bea4882
data 14
Sample file 4.
commit refs/heads/master
mark :13
original-oid 2db662c1d341b1db7d225ccc1af4019ba5228c70
author Cog-Creators <cog-creators@example.org> 1571777704 +0200
committer Cog-Creators <cog-creators@example.org> 1571777704 +0200
data 32
One commit after mycog removal.
from :11
M 100644 :12 sample_file4.txt
reset refs/heads/dont_add_commits
commit refs/heads/dont_add_commits
mark :14
original-oid a0ccc2390883c85a361f5a90c72e1b07958939fa
author Cog-Creators <cog-creators@example.org> 1571777548 +0200
committer Cog-Creators <cog-creators@example.org> 1571777548 +0200
data 103
Don't edit this, this is used for tests for current commit, latest commit, full sha1 from branch name.
M 100644 :1 sample_file1.txt
tag annotated
from :11
original-oid 41f6cf3b58e774d2b3414ced3ee9f2541f1c682f
tagger Cog-Creators <cog-creators@example.org> 1571777367 +0200
data 15
Annotated tag.
tag ambiguous_tag_66387
from :2
original-oid c6f028f843389c850e2c20d8dd1f5fa498252764
tagger Cog-Creators <cog-creators@example.org> 1571919491 +0200
data 37
Annotated tag ambiguous with commit.