Class: Webdrone::Logs

Inherits:
Object
  • Object
show all
Defined in:
lib/webdrone/logg.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(a0) ⇒ Logs

Returns a new instance of Logs.



54
55
56
57
58
59
# File 'lib/webdrone/logg.rb', line 54

def initialize(a0)
  @a0 = a0
  @group_trace_count = []
  setup_format
  setup_trace
end

Instance Attribute Details

#a0Object (readonly)

Returns the value of attribute a0.



52
53
54
# File 'lib/webdrone/logg.rb', line 52

def a0
  @a0
end

Instance Method Details

#setup_formatObject



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/webdrone/logg.rb', line 101

def setup_format
  begin
    cols, _line = HighLine.default_instance.terminal.terminal_size
  rescue StandardError
  end
  cols ||= 120
  total = 6 + 15 + 11 + 5
  w = cols - total
  w /= 2
  w1 = w
  w2 = cols - total - w1
  w1 = 20 if w1 < 20
  w2 = 20 if w2 < 20
  @format = "%5.3f %14.14s %10s %#{w1}.#{w1}s => %#{w2}.#{w2}s\n"
end

#setup_traceObject



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'lib/webdrone/logg.rb', line 117

def setup_trace
  @path = File.join(a0.conf.outdir, 'a0_webdrone_trace.csv')
  CSV.open(@path, "a+") do |csv|
    os = "Windows" if OS.windows?
    os = "Linux" if OS.linux?
    os = "OS X" if OS.osx?
    bits = OS.bits
    hostname = Socket.gethostname
    browser_name = a0.driver.capabilities[:browser_name]
    browser_version = a0.driver.capabilities[:version]
    browser_platform = a0.driver.capabilities[:platform]
    webdrone_version = Webdrone::VERSION
    webdrone_platform = "#{RUBY_ENGINE}-#{RUBY_VERSION} #{RUBY_PLATFORM}"

    csv << %w.OS ARCH HOSTNAME BROWSER\ NAME BROWSER\ VERSION BROWSER\ PLATFORM WEBDRONE\ VERSION WEBDRONE\ PLATFORM.
    csv << [os, bits, hostname, browser_name, browser_version, browser_platform, webdrone_version, webdrone_platform]
  end
  CSV.open(@path, "a+") do |csv|
    csv << %w.DATE DUR FROM LINENO MODULE CALL PARAMS RESULT EXCEPTION SCREENSHOT.
  end
end

#trace(ini, fin, from, lineno, base, method_name, args, result, exception, screenshot) ⇒ Object



61
62
63
64
65
66
67
68
# File 'lib/webdrone/logg.rb', line 61

def trace(ini, fin, from, lineno, base, method_name, args, result, exception, screenshot)
  exception = "#{exception.class}: #{exception}" if exception
  printf @format, (fin - ini), base, method_name, args, (result || exception)
  CSV.open(@path, "a+") do |csv|
    csv << [ini.strftime('%Y-%m-%d %H:%M:%S.%L %z'), (fin - ini), from, lineno, base, method_name, args, result, exception, screenshot]
  end
  @group_trace_count = @group_trace_count.map { |x| x + 1 }
end

#with_group(name, abort_error: false) ⇒ Object



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
# File 'lib/webdrone/logg.rb', line 70

def with_group(name, abort_error: false)
  ini = Time.new
  caller_location = Kernel.caller_locations[0]
  cl_path = caller_location.path
  cl_line = caller_location.lineno
  result = {}
  @group_trace_count << 0
  exception = nil
  begin
    yield
  rescue StandardError => e
    exception = e
    bindings = Kernel.binding.callers
    bindings[0..-1].each do |binding|
      location = { path: binding.eval('__FILE__'), lineno: binding.eval('__LINE__') }
      next unless Gem.path.none? { |path| location[:path].include? path }

      result[:exception] = {}
      result[:exception][:line] = location[:lineno]
      result[:exception][:path] = location[:path]

      break
    end
  end
  result[:trace_count] = @group_trace_count.pop
  fin = Time.new
  trace(ini, fin, cl_path, cl_line, Logs, :with_group, [name, abort_error: abort_error], result, exception, nil)
  puts "abort_error: #{abort_error} exception: #{exception}"
  exit if abort_error == true && exception
end