Class: Onceover::Group
- Inherits:
-
Object
- Object
- Onceover::Group
- Defined in:
- lib/onceover/group.rb
Constant Summary collapse
- @@all =
[]
Instance Attribute Summary collapse
-
#members ⇒ Object
Returns the value of attribute members.
-
#name ⇒ Object
Work out how to do class variables so that I can keep track of all the groups easily.
Class Method Summary collapse
- .all ⇒ Object
- .find(group_name) ⇒ Object
-
.valid_members?(members) ⇒ Boolean
rubocop:disable Lint/DuplicateBranch.
Instance Method Summary collapse
-
#initialize(name = nil, members = []) ⇒ Group
constructor
You need to pass in an array of strings for members, not objects, it will find the objects by itself, and yes it will reference them, not just create additional ones, woo!.
Constructor Details
#initialize(name = nil, members = []) ⇒ Group
You need to pass in an array of strings for members, not objects, it will find the objects by itself, and yes it will reference them, not just create additional ones, woo!
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/onceover/group.rb', line 15 def initialize(name = nil, members = []) @name = name @members = [] case when Onceover::Group.valid_members?(members) # If it's already a valid list just chuck it in there @members = members when members.is_a?(Hash) # if it's a hash then do subtractive stuff @members = Onceover::TestConfig.subtractive_to_list(members) when members.nil? # Support empty groups yo @members = [] else # Turn it into a full list # This should also handle lists that include groups member_objects = members.map { |member| Onceover::TestConfig.find_list(member) } member_objects.flatten! # Check that they are all the same type unless Onceover::Group.valid_members?(member_objects) raise 'Groups must contain either all nodes or all classes. Either there was a mix, or something was spelled wrong' end # Smash it into the instance variable @members = member_objects end # Finally add it to the list of all grops @@all << self end |
Instance Attribute Details
#members ⇒ Object
Returns the value of attribute members.
10 11 12 |
# File 'lib/onceover/group.rb', line 10 def members @members end |
#name ⇒ Object
Work out how to do class variables so that I can keep track of all the groups easily
9 10 11 |
# File 'lib/onceover/group.rb', line 9 def name @name end |
Class Method Details
.all ⇒ Object
57 58 59 |
# File 'lib/onceover/group.rb', line 57 def self.all @@all end |
.find(group_name) ⇒ Object
48 49 50 51 52 53 54 55 |
# File 'lib/onceover/group.rb', line 48 def self.find(group_name) @@all.each do |group| if group.name == group_name return group end end nil end |
.valid_members?(members) ⇒ Boolean
rubocop:disable Lint/DuplicateBranch
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/onceover/group.rb', line 62 def self.valid_members?(members) # Check that they are all the same type # Also catch any errors to assume it's invalid begin if members.all? { |item| item.is_a?(Onceover::Class) } return true elsif members.all? { |item| item.is_a?(Onceover::Node) } return true else return false end rescue StandardError return false end end |