赞
踩
为了能够模拟开发人员和审核人员两个角色,需要有1台服务器模拟操作提交和审核
登陆linux服务器账户,并生成id_rsa.pub
Git配置一般存储的是name 和 email地址
这里的email地址需要和gerrit系统的账号的email地址一致,否则提交会报错,需要注意的是,提交应该是commit时,当前的log就不会更改了,即如果填错了邮箱且commit后才想起来更改,那么push的时候将会提示邮箱不正确。
添加git用户名和密码
git config --system | global | local user.name "你的用户名"//gerrit1
git config --system | global | local user.email "你的邮箱"//公司邮箱
查看git用户名和密码
git config --system |global | local user.name | user.eamil
ssh-keygen -r rsa -C "xxxx@xxx.com"
点击Administrator>Switch Account
点击new Account
分别填写Full Name 、Preferred Email、Username 、SSH public key
其中gerrit的ssh填写gerrit的id_rsa.pub
配置FullName/Username/SSH Public Key
用同样的方法,设置develop1 develop2 manager1等账户
访问http://localhost:8080/#/settings/http-password,点击Generate Password
gerrit密码:95jPTIRru+2wXyblqnKttzzRw7lvSrZHSBUNh0v3Sw
访问http://localhost:8080/#/admin/create-group/
切换到Administrator
访问http://localhost:8080/#/admin/create-project/
再次切换到gerrit账户,访问http://localhost:8080/#/admin/projects/demo1
点击Clone with commit-msg hook 、http
复制git地址,将4ccb944fba9b换成gerrit服务器的IP,如下
git clone http://gerrit@xx.xx.xx.xx:8080/a/demo1 && (cd demo1 && curl -Lo `git rev-parse --git-dir`/hooks/commit-msg http://gerrit@10.10.140.72:8080/tools/hooks/commit-msg; chmod +x `git rev-parse --git-dir`/hooks/commit-msg)
登录linux服务器,执行上述命令拉取项目,这里需要输入gerrit客户端的gerrit账号的密码,95jPTIRru+2wXyblqnKttzzRw7lvSrZHSBUNh0v3Sw
cd demo1;touch 1.txt
git add .
git commit -m “first”
git push origin HEAD:refs/for/master
这里需要输入登录gerrit的账户名和密码95jPTIRru+2wXyblqnKttzzRw7lvSrZHSBUNh0v3Sw
(Gerrit2 的密码2RupnNn48jolPWdWFAuW7Qb8vQBnNHIHZGezIXB/PA)
这里的email地址需要和gerrit系统的账号的email地址一致,否则提交会报错,需要注意的是,提交应该是commit时,当前的log就不会更改了,即如果填错了邮箱且commit后才想起来更改,那么push的时候将会提示邮箱不正确。
分析原因:根据这个错误提示,似乎是说该邮箱已经注册了,不能再次注册
解决方法:
修改222上的user.email git config --global user.email "mr.rocket@foxmail.com"
修改gerrit账号的email mr.rocket@foxmail.com
修改gerrit账号的email rockchou.hou@fibocom.com
修改222上的user.email git config --global user.email "rockchou.hou@fibocom.com"
再次执行提交 git push origin HEAD:refs/for/master
访问http://localhost:8080/1就可以看到当前提交的内容
看这里->Gerrit工作流程及使用手册-编码规范 (uml.org.cn)
在change界面,也可以看到提交的变更列表,第一次提交将会到Outgoing reviews
在服务器上将修改的代码提交到refs/for/master
打开http://localhost:8080/#/c/386/,当前状态是Needs Code-Review Label
审核人有两个,admin、manager
Gerrit将Code-review 置为-2,MyField置为 -1
Gerrit账户将code-review置为-2,状态将会更改为Blocked
admin Code-review置为+2, MyField置为 +1
此时,admin将code-review置为+2,状态不会更改,仍然是Blocked
gerrit将code-review置为-1
此时状态直接变更为Ready to Submit
结论一:只要有一个-2,状态就位code-review
结论二:如果有一个+2,且没有-2,状态就位
点击submit including parents
状态更改为merge
Gerrit支持插件扩展,编译插件的方法主要有两种,一是在Gerrit框架源码内编译,二是单独编译。开发插件也有两种方式,一是利用maven自动生成符合gerrit插件框架要求的代码结构,二是直接在其官方例子cookbook插件上开发
源码编译有两种方式,一种是buzel工具编译,一种是maven工具编译。
怎么选择使用哪种编译工具呢?我们可以获取源码,如果源码根目录有BUILD文件,那么就可以使用buzel工具编译,如果源码根目录有pom.xml文件那么就可以使用maven编译。
源码下载地址:gerrit Git repositories - Git at Google (googlesource.com)
这里我们以上面提到的cookbook演示,cookbook下载地址:e6d7594621d87859a0e6af361cac1fc3173c3588 - plugins/cookbook-plugin - Git at Google (googlesource.com)
下载了buzel后,左右栏目根目录下的BUILD文件就有了标识
原因:是最新版本(我的版本是3.81)的maven block掉了所有HTTP协议的repositories,仅支持https
解决方案:降低maven到3.6.1
maven报错Blocked mirror for repositories解决方案 - ArielMeng - 博客园 (cnblogs.com)
3.6.1下载地址:apache-maven-3.6.1-bin.zip_免费高速下载|百度网盘-分享无限制 (baidu.com)
访问http://repo1.maven.org/maven2返回501,是镜像地址出了问题
原因:
2020年1月15日起,中央存储库不再支持通过纯HTTP进行的不安全通信,并且要求对存储库的所有请求都通过HTTPS进行加密。
关于maven打包时的报错: Return code is: 501 , ReasonPhrase:HTTPS Required._我想吃猪蹄的博客-CSDN博客
解决方案:将http://repo1.maven.org/maven2改为Central Repository:
Setting文件可以管理镜像地址
解决方案:
解决Maven修改setting.conf配置添加修改镜像库不生效的问题_疯狂的暴走蜗牛的博客-CSDN博客
解决方案:
删除掉pom.xml里的repository,在maven安装目录的conf/setting.xml里新增阿里云镜像
<!-- 阿里云仓库 --> <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>https://maven.aliyun.com/nexus/content/repositories/central/</url> </mirror> <mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror> |
解决方案:
这个时候我们可以去Central Repository:仓库查询是否存在指定版本的jar包
可以看到gerrit-plugin-api-2.14不存在SNAPSHOT版本,删掉pom文件中versions里面的SNAPSHOT,再次执行mvn install
原因:java文件后缀不正确,更改为java
再次执行编译,成功!
右击pom.xml->Maven->Reload project加载插件
一、关于插件jar的META-INF/MANIFEST.MF文件:这个文件的主要作用是记录一些有关这个jar的属性,以便被识别、引用或加载,也可以理解为是这个jar的配置文件。
这里举些例子:
Manifest-Version: 1.0----配置版本号。如果日后要做升级兼容的话,可以利用这个属性。
Gerrit-ApiType: plugin----指定Gerrit插件类型为plugin。Gerrit插件类型有两种:plugin和extension
Gerrit-ApiVersion: 2.13.7----指定该插件匹配的Gerrit平台版本,如果指定版本不一致的话,插件很有可能不能用。
Implementation-Title: Cookbook plugin ----实现Titile
Implementation-Version: 2.13.7----实现的版本号,也就是该插件的版本号,一般和要适应的Gerrit平台的版本号一致。
Archiver-Version: Plexus Archiver----
Built-By: czq ----打包作者
Gerrit-PluginName: cookbook----插件名称
Gerrit-Module: com.googlesource.gerrit.plugins.cookbook.Module----Gerrit加载插件时,会根据这个指定去加载相应的Module类。该类主要实现前后台业务逻辑。
Gerrit-HttpModule: com.googlesource.gerrit.plugins.cookbook.HttpModule ----Gerrit加载插件时,会根据这个指定去加载相应的HttpModule类。该类主要实现Http接口业务逻辑。
Gerrit-SshModule: com.googlesource.gerrit.plugins.cookbook.SshModule ----Gerrit加载插件时,会根据这个指定去加载相应的HttpModule类。该类主要实现SSH接口业务逻辑。
Implementation-Vendor: Gerrit Code Review----开发商
Created-By: Apache Maven 3.5.0----编译打包工具
Build-Jdk: 1.8.0_101----编译的JDK版本
Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/cookbook-plugin ----代码实现URL
Gerrit-PluginName除了可以在pom中配置,还可以在class中配置
public class MyClass { private final String pluginName; @Inject public MyClass(@PluginName String pluginName) { this.pluginName = pluginName; } [...] } |
下面三个文件都有Gerrit-PluginName
HelloSshCommand.java
哪里调用这个文件的?HelloSshModule.java
HelloSshPluginContentScanner
哪里调用HelloSshPluginContentScanner?
答:HelloSshPluginProvider
HelloSshPluginProvider
哪里调用HelloSshPluginProvider?答
Projects | localhost Code Review
Change If1a288cf: Edit Project Config | localhost Code Review
http://localhost:8080/#/x/cookbook
Say Hello
如果我们希望替换某个路径
http://localhost:8080/#/x/cookbook/c/
或访问http://localhost:8080/#/c/ 会跳转到上面的链接
奇怪的是,目前只有admin账号会出现跳转
TODO: implement this screen
有时候,我们希望在setting界面新增一个选项,例如新增Fook Prefrerences
显示OK
显示 Library-complicate+1 TODO
CHANGE_SCREEN_BELOW_CHANGE_INFO_BLOCK 更改信息块下方
Change If1a288cf: Edit Project Config | localhost Code Review
UiAction 可以与 JavaScript API 结合使用。这将在激活按钮附近显示一个小弹出窗口,以收集用户的额外输入
新建hello.js
- Gerrit.install(plugin => {
- const endpoint = 'change-metadata-item';
- plugin.hook(endpoint).onAttached(element => {
- const el = element.appendChild(document.createElement('div'));
- el.textContent = 'Ah, there it is. Lovely.';
- el.style = 'background: pink; line-height: 4em; text-align: center;';
- });
- });
JS 模块必须公开为 WebUiPlugin 并绑定为 HTTP 模块:
- public class HttpModule extends HttpPluginModule {
- @Override
- protected void configureServlets() {
- DynamicSet.bind(binder(), WebUiPlugin.class)
- .toInstance(new JavaScriptPlugin("hello.js"));
- }
- }
上面的HTTP模块必须在pom.xml中声明
- <manifestEntries>
- <Gerrit-HttpModule>com.googlesource.gerrit.plugins.cookbook.HttpModule</Gerrit-HttpModule>
- </manifestEntries>
通过gerrit-module引入Module文件
- <build>
- <plugins>
- <plugin>
- <configuration>
- <archive>
- <manifestEntries>
- <Gerrit-PluginName>cookbook</Gerrit-PluginName>
- <Gerrit-Module>com.googlesource.gerrit.plugins.cookbook.Module</Gerrit-Module>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- <build>
Module.java中,绑定hello-project.js
其中第一个红框拼接出了http://localhost:8080/changes/1/revisions/1/cookbook~greetings,她将会返回一个json文件
参见
Gerrit Code Review - Plugin Development ~ Gerrit 代码审查 - 插件开发 (int.com)
Gerrit系统admin账号拥有管理员权限ssh-keygen –t rsa –C “xxxx.xxx@xxxx.com”
cat ~/.ssh/id_rsa.pub
复制id_rsa.pub的值给gerrit系统的admin账户的SSH public key
本地编写简单脚本,上传到挂载目录
- Gerrit.install(plugin => {
-
- // Your code here.
-
- alert("Hello Worldf);
- });
打开容器的一个控制台,执行下面的命令
ssh -p 29418 admin@localhost gerrit plugin install -n helloworld.js /var/gerrit/review_site/helloWorld.js
此时,gerrit的plugins目录就有了helloworld.js
刷新浏览器,报错
如图右侧的Code-Review就是默认的Review Lable。
打开Projects->All-project->Edit Config,在最后面添加下面代码,点击save
[label "MyField"] function = AnyWithBlock value = -1 a value = 0 b value = 1 c |
如下:
关于function,function用于评估标签的多个投票的函数的名称。仅当默认提交规则用于标签时,才会应用此功能。如果编写自定义提交规则(并且不调用默认规则),则函数名称将被忽略,并可能被视为可选。
有效值为:
关于自定义标签更多信息,请参考Gerrit Code Review - Review Labels (storage.googleapis.com)
按照上面保存后,那么在changes列表中将会看到一条
点击进入后,点击Publish Edit
点击Relpy,Code-review选择+2,点击Pos。
状态更改为Ready to submit
上面的字段暂时还不能使用,需要添加字段权限
打开Projects->List,选择All-Projects->Access->Edit,找到Reference:refs/heads/*,添加Label MyField,权限和Label Code-Review一致。
点击Save Changes
此时切换到其他其他change,就可以看到我们添加的字段了
Gerrit Code Review - Command Line Tools (openafs.org)
ssh -p 29418 admin@xx.xx.xx.xx gerrit query --format=json status:merged before:2022-09-05 after:2022-01-20 --patch-sets --files --all-approvals | grep -wE "(lastUpdated|project|email|status
一般原因是当前主机的秘钥与gerrit上该账号的公钥对不上
在etc/gerrit.conf的database记录着gerrit的数据库信息
可以看到数据库是h2类型,位置为/var/gerrit/db/ReviewDB
关于database其他字段信息,请看Gerrit Code Review - Configuration (mit.edu)
暂停gerrit
~/bin/gerrit.sh stop
初始化 数据库
java -jar ~/bin/gerrit.war init
java -jar bin/gerrit.war gsql
Gerrit+apache+H2数据库简单安装配置及建库流程 - 江召伟 - 博客园 (cnblogs.com)
https://gerrit-review.googlesource.com/Documentation/dev-rest-api.html
Gerrit Code Review - /changes/ REST API (googlesource.com)
请求http://localhost:8080/changes/
curl http://localhost:8080/changes/I2d107cafc22d69f573a745b43d0f93a93aa5bece/comments
curl http://localhost:8080/changes/I2d107cafc22d69f573a745b43d0f93a93aa5bece/drafts
如何获取revision id
get revisions by change_jd from gerrit api - Stack Overflow
其中的revisionid就是commitId
发送机器人评论的API
https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#set-review
username: admin
password: r5jWaCZF36NvwagRyuvyhfmDEVK0b9e5faM+Qd8e/A
报错:Authentication required
关于robot comment的更多信息
https://storage.googleapis.com/gerrit-talks/summit/2016/robot-comments.pdf
https://opendev.org/opendev/gerrit/src/commit/bdcba6961d39d073a62aa60193c4fe5f61021a26/java/com/google/gerrit/entities/HumanComment.java
HumanComment extends Comment
这里可以看到,更新comment执行的的put.add(),但是put是一个List数组,似乎并没有操作数据库
其中checkState方法、add方法,verifyComment方法都没无法跳转。
checkState方法来源于import static com.google.common.base.Preconditions.checkState
发现com.google.common是一个空路径,不明白原因是什么
https://blog.csdn.net/czq7511/article/details/74356870
Gerrit插件开发之判断用户是否已登录的方法-CSDN博客
引入polyfills
webcomponentsjs (v2.8.0) - webcomponents.js | BootCDN - Bootstrap 中文网开源项目免费 CDN 加速服务
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。