Class: Test::Unit::Data::ClassMethods::Loader
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/test/unit/data.rb |
Class Method Summary
- .new(test_case) ⇒ Loader constructor Internal use only Internal use only
Instance Method Summary
- #normalize_value(value) private
- #set_test_data(header, row) private
-
#load(file_name)
Internal use only
Internal use only
Load data from file.
-
#load_csv(file_name)
Internal use only
Internal use only
Load data from CSV file.
-
#load_tsv(file_name)
Internal use only
Internal use only
Load data from TSV file.
Constructor Details
.new(test_case) ⇒ Loader
This method is for internal use only.
# File 'lib/test/unit/data.rb', line 206
def initialize(test_case) @test_case = test_case end
Instance Method Details
#load(file_name)
This method is for internal use only.
Load data from file.
#load_csv(file_name)
This method is for internal use only.
Load data from CSV file.
There are 2 types of CSV file as following examples. First, there is a header on first row and it’s first column is “label”. Another, there is no header in the file.
# File 'lib/test/unit/data.rb', line 258
def load_csv(file_name) require 'csv' first_row = true header = nil CSV.foreach(file_name) do |row| if first_row first_row = false if row.first == "label" header = row[1..-1] next end end set_test_data(header, row) end end
#load_tsv(file_name)
This method is for internal use only.
Load data from TSV file.
There are 2 types of TSV file as following examples. First, there is a header on first row and it’s first column is “label”. Another, there is no header in the file.
# File 'lib/test/unit/data.rb', line 304
def load_tsv(file_name) require "csv" if CSV.const_defined?(:VERSION) first_row = true header = nil CSV.foreach(file_name, :col_sep => "\t") do |row| if first_row first_row = false if row.first == "label" header = row[1..-1] next end end set_test_data(header, row) end else # for old CSV library first_row = true header = nil CSV.open(file_name, "r", "\t") do |row| if first_row first_row = false if row.first == "label" header = row[1..-1] next end end set_test_data(header, row) end end end
#normalize_value(value) (private)
[ GitHub ]# File 'lib/test/unit/data.rb', line 339
def normalize_value(value) return true if value == "true" return false if value == "false" begin Integer(value) rescue ArgumentError begin Float(value) rescue ArgumentError value end end end
#set_test_data(header, row) (private)
[ GitHub ]# File 'lib/test/unit/data.rb', line 353
def set_test_data(header, row) label = row.shift if header data = {} header.each_with_index do |key, i| data[key] = normalize_value(row[i]) end else data = row.collect do |cell| normalize_value(cell) end end @test_case.data(label, data) end