janinko / ghprb

github pull requests builder plugin for Jenkins
https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin
MIT License
369 stars 19 forks source link

Provide default value for requestForTestingPhrase #452

Open hartzell opened 7 years ago

hartzell commented 7 years ago

I configure my Jenkinses via a setup.groovy script and never visit the configuration page.

Builds are never run for people who are not on the white list and the admin is never asked to approve builds for them.

It turns out that the reason is that Jenkins is trying to use the requestForTesting phrase but that it has never been set, leading to a NullPointerException:

Unable to handle comment for PR# 1213, repo: git-workshop/git-workshop.<elided>
java.lang.NullPointerException
    at org.jenkinsci.plugins.ghprb.GhprbRepository.addComment(GhprbRepository.java:238)
    at org.jenkinsci.plugins.ghprb.GhprbRepository.addComment(GhprbRepository.java:234)
    at org.jenkinsci.plugins.ghprb.GhprbPullRequest.<init>(GhprbPullRequest.java:139)
    at org.jenkinsci.plugins.ghprb.GhprbRepository.getPullRequest(GhprbRepository.java:365)
    at org.jenkinsci.plugins.ghprb.GhprbRepository.onIssueCommentHook(GhprbRepository.java:345)
    at org.jenkinsci.plugins.ghprb.GhprbTrigger.handleComment(GhprbTrigger.java:611)
    at org.jenkinsci.plugins.ghprb.GhprbRootAction$1.run(GhprbRootAction.java:233)

I'm currently working around the issue like so:

// Set up the Github Pull Request Builder Plugin
//    https://gist.github.com/kpettijohn/e294c50e29ca4e8a329e
def ghprbDesc = Jenkins.instance.getDescriptorByType(org.jenkinsci.plugins.ghprb.GhprbTrigger.DescriptorImpl.class)

// [other settings elided]
// Set a value to use when Jenkins asks the admins if it's
// ok to run a build from a "stranger".  This field has no
// default value, so if it's not set here, Jenkins accesses a
// null pointer and becomes sad.
Field testPlease = ghprbDesc.class.getDeclaredField("requestForTestingPhrase")
testPlease.setAccessible(true)
testPlease.set(ghprbDesc, "Can one of the admins verify this patch?")

but it seems like it would be safer to provide it with a default value like you do for the other phrases.

Alternatively, org.jenkinsci.plugins.ghprb.GhprbRepository.addComment {sh,c}ould check that it's argument is not null before using it. But, that wouldn't help the 'infrastructure as code' crowd as much as my proposed change.

It would be really nice if there were a programmatic way to configure the plugin. The configure method is tied to a request, so it's not easily usable and using reflection to access the plugin's private bits seems icky.

alexkomis commented 7 years ago

Can one of the admins verify this patch?

meruvasivakumari commented 7 years ago

Can one of the admins verify this patch?

hartzell commented 7 years ago

Is there anything I can do to help move this along?