Class: CompareTask

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

Overview

Copyright © 2013-2015 SUSE LLC

This program is free software; you can redistribute it and/or modify it under the terms of version 3 of the GNU General Public License as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, contact SUSE LLC.

To contact SUSE about this file by physical or electronic mail, you may find current contact information at www.suse.com

Instance Method Summary collapse

Instance Method Details

#compare(description1, description2, scopes, options = {}) ⇒ Object



19
20
21
22
23
# File 'lib/compare_task.rb', line 19

def compare(description1, description2, scopes, options = {})
  output = render_comparison(description1, description2, scopes, options)

  Machinery::Ui.puts output
end

#render_comparison(description1, description2, scopes, options = {}) ⇒ Object



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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/compare_task.rb', line 25

def render_comparison(description1, description2, scopes, options = {})
  output = ""
  identical = true
  common_scopes = false
  store = description1.store
  scopes.each do |scope|
    if description1[scope] && description2[scope]
      comparison = description1[scope].compare_with(description2[scope])

      partial_description1 = SystemDescription.new(
        description1.name,
        store,
        scope => comparison[0]
      )

      partial_description2 = SystemDescription.new(
        description2.name,
        store,
        scope => comparison[1]
      )

      partial_description_common = SystemDescription.new(
        "common",
        store,
        scope => comparison[2]
      )

      output += Renderer.for(scope).render_comparison(
        partial_description1,
        partial_description2,
        partial_description_common,
        options
      )

      if partial_description1[scope] || partial_description2[scope]
        identical = false
      end
      common_scopes = true
    else
      output += Renderer.for(scope).render_comparison_missing_scope(
        description1, description2
      )
      identical = false if description1[scope] || description2[scope]
    end
  end

  output = "Compared descriptions are identical.\n" + output if identical && common_scopes

  output
end