aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/BitbucketBuildRepositoryTest.java
AgeCommit message (Collapse)AuthorFilesLines
2017-12-13Version 0.1.00.1.0Igor Pashev1-354/+0
2017-06-04Merge pull request #122 from IDMWORKS/bug/null-destination-commitMartin Damovsky1-2/+82
Fix NullPointerException when a Pull Request's destination commit is NULL
2017-06-04Decreased logging level from INFO to FINE across whole pluginMartin Damovsky1-2/+2
2017-05-17Fix NullPointerException when a Pull Request's destination commit is NULLNathanial Woolls1-2/+82
* see: https://github.com/nishio-dens/bitbucket-pullrequest-builder-plugin/issues/119 * see: https://github.com/nishio-dens/bitbucket-pullrequest-builder-plugin/issues/98
2017-02-22Merge branch 'master' into parameterize-comment-build-triggerNicholas Blair1-4/+7
2017-02-18fix: can't have 2 @DataBoundConstructorsNicholas Blair1-4/+5
Refactor to move default value for commentTrigger to config.jelly. Handle special case in BitbucketBuildRepository where trigger field is null within unit tests (since BitbucketBuildTrigger can't be mocked or initialized in the test).
2016-10-27Add option to cancel outdated builds when a pull request is updatedOlivier Bellemare1-4/+8
2016-02-04Remove overqualified using of Class<T> as HttpClient interceptorMaxim Epishchev1-6/+10
Constructor of ApiClient now using just <T extends HttpClientFactory> T type to make possible using of HttpClient interceptor in tests.
2016-02-03Limit size "key" field in BitBucket POST APIMaxim Epishchev1-1/+114
Refactoring method ApiClient::computeAPIKey() to check maximum size of computed key. Now field size contolled by special constant ApiClient::MAX_KEY_SIZE_BB_API. This changes will resolve, in my opinion, issue with continuously rebuilding: method ApiClient::hasBuildStatus() fail and PR's are always trigger new builds.
2016-02-01Add tests for integration CredentialsSupport functionalMaxim Epishchev1-0/+153
By default we using username/password from original text fields (config.jelly). If credentials ID provided in plugin settings - using them for BitBucket API auth.