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.

ファイルからデータを読み込みます。

Parameters:

  • file_name (String)

    データファイルのフルパスを指定します。ファイルフォーマットはファイルの拡張子から自動的に判別します。

Raises:

  • (ArgumentError)

    file_name がサポートされていないファイルフォーマットのときに発生します。

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.

CSVファイルからデータを読み込みます。

以下の2種類のサンプルのようなCSVファイルを使用できます。 一つ目は、一行目の最初のカラムが”label”という文字列であるものです。 もう一つは、ヘッダ行のないファイルです。

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.

TSVファイルからデータを読み込みます。

以下の2種類のサンプルのようなTSVファイルを使用できます。 一つ目は、一行目の最初のカラムが”label”という文字列であるものです。 もう一つは、ヘッダ行のないファイルです。

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