Class: Test::Unit::Data::ClassMethods::Loader
- Inherits:
-
Object
- Object
- Test::Unit::Data::ClassMethods::Loader
- Defined in:
- lib/test/unit/data.rb
Instance Method Summary collapse
-
#initialize(test_case) ⇒ Loader
constructor
private
A new instance of Loader.
-
#load(file_name) ⇒ Object
private
Load data from file.
-
#load_csv(file_name) ⇒ Object
private
Load data from CSV file.
-
#load_tsv(file_name) ⇒ Object
private
Load data from TSV file.
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.
206 207 208 |
# File 'lib/test/unit/data.rb', line 206 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.
218 219 220 221 222 223 224 225 226 227 |
# File 'lib/test/unit/data.rb', line 218 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.
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# 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) ⇒ 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.
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# 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 |