Class: RunTestsOnPostReceive
- Inherits:
-
Object
- Object
- RunTestsOnPostReceive
- Defined in:
- app/models/run_tests_on_post_receive.rb
Class Method Summary collapse
Instance Method Summary collapse
- #begin! ⇒ Object
- #create_a_test_run(project, params) ⇒ Object
- #fetch_test_run_results(project, params) ⇒ Object
- #publish_coverage_to_code_climate(test_run) ⇒ Object
- #publish_status_to_github(test_run) ⇒ Object
Class Method Details
.begin! ⇒ Object
7 8 9 |
# File 'app/models/run_tests_on_post_receive.rb', line 7 def self.begin! @instance = self.new.tap(&:begin!) end |
.instance ⇒ Object
3 4 5 |
# File 'app/models/run_tests_on_post_receive.rb', line 3 def self.instance @instance end |
Instance Method Details
#begin! ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'app/models/run_tests_on_post_receive.rb', line 11 def begin! Rails.logger.info "\e[34;1mSetting up observers for RunTestsOnPostReceive\e[0m" # Here's how this works: # # 1. GitHub receives a `git push` and triggers all Web Hooks: # POST /projects/houston/hooks/post_receive. # 2. Houston receives this request and fires the # 'hooks:post_receive' event. # 3. Houston creates a TestRun and tells a CI server to build # then corresponding job: # POST /job/houston/buildWithParameters. Houston.observer.on "hooks:post_receive" do |project, params| Rails.logger.info "\e[34m[hooks:post_receive] creating a TestRun\e[0m" create_a_test_run(project, params) end # 4. Houston notifies GitHub that the test run has started: # POST /repos/houston/houston/statuses/:sha Houston.observer.on "test_run:start" do |test_run| Rails.logger.info "\e[34m[test_run:start] publishing status on GitHub\e[0m" publish_status_to_github(test_run) end # 5. Jenkins checks out the project, runs the tests, and # tells Houston that it is finished: # POST /projects/houston/hooks/post_build. # 6. Houston receives the request and fires the # 'hooks:post_build' event. # 7. Houston updates the TestRun, # fetching additional details from Jenkins: # GET /job/houston/19/testReport/api/json Houston.observer.on "hooks:post_build" do |project, params| Rails.logger.info "\e[34m[hooks:post_build] fetching TestRun results\e[0m" fetch_test_run_results(project, params) end # 8. Houston publishes results to GitHub: # POST /repos/houston/houston/statuses/:sha Houston.observer.on "test_run:complete" do |test_run| Rails.logger.info "\e[34m[test_run:complete] publishing status on GitHub\e[0m" publish_status_to_github(test_run) end # 9. Houston publishes results to Code Climate. Houston.observer.on "test_run:complete" do |test_run| Rails.logger.info "\e[34m[test_run:complete] publishing status on CodeClimate\e[0m" publish_coverage_to_code_climate(test_run) end end |
#create_a_test_run(project, params) ⇒ Object
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'app/models/run_tests_on_post_receive.rb', line 64 def create_a_test_run(project, params) unless project.has_ci_server? Rails.logger.warn "[hooks:post_receive] the project #{project.name} is not configured to be used with a Continuous Integration server" return end payload = PostReceivePayload.new(params) unless payload.commit Rails.logger.error "[hooks:post_receive] no commit found in payload" return end if payload.commit == Houston::NULL_GIT_COMMIT Rails.logger.error "[hooks:post_receive] branch was deleted; not running tests again" return end test_run = project.test_runs.find_by_sha(payload.commit) if test_run Rails.logger.warn "[hooks:post_receive] a test run exists for #{test_run.short_commit}; doing nothing" return end test_run = TestRun.new( project: project, sha: payload.commit, agent_email: payload.agent_email, branch: payload.branch) notify_of_invalid_configuration(test_run) do test_run.start! end rescue ActiveRecord::RecordNotUnique Rails.logger.warn "[hooks:post_receive] a test run exists for #{test_run.short_commit}; doing nothing" rescue Exception # rescues StandardError by default; but we want to rescue and report all errors Houston.report_exception $!, parameters: params.merge(project: project.slug) end |
#fetch_test_run_results(project, params) ⇒ Object
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'app/models/run_tests_on_post_receive.rb', line 106 def fetch_test_run_results(project, params) commit, results_url = params.values_at(:commit, :results_url) test_run = project.test_runs.find_by_sha(commit) unless test_run Rails.logger.warn "[hooks:post_build] no test run found for project '#{project.slug}' and commit '#{commit}'" return end if results_url.blank? = "#{project.ci_server_name} is not appropriately configured to build #{project.name}." additional_info = "#{project.ci_server_name} did not supply 'results_url' when it triggered the post_build hook" ProjectNotification.ci_configuration_error(test_run, , additional_info: additional_info).deliver! return end test_run.completed!(results_url) rescue Exception # rescues StandardError by default; but we want to rescue and report all errors Houston.report_exception $!, parameters: params.merge(project: project.slug) end |
#publish_coverage_to_code_climate(test_run) ⇒ Object
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'app/models/run_tests_on_post_receive.rb', line 147 def publish_coverage_to_code_climate(test_run) return if test_run.project.code_climate_repo_token.blank? CodeClimate::CoverageReport.publish!(test_run) test_run.project.feature_working! :publish_coverage_to_code_climate rescue Net::OpenTimeout, Net::ReadTimeout test_run.project.feature_broken! :publish_coverage_to_code_climate Rails.logger.warn "\e[31m[push:publish:codeclimate] #{$!.class}: #{$!.}\e[0m" rescue Exception # rescues StandardError by default; but we want to rescue and report all errors # Note: Code Climate will respond with 401 if we try to publish # results for a repo it doesn't know about test_run.project.feature_broken! :publish_coverage_to_code_climate Houston.report_exception $!, parameters: { test_run_id: test_run.id, project: test_run.project.slug, method: "publish_coverage_to_code_climate" } end |
#publish_status_to_github(test_run) ⇒ Object
130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
# File 'app/models/run_tests_on_post_receive.rb', line 130 def publish_status_to_github(test_run) return unless test_run.project.repo.respond_to? :commit_status_url Github::CommitStatusReport.publish!(test_run) test_run.project.feature_working! :publish_status_to_github rescue Net::OpenTimeout, Net::ReadTimeout test_run.project.feature_broken! :publish_status_to_github Rails.logger.warn "\e[31m[push:publish:github] #{$!.class}: #{$!.}\e[0m" rescue Exception # rescues StandardError by default; but we want to rescue and report all errors test_run.project.feature_broken! :publish_status_to_github Houston.report_exception $!, parameters: { test_run_id: test_run.id, project: test_run.project.slug, method: "publish_status_to_github" } end |