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.
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.
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.
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.
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 |