Implementing a repo-hook command to provide standardized repo hook script functionality for RBTools

Review Request #11492 — Created Feb. 26, 2021 and updated — Latest diff uploaded

Information

RBTools
master

Reviewers

High-Level Description

This feature is meant to give some hook script functionality for RBTools through a new command, repo-hook. Specifically, the repo-hook command allows users to call RBTools based pre-receive and post-receive hook script functionality from their own hook scripts.

The pre-receive functionality is focused on checking commits in the incoming push for review request IDs, and possibly cancelling the push if criteria are not met. This criteria depends on whether certain options are activated or left default (--dont-require-review-requests and --allow-unapproved-push). By default, the push will be cancelled if there are any commits without review requests, or if any review requests are not approved.

The post-receive functionality is based on closing any review requests referenced in commit messages in the current push. In this instance, a push cannot be cancelled, and warnings will be raised if there are commits with no review requests.

Initial Plans

Initial plans for this command were to have hook script functionality for multiple SCM systems, specifically starting with Git, Mercurial, and Subversion. At this point, only functionality for Git has been implemented, with skeleton code and empty classes being implemented for SVN and Mercurial.

How the Code Works Together

This functionality is performed by a RepoHook Command class. This class will perform all the SCM agnostic logic of the hook scripts. From this class, depending on the --repo-type option specified (again, currently only Git is an option), a SCMRepositoryHooks subclass representing the repository in --repo-type will be called to provide RepoHook with the information it needs in order to work, while performing all SCM specific code within it's own class.

Next Steps

Next steps would involve getting code reviews to confirm that the Git and RepoHook logic are bug-free, as well as implementing the SVN and Mercurial logic in their corresponding classes to allow more variety of SCMs.

Additionally, outside of initial scope, other hook types could be implemented. One that would prove useful is pre-commit functionality to ensure that a review request ID is included in the commit message. This would help avoid issues with using the pre-receive functionality, as the only issue that could arise would be that a review request is not approved.

Have done local testing with a local Git repository on my machine containing pre-receive and post-receive hook scripts that call the rbt repo-hook command to ensure that the code works.

Have created a suite of tests to test various options and how they would cause the RepoHook command to react. This includes testing all variations of --repo-type and --hook-type (allowed, un-implemented, no variant selected, and default value), default and specified server options, regex flag options, and both variations of all other toggle-able options.

Diff Revision 9 (Latest)

orig
1
2
3
4
5
6
7
8
9

Commits

