Class: Evrone::CI::Message::PerformJob

Inherits:
ProtocolBuffers::Message
  • Object
show all
Includes:
Serializable
Defined in:
lib/evrone/ci/message.rb,
lib/evrone/ci/message/testing.rb

Class Method Summary collapse

Methods included from Serializable

#to_serialized_string

Class Method Details

.test_attributes(options = {}) ⇒ Object



115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/evrone/ci/message/testing.rb', line 115

def test_attributes(options = {})
  key = File.read File.expand_path("../../../../../fixtures/insecure_private_key", __FILE__)
  options.merge({
    id:         options[:id]           || 1,
    name:       options[:name]         || 'evrone/test-repo',
    src:        options[:src]          || "[email protected]:evrone/ci-worker-test-repo.git",
    sha:        options[:sha]          || "b665f90239563c030f1b280a434b3d84daeda1bd",
    deploy_key: options[:deploy_key]   || key,
    job_id:     options[:job_id]       || 2,
    before_script: options[:before_script] || 'echo before_script',
    script:     options[:script]       || 'echo script',
    matrix_keys: options[:matrix_keys] || %w{ rvm:2.0.0 }
  })
end

.test_message(options = {}) ⇒ Object



138
139
140
# File 'lib/evrone/ci/message/testing.rb', line 138

def test_message(options = {})
  new test_attributes(options)
end

.test_pull_request_attributes(options = {}) ⇒ Object



130
131
132
133
134
135
136
# File 'lib/evrone/ci/message/testing.rb', line 130

def test_pull_request_attributes(options = {})
  options = {
    sha: "84158c732ff1af3db9775a37a74ddc39f5c4078f",
    pull_request_id: 4
  }.merge(options)
  test_attributes(options)
end

.test_pull_request_message(options = {}) ⇒ Object



142
143
144
# File 'lib/evrone/ci/message/testing.rb', line 142

def test_pull_request_message(options = {})
  new test_pull_request_attributes(options)
end