Class: Test::Unit::Data::ClassMethods::Loader

Inherits:
Object
  • Object
show all
Defined in:
lib/test/unit/data.rb,
lib/test/unit/data.rb

Instance Method Summary collapse

Constructor Details

#initialize(test_case) ⇒ Loader

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Loader.



97
98
99
# File 'lib/test/unit/data.rb', line 97

def initialize(test_case)
  @test_case = test_case
end

Instance Method Details

#load(file_name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Load data from file.

Parameters:

  • file_name (String)

    full path to test data file. File format is automatically detected from filename extension.

Raises:

  • (ArgumentError)

    if file_name is not supported file format.

See Also:



109
110
111
112
113
114
115
116
117
118
# File 'lib/test/unit/data.rb', line 109

def load(file_name)
  case File.extname(file_name).downcase
  when ".csv"
    load_csv(file_name)
  when ".tsv"
    load_tsv(file_name)
  else
    raise ArgumentError, "unsupported file format: <#{file_name}>"
  end
end

#load_csv(file_name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

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.

Examples:

Load data from CSV file with header

# test-data.csv:
#  label,expected,target
#  empty string,true,""
#  plain string,false,hello
#
load_data("/path/to/test-data.csv")
def test_empty?(data)
  assert_equal(data["expected"], data["target"].empty?)
end

Load data from CSV file without header

# test-data-without-header.csv:
#  empty string,true,""
#  plain string,false,hello
#
load_data("/path/to/test-data-without-header.csv")
def test_empty?(data)
  expected, target = data
  assert_equal(expected, target.empty?)
end


149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/test/unit/data.rb', line 149

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) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

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.

Examples:

Load data from TSV file with header

# test-data.tsv:
#  label	expected	target
#  empty string	true	""
#  plain string	false	hello
#
load_data("/path/to/test-data.tsv")
def test_empty?(data)
  assert_equal(data["expected"], data["target"].empty?)
end

Load data from TSV file without header

# test-data-without-header.tsv:
#  empty string	true	""
#  plain string	false	hello
#
load_data("/path/to/test-data-without-header.tsv")
def test_empty?(data)
  expected, target = data
  assert_equal(expected, target.empty?)
end


195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/test/unit/data.rb', line 195

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