commit | 8c35b8d5459941b0c03338ff1231a2bcc0ff14e9 | [log] [tgz] |
---|---|---|
author | Han-Wen Nienhuys <hanwen@google.com> | Tue Apr 14 15:44:03 2020 +0200 |
committer | Han-Wen Nienhuys <hanwen@google.com> | Wed Apr 15 13:31:31 2020 +0200 |
tree | 37bec224c4366b11fe9ce8b9780942710c80dbb0 | |
parent | 45778438a5dffd601d659df42fc2fe000fcb06e8 [diff] |
Add unittest for checkCommitMessage Change-Id: Ib4b26c2a7a74a5a208ae7c5c4552db6c3594b187
This is a style verifier intended to be used with the Gerrit checks plugin.
go install github.com/bazelbuild/buildtools/buildifier curl -o google-java-format.jar https://github.com/google/google-java-format/releases/download/google-java-format-1.7/google-java-format-1.7-all-deps.jar
Obtain an HTTP password, and put it in testsite-auth
. The format is username:secret
.
Register a checker
go run ./cmd/checker -auth_file=testsite-auth --gerrit http://localhost:8080 \ --language go --repo gerrit --register
go run ./cmd/checker -auth_file=testsite-auth --gerrit http://localhost:8080 \ --list
go run ./cmd/checker -auth_file=testsite-auth --gerrit http://localhost:8080
For simplicity of deployment, the gerrit-linter checker is stateless. All the necessary data is encoded in the checker UUID.
handle file types (symlink) and deletions
more formatters: clang-format, typescript, jsformat, ... ?
isolate each formatter to run with a separate gvisor/docker container.
tests: the only way to test this reliably is to spin up a gerrit server, and create changes against the server.
Update the list of checkers periodically.
This currently runs the formatters without sandboxing. Critical bugs (heap overflow, buffer overflow) in formatters can be escalated to obtain the OAuth2 token used for authentication.
The currently supported formatters are written in Java and Go, so this should not be an issue.
The following example shows how to build a Docker image hosted on GCP, in the project api-project-164060093628
.
VERSION=$(date --iso-8601=minutes | tr -d ':' | tr '[A-Z]' '[a-z]'| sed \ 's|\+.*$||')-$(git rev-parse --short HEAD) NAME=gcr.io/api-project-164060093628/gerrit-linter:${VERSION} docker build -t ${NAME} -f Dockerfile . docker push ${NAME}
To deploy onto a GCP VM, configure the VM to have scope https://www.googleapis.com/auth/gerritcodereview
:
cloud beta compute instances set-scopes VM-NAME --scopes=https://www.googleapis.com/auth/gerritcodereview
This is not an official Google product