First Last Summary ID Author
Adding in-progress files.
Created repo-hook.py, which implements the most basic of functionality of a command, on which to build. This command also has had the code from rbtools/hook/common.py inserted in, though not much functionality is implemented Created scmrepositoryhooks.py as a base class for all the remaining repository classes. Include basic methods which are just passed over for implementation in the subclasses Created the gitrepositoryhooks.py sub-class, which inherits from scmrepositoryhooks.py. No implementation inside yet. Altered setup.py to include repo-hook as a command to be part of the rbtools commands.
71f6f67374c30350d242432a46116d48618162e8 Seth Karstad
Added new options to repo-hook command based on the functionality in contrib\...
9aea6c7c2b2c98ffa96bf0d67e8ab75ae06706fb Seth Karstad
Fixed a few flake8 failure, and added in standard regex flag from contrib\too...
ba3b42ca15f118cc032b924a791cb9683df93414 Seth Karstad
Brought functionality from git.py over to the GitRepositoryHooks class. This ...
f72a4ad674c91133e896a9b70e4b70b2e183f04c Seth Karstad
Changed the wording and working of a few commands, so that the default is sta...
43358669072fd7988138c5f471f56eb6198324d3 Seth Karstad
This commit was an error fixing commit. Fixed some missed commas in the Optio...
52269579029e65a75628683428951bff3fe37f18 Seth Karstad
Added option for specifying the type of repository repository being used (--r...
Changed --type to be --hook-type to reduce confusion with --repo-type Moved execute() and get_review_request_id() from repo_hook.py to scmrepositoryhooks.py, as they were not used in repo_hook.py, and only needed in SCMRepositoryHooks and its subclasses. Other minor fixes, such as rearranging the imports and putting missing imports that were not brought over.
63f7658e2b9031c546a4b520fc64da6a2c703e72 Seth Karstad
Minor change, adding self variable to a class method inside SECRepositoryHook...
Functionality brought from rbtools/hooks/common.py to rbtools/commands/repo_hook.py used to be outside the RepoHook class. These methods were brought into the RepoHook class to keep things clean.
55e914ec883c1fe8ae64d6737993396b298dad8c Seth Karstad
Added the common lines between /contrib/tools/git-hook-set-submitted and /con...
85cb9226317a9d8d009789e76f0ebe8bded52396 Seth Karstad
Removed unnecessary debug code from RepoHook class and its helper classes, an...
f12f498b5ff2e8b59f2830060213d51d2bdac974 Seth Karstad
Brought logic for the pre-receive and post-receive functionality from /contri...
Also implemented minor formatting fixes, as well as implementing Warning messages if the tool is given an unsupported SCM tool as a --repo-type option (currently Git is the only SCM supported
e1127d83acee2368c722df258c4b85171282fbe4 Seth Karstad
Went through all flake8 errors that occured throughout the first 3 posts to R...
and fixed them
005d94249b6f98b485f506ac8e949d81d7a841dd Seth Karstad
More flake8 issue fixing.
f0903e5262699bf86eb5f3becaf85bf4dd8495b3 Seth Karstad
Review Request #11492
Removed 'continue on next line' characters from unnecessary locations in repo-hook command. Corrected lines being too long in some files.
46d45e305a396de7e67664529e2fea9dfc4e6897 Seth Karstad
Altered how repo_hook command accesses SCMRepositoryHooks subclasses. Now, re...
545a2942acc05c5bed4d1d02f46d7bdc0d7109ac Seth Karstad
Fixed all current flake8 errors via local version of flake8
873fa7a5ff642af1291ebe1c12131d76c092e64b Seth Karstad
Minor changes, added sys.exit(1) for bad result in order for pre-receive hook...
b310e24a3c5cf7afb0a7f0c98cb97e83ff70b3dd Seth Karstad
Reorganized how rbtools/command/repo-hook.py and rbtools/clients/scmrepositor...
Changed all instances of post_commit() to post_receive() in SCMRepositoryHooks class and it's subclasses. This was a typo, as post-commit hooks is not something currently planned to the repo-hook command. Other minor refactoring of the RepoHook class, such as moving bulky if/else statements for determining the SCMRepositoryHook subclass to be grabbed into a method of its own to clean up main(). As well, moved some code that would not neccesarily be used for hooks besides post-receive and pre-receive into their respective methods, instead of keeping them in main(). Also finished testing the pre-receive hook, before and after the refactoring. Review Request #11492
72eb9f5082f65cc8fba59cc346ed121964558f74 Seth Karstad
Minor tweaks to some method calls for the post-receive hook side of repo-hook...
03a5a7ea1187a0ffbbae88489714fbf2f5305e15 Seth Karstad
Added tests for RepoHook command, including checking proper fetching of GitRe...
Removed all references to pre-commit hooks withing the RepoHook command, as this is not a currently planned functionality. Will be removing pre-commit references from everywhere else in the next commit Review Request #11492
48e9df0bdda435f1312dbdfcc97092cecf1f638d Seth Karstad
Added tests for valid --hook-types, the default hook_type, default repo_type,...
Removed all (empty) methods for pre-receive in the SCMRepositoryHooks class and it's subclasses. Review Request #11492
19b303bb3ef1f48136ed87fcdedf812a6ebaa27f Seth Karstad
Added documentation where needed, and fixed bad/non-compliant documentation
Changed all instances of sys.exit(x) to instead by raisings of HookError, and changed testing to correspond to this change Changed REGEX_FLAGS to be regex_flags in rbtools/commands/repo_hook.py, as it is not a constant Removed all debugging print() statements from rbtools/commands/repo_hook.py. Review request#11492
761842443c320f0f4decd5be3cb71253fe797c2b Seth Karstad
Fixed a minor flake8 error in rbtools/clients/scmrepositoryhooks.py. Review r...
b6b0454774fc12048c77f9efaf16ab7371653e12 Seth Karstad
setup.py
rbtools/clients/git.py
rbtools/clients/gitrepositoryhooks.py
rbtools/clients/mercurial.py
rbtools/clients/mercurialrepositoryhooks.py
rbtools/clients/scmrepositoryhooks.py
rbtools/clients/svn.py
rbtools/clients/svnrepositoryhooks.py
rbtools/commands/repo_hook.py
rbtools/commands/tests/test_repo_hook.py
Loading...