Class: Debci::Status

Inherits:
Object
  • Object
show all
Defined in:
lib/debci/status.rb

Overview

This class represents one test execution.

Instance Attribute Summary (collapse)

Class Method Summary (collapse)

Instance Method Summary (collapse)

Instance Attribute Details

- (Object) architecture

Returns the value of attribute architecture



11
12
13
# File 'lib/debci/status.rb', line 11

def architecture
  @architecture
end

- (Object) blame

Returns the value of attribute blame



10
11
12
# File 'lib/debci/status.rb', line 10

def blame
  @blame
end

- (Object) date

Returns the value of attribute date



11
12
13
# File 'lib/debci/status.rb', line 11

def date
  @date
end

- (Object) duration_human

Returns the value of attribute duration_human



11
12
13
# File 'lib/debci/status.rb', line 11

def duration_human
  @duration_human
end

- (Object) duration_seconds

Returns the value of attribute duration_seconds



11
12
13
# File 'lib/debci/status.rb', line 11

def duration_seconds
  @duration_seconds
end

- (Object) message

Returns the value of attribute message



11
12
13
# File 'lib/debci/status.rb', line 11

def message
  @message
end

- (Object) package

Returns the value of attribute package



11
12
13
# File 'lib/debci/status.rb', line 11

def package
  @package
end

- (Object) previous_status

Returns the value of attribute previous_status



11
12
13
# File 'lib/debci/status.rb', line 11

def previous_status
  @previous_status
end

- (Object) run_id

Returns the value of attribute run_id



11
12
13
# File 'lib/debci/status.rb', line 11

def run_id
  @run_id
end

- (Object) status

Returns the value of attribute status



11
12
13
# File 'lib/debci/status.rb', line 11

def status
  @status
end

- (Object) suite

Returns the value of attribute suite



11
12
13
# File 'lib/debci/status.rb', line 11

def suite
  @suite
end

- (Object) version

Returns the value of attribute version



11
12
13
# File 'lib/debci/status.rb', line 11

def version
  @version
end

Class Method Details

+ (Object) from_file(file)

Constructs a new object by reading the JSON status file.



51
52
53
54
55
56
57
58
59
60
61
62
63
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
# File 'lib/debci/status.rb', line 51

def self.from_file(file)
  status = new
  unless File.exists?(file)
    status.status = :no_test_data
    return status
  end
  data = nil
  begin
    File.open(file, 'r') do |f|
      data = JSON.load(f)
    end
  rescue JSON::ParserError
    true # nothing really
  end

  return status unless data

  status.run_id = data['run_id']
  status.package = data['package']
  status.version = data['version']
  status.date =
    begin
      Time.parse(data.fetch('date', 'unknown') + ' UTC')
    rescue ArgumentError
      nil
    end
  status.status = data.fetch('status', :unknown).to_sym
  status.previous_status = data.fetch('previous_status', :unknown).to_sym
  status.blame = data['blame']
  status.duration_seconds =
    begin
      Integer(data.fetch('duration_seconds', 0))
    rescue ArgumentError
      nil
    end
  status.duration_human = data['duration_human']
  status.message = data['message']

  status
end

Instance Method Details

- (Object) description

A longer version of the headline



38
39
40
# File 'lib/debci/status.rb', line 38

def description
  "The tests for #{package} #{status.upcase}ED on #{suite}/#{architecture} but have previosly #{previous_status.upcase}ED."
end

- (Object) headline

Returns a headline for this status object, to be used as a short description of the event it represents



33
34
35
# File 'lib/debci/status.rb', line 33

def headline
  "#{package} tests #{status.upcase}ED on #{suite}/#{architecture}"
end

- (Boolean) newsworthy?

Returns true if this status object represents an important event, such as a package that used to pass started failing, of vice versa.

Returns:

  • (Boolean)


15
16
17
18
19
20
# File 'lib/debci/status.rb', line 15

def newsworthy?
  [
    [:fail, :pass],
    [:pass, :fail],
  ].include?([status, previous_status])
end

- (Object) title



22
23
24
25
26
27
28
29
# File 'lib/debci/status.rb', line 22

def title
  {
    :pass => "Pass",
    :fail => "Fail",
    :tmpfail => "Temporary failure",
    :no_test_data => "No test data",
  }.fetch(status, "Unknown")
end