Class: AbideDevUtils::XCCDF::Parser::Objects::Benchmark

Inherits:
ElementBase
  • Object
show all
Includes:
NumberedObject
Defined in:
lib/abide_dev_utils/xccdf/parser/objects.rb

Overview

Class for XCCDF benchmark

Instance Attribute Summary

Attributes inherited from ElementBase

#child_labels, #children, #link_labels

Class Method Summary collapse

Instance Method Summary collapse

Methods included from NumberedObject

#<=>, #find_child_by_number, #number_child_of?, #number_eq, #number_gt, #number_lt, #number_parent_of?, #search_children_by_number

Methods inherited from ElementBase

#add_link, #add_links, #all_values, #find_child_by_attribute, #find_child_by_attribute_value, #find_child_by_class, #find_child_by_xpath, #find_children_by_attribute, #find_children_by_attribute_value, #find_children_by_class, #find_children_by_xpath, #find_children_that_respond_to, #label, #method_missing, #recursive_find_child, #recursive_select_children, #respond_to_missing?, #xccdf_type

Methods included from DigestObject

#digest, #digest_equal?, #digest_similarity, #digestable_instance_variables, #exclude_from_digest, #labeled_self_digest, #non_compatible?, #normalize_exclusion, #sorted_digest_parts, #split_labeled_digest

Constructor Details

#initialize(element) ⇒ Benchmark

Returns a new instance of Benchmark.



715
716
717
718
719
720
721
722
723
724
725
726
727
728
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 715

def initialize(element)
  super
  element = element.at_xpath('xccdf:Benchmark')
  raise 'No Benchmark element found' if element.nil?

  add_child(Status, element)
  add_child(Title, element)
  add_child(Description, element)
  add_child(Platform, element)
  add_child(Version, element)
  add_children(Profile, element)
  add_children(Group, element)
  add_children(Value, element)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class AbideDevUtils::XCCDF::Parser::Objects::ElementBase

Class Method Details

.xpathObject



730
731
732
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 730

def self.xpath
  'xccdf:Benchmark'
end

Instance Method Details

#to_sObject



734
735
736
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 734

def to_s
  [find_child_by_class(Title).to_s, find_child_by_class(Version).to_s].join(' ')
end