Module: DataFactory

Included in:
DataObjectFactory
Defined in:
lib/test-factory/data_factory.rb

Overview

Provides a set of tools used to create your Data Object classes.

Instance Method Summary collapse

Instance Method Details

#checkbox_setting(checkbox) ⇒ Object Also known as: radio_setting

Transform for use with data object instance variables that refer to checkboxes or radio buttons. Instead of returning a boolean value, it returns the symbols :set or :clear – This can be useful because those symbols can then in turn be passed directly as methods for updating or validating the checkbox later.

Parameters:

  • checkbox (Watir::CheckBox)

    The checkbox on the page that you want to inspect



80
81
82
# File 'lib/test-factory/data_factory.rb', line 80

def checkbox_setting(checkbox)
  checkbox.set? ? :set : :clear
end

#collection(name) ⇒ Object

Use for setting a data object’s class instance variable as a nested collection class.

This method assumes your collection class name ends with “Collection”. Therefore, the string you pass in its parameter is the first part of the class name.

E.g., your collection class is called “DataObjectCollection”, so, inside your parent object’s defaults, you’d set the instance variable like this:

Examples:

data_objects: collection('DataObject')


40
41
42
# File 'lib/test-factory/data_factory.rb', line 40

def collection(name)
  Kernel.const_get("#{name}Collection").new(@browser)
end

#edit_fields(opts, page, *fields) ⇒ Object

Equivalent to #ordered_fill, except that it’s used in the context of a Data Object’s #edit method(s). As such, it requires the #edit method’s hash to be passed as its own first parameter.

Examples:

on PageClass do |page|
  edit_fields opts, page, :text_field_name, :radio_name, :select_list_name, :checkbox_name
end


167
168
169
# File 'lib/test-factory/data_factory.rb', line 167

def edit_fields(opts, page, *fields)
  edit_item_fields opts, nil, page, *fields
end

#edit_item_fields(opts, name, page, *fields) ⇒ Object

Equivalent to #ordered_item_fill, except that it’s used in the context of a Data Object’s #edit method(s). As such, it requires the #edit method’s hash to be passed as its own first parameter.

Examples:

on PageClass do |page|
  edit_item_fields opts, 'Joe Schmoe', page, :text_field_name, :radio_name, :select_list_name, :checkbox_name
end


181
182
183
# File 'lib/test-factory/data_factory.rb', line 181

def edit_item_fields(opts, name, page, *fields)
  parse_fields(opts, name, page, *fields)
end

#fill_out(page, *fields) ⇒ Object

A shortcut method for filling out fields on a page. The method’s first parameter is the page class that contains the fields you want to fill out. That is followed by the list of field name(s) (as Symbols).

This method has a number of requirements:

1) The field name and the instance variable name in your data object must be identical. For this reason, this method can only be used in your data objects’ create methods.

2) Your checkbox and radio button data object instance variables are either nil, :set, or :clear. Any other values will not be handled correctly.

3) Since the listed fields get filled out in random order, be sure that this is okay in the context of your page–in other words, if field A needs to be specified before field B then having them both in your fill_out step would be inappropriate. If you need a specific order, use #ordered_fill instead.

4) This method supports text fields, select lists, check boxes, and radio buttons, but only if their element definitions don’t take a parameter. Please use the #fill_out_item with elements that do need a parameter defined.

Examples:

on PageClass do |page|
  fill_out page, :text_field_name, :radio_name, :select_list_name, :checkbox_name
end


116
117
118
# File 'lib/test-factory/data_factory.rb', line 116

def fill_out(page, *fields)
  f_o_i true, nil, page, *fields
end

#fill_out_item(name, page, *fields) ⇒ Object

Same as #fill_out, but used with methods that take a parameter to identify the target element…

Examples:

on PageClass do |page|
  fill_out_item 'Joe Schmoe', page, :text_field_name, :radio_name, :select_list_name, :checkbox_name
end


140
141
142
# File 'lib/test-factory/data_factory.rb', line 140

def fill_out_item(name, page, *fields)
  f_o_i true, name, page, *fields
end

#get_or_select(hash_inst_var, select_list) ⇒ Object

This method accomplishes the same thing as #get_or_select! but is used specifically when the instance variable being used/updated is a Hash and you only need to update one of its key/value pairs.

Pay close attention to the syntax differences between this method and #get_or_select!

First, note that the returned value of this method must be explicitly passed to the relevant key in the Hash instance variable. Note also that, unlike #get_or_select!, this method does not take a symbolized representation of the instance variable.

Examples:

@open[:day] = get_or_select(@open[:day], page.open_day)


247
248
249
250
251
252
253
254
# File 'lib/test-factory/data_factory.rb', line 247

def get_or_select(hash_inst_var, select_list)
  if hash_inst_var==nil
    select_list.selected_options[0].text
  else
    select_list.select hash_inst_var
    hash_inst_var
  end
end

#get_or_select!(inst_var_sym, select_list) ⇒ Object

This is a specialized method for use with any select list boxes that exist in the site you’re testing and will contain unpredictable default values.

Admittedly, this is a bit unusual, but one example would be be a “due date” list that changes its default selection based on today’s date. You’re going to want to do one of two things with that select list:

1) Retrieve and store the select list’s value 2) Specify a custom value to select

Enter: #get_or_select!

Assuming you just want to store the default value, then your Data Object’s instance variable for the field will–initially–be nil. In that case, #get_or_select! will grab the select list’s current value and store it in your instance variable.

On the other hand, if you want to update that field with your custom value, then your instance variable will not be nil, so #get_or_select! will take that value and use it to update the select list.

Note that this method only works with select lists that take a single selection. Multi-selects are not supported.

Also note that the first parameter is not the instance variable you need to use/update. It is a symbol that otherwise matches the instance variable.

will either be set or be used to update the page

Examples:

get_or_select! :@num_resubmissions, page.num_resubmissions

Parameters:

  • inst_var_sym (Symbol)

    A Symbol that must match the instance variable that

  • select_list (Watir::Select)

    The relevant select list element on the page



223
224
225
226
227
228
229
230
# File 'lib/test-factory/data_factory.rb', line 223

def get_or_select!(inst_var_sym, select_list)
  value = instance_variable_get inst_var_sym
  if value==nil
    instance_variable_set inst_var_sym, select_list.selected_options[0].text
  else
    select_list.select value
  end
end

#ordered_fill(page, *fields) ⇒ Object

Use when you need to specify the order that the fields should be updated.

Examples:

on PageClass do |page|
  ordered_fill page, :text_field_name, :radio_name, :select_list_name, :checkbox_name
end


128
129
130
# File 'lib/test-factory/data_factory.rb', line 128

def ordered_fill(page, *fields)
  f_o_i false, nil, page, *fields
end

#ordered_item_fill(name, page, *fields) ⇒ Object

Use instead of #fill_out_item when you need to specify the order that the fields should be updated.

Examples:

on PageClass do |page|
  ordered_item_fill 'Joe Schmoe', page, :text_field_name, :radio_name, :select_list_name, :checkbox_name
end


153
154
155
# File 'lib/test-factory/data_factory.rb', line 153

def ordered_item_fill(name, page, *fields)
  f_o_i false, name, page, *fields
end

#requires(*elements) ⇒ Object

Items passed to this method are checked to ensure that the associated class instance variable is not nil. If it is, the script is aborted and an error is thrown. Use symbols separated by commas with this method. The symbol(s) should exactly match the name of the instance variable that must not be empty.

NOTE: Currently this is backwards compatible with prior versions, which took the instance variables directly in the parameter. This backwards compatibility will be removed in some future update of the gem.

Examples:

requires :site, :assignment, :document_id

Parameters:

  • elements (Array)

    the list of items that are required.



58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/test-factory/data_factory.rb', line 58

def requires(*elements)
  elements.each do |inst_var|
    if inst_var.kind_of? Symbol
      string="@#{inst_var.to_s}"
      if instance_variable_get(string)==nil
        raise "You've neglected to define a required variable for your #{self.class}.\n\nPlease ensure you always specify a value for #{string} when you create the data object."
      end
    elsif inst_var.kind_of? String
      warn "<<<<WARNING!>>>>\n\nPlease update the requires method in your\n#{self.class} class to refer to symbols\ninstead of directly referencing the class'\ninstance variables.\n\n  Example:\n\n    This...\n      requires @document_id\n    Should be updated to...\n      requires :document_id\n\nIn future versions of TestFactory the 'requires'\nmethod will only support symbolized references\nto the instance variables. The backwards\ncompatibility will be removed.\n\n<<<<WARNING!>>>>"
    elsif inst_var==nil
      raise "You've neglected to define a required variable for your #{self.class}.\n\n<<<<WARNING!>>>>\n\nPlease update the requires method in your #{self} class to refer to symbols\ninstead of directly referencing the class'\ninstance variables.\n\nIn future versions of TestFactory the 'requires' method\nwill only support symbolized references\nto the instance variables. The backwards\ncompatibility will be removed.\n\n<<<<WARNING!>>>>"
    end
  end
end

#set_options(hash) ⇒ Object Also known as: update_options

Add this to the bottom of your Data Object’s initialize method. Converts the contents of the hash into the class’s instance variables.

Parameters:

  • hash (Hash)

    Contains all options required for creating the needed Data Object



22
23
24
25
26
# File 'lib/test-factory/data_factory.rb', line 22

def set_options(hash)
  hash.each do |key, value|
    instance_variable_set("@#{key}", value)
  end
end