activewarehouse-etl 0.9.1 → 0.9.5.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (135) hide show
  1. data/.gitignore +7 -0
  2. data/0.9-UPGRADE +6 -0
  3. data/CHANGELOG +182 -150
  4. data/Gemfile +4 -0
  5. data/HOW_TO_RELEASE +9 -0
  6. data/README +18 -2
  7. data/Rakefile +35 -91
  8. data/active_support_logger.patch +78 -0
  9. data/activewarehouse-etl.gemspec +30 -0
  10. data/lib/etl.rb +10 -2
  11. data/lib/etl/batch/directives.rb +11 -1
  12. data/lib/etl/control/control.rb +2 -2
  13. data/lib/etl/control/destination.rb +27 -7
  14. data/lib/etl/control/destination/database_destination.rb +8 -6
  15. data/lib/etl/control/destination/excel_destination.rb +91 -0
  16. data/lib/etl/control/destination/file_destination.rb +6 -4
  17. data/lib/etl/control/destination/insert_update_database_destination.rb +133 -0
  18. data/lib/etl/control/destination/update_database_destination.rb +109 -0
  19. data/lib/etl/control/source.rb +3 -2
  20. data/lib/etl/control/source/database_source.rb +14 -10
  21. data/lib/etl/control/source/file_source.rb +2 -2
  22. data/lib/etl/engine.rb +17 -15
  23. data/lib/etl/execution.rb +0 -1
  24. data/lib/etl/execution/batch.rb +3 -1
  25. data/lib/etl/execution/migration.rb +5 -0
  26. data/lib/etl/parser/delimited_parser.rb +20 -1
  27. data/lib/etl/parser/excel_parser.rb +112 -0
  28. data/lib/etl/processor/bulk_import_processor.rb +4 -2
  29. data/lib/etl/processor/database_join_processor.rb +68 -0
  30. data/lib/etl/processor/escape_csv_processor.rb +77 -0
  31. data/lib/etl/processor/filter_row_processor.rb +51 -0
  32. data/lib/etl/processor/ftp_downloader_processor.rb +68 -0
  33. data/lib/etl/processor/ftp_uploader_processor.rb +65 -0
  34. data/lib/etl/processor/imapattachment_downloader_processor.rb +91 -0
  35. data/lib/etl/processor/pop3attachment_downloader_processor.rb +90 -0
  36. data/lib/etl/processor/sftp_downloader_processor.rb +63 -0
  37. data/lib/etl/processor/sftp_uploader_processor.rb +63 -0
  38. data/lib/etl/processor/zip_file_processor.rb +27 -0
  39. data/lib/etl/transform/calculation_transform.rb +71 -0
  40. data/lib/etl/transform/foreign_key_lookup_transform.rb +25 -7
  41. data/lib/etl/transform/ordinalize_transform.rb +3 -1
  42. data/lib/etl/transform/split_fields_transform.rb +27 -0
  43. data/lib/etl/version.rb +1 -7
  44. data/test-matrix.yml +10 -0
  45. data/test/.gitignore +1 -0
  46. data/test/.ignore +2 -0
  47. data/test/all.ebf +6 -0
  48. data/test/apache_combined_log.ctl +11 -0
  49. data/test/batch_test.rb +41 -0
  50. data/test/batch_with_error.ebf +6 -0
  51. data/test/batched1.ctl +0 -0
  52. data/test/batched2.ctl +0 -0
  53. data/test/block_processor.ctl +6 -0
  54. data/test/block_processor_error.ctl +1 -0
  55. data/test/block_processor_pre_post_process.ctl +4 -0
  56. data/test/block_processor_remove_rows.ctl +5 -0
  57. data/test/block_processor_test.rb +38 -0
  58. data/test/config/Gemfile.rails-2.3.x +3 -0
  59. data/test/config/Gemfile.rails-2.3.x.lock +38 -0
  60. data/test/config/Gemfile.rails-3.0.x +3 -0
  61. data/test/config/Gemfile.rails-3.0.x.lock +49 -0
  62. data/test/config/common.rb +21 -0
  63. data/test/connection/mysql/connection.rb +9 -0
  64. data/test/connection/mysql/schema.sql +36 -0
  65. data/test/connection/postgresql/connection.rb +13 -0
  66. data/test/connection/postgresql/schema.sql +39 -0
  67. data/test/control_test.rb +43 -0
  68. data/test/data/apache_combined_log.txt +3 -0
  69. data/test/data/bulk_import.txt +3 -0
  70. data/test/data/bulk_import_with_empties.txt +3 -0
  71. data/test/data/decode.txt +3 -0
  72. data/test/data/delimited.txt +3 -0
  73. data/test/data/encode_source_latin1.txt +2 -0
  74. data/test/data/excel.xls +0 -0
  75. data/test/data/excel2.xls +0 -0
  76. data/test/data/fixed_width.txt +3 -0
  77. data/test/data/multiple_delimited_1.txt +3 -0
  78. data/test/data/multiple_delimited_2.txt +3 -0
  79. data/test/data/people.txt +3 -0
  80. data/test/data/sax.xml +14 -0
  81. data/test/data/xml.xml +16 -0
  82. data/test/date_dimension_builder_test.rb +96 -0
  83. data/test/delimited.ctl +30 -0
  84. data/test/delimited_absolute.ctl +33 -0
  85. data/test/delimited_destination_db.ctl +25 -0
  86. data/test/delimited_excel.ctl +31 -0
  87. data/test/delimited_insert_update.ctl +34 -0
  88. data/test/delimited_update.ctl +34 -0
  89. data/test/delimited_with_bulk_load.ctl +34 -0
  90. data/test/destination_test.rb +275 -0
  91. data/test/directive_test.rb +23 -0
  92. data/test/encode_processor_test.rb +32 -0
  93. data/test/engine_test.rb +32 -0
  94. data/test/errors.ctl +24 -0
  95. data/test/etl_test.rb +42 -0
  96. data/test/excel.ctl +24 -0
  97. data/test/excel2.ctl +25 -0
  98. data/test/fixed_width.ctl +35 -0
  99. data/test/generator_test.rb +14 -0
  100. data/test/inline_parser.ctl +17 -0
  101. data/test/mocks/mock_destination.rb +26 -0
  102. data/test/mocks/mock_source.rb +25 -0
  103. data/test/model_source.ctl +14 -0
  104. data/test/multiple_delimited.ctl +22 -0
  105. data/test/multiple_source_delimited.ctl +39 -0
  106. data/test/parser_test.rb +224 -0
  107. data/test/performance/delimited.ctl +30 -0
  108. data/test/processor_test.rb +44 -0
  109. data/test/row_processor_test.rb +17 -0
  110. data/test/sax.ctl +26 -0
  111. data/test/scd/1.txt +1 -0
  112. data/test/scd/2.txt +1 -0
  113. data/test/scd/3.txt +1 -0
  114. data/test/scd_test.rb +257 -0
  115. data/test/scd_test_type_1.ctl +43 -0
  116. data/test/scd_test_type_2.ctl +34 -0
  117. data/test/screen_test.rb +9 -0
  118. data/test/screen_test_error.ctl +3 -0
  119. data/test/screen_test_fatal.ctl +3 -0
  120. data/test/source_test.rb +139 -0
  121. data/test/test_helper.rb +34 -0
  122. data/test/transform_test.rb +101 -0
  123. data/test/vendor/adapter_extensions-0.5.0/CHANGELOG +26 -0
  124. data/test/vendor/adapter_extensions-0.5.0/LICENSE +16 -0
  125. data/test/vendor/adapter_extensions-0.5.0/README +7 -0
  126. data/test/vendor/adapter_extensions-0.5.0/Rakefile +158 -0
  127. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions.rb +12 -0
  128. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/connection_adapters/abstract_adapter.rb +44 -0
  129. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/connection_adapters/mysql_adapter.rb +63 -0
  130. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/connection_adapters/postgresql_adapter.rb +52 -0
  131. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/connection_adapters/sqlserver_adapter.rb +44 -0
  132. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/version.rb +10 -0
  133. data/test/xml.ctl +31 -0
  134. metadata +229 -70
  135. data/lib/etl/execution/record.rb +0 -18
@@ -0,0 +1,30 @@
1
+ source :in, {
2
+ :file => 'data/delimited.txt',
3
+ :parser => {
4
+ :name => :delimited
5
+ }
6
+ },
7
+ [
8
+ :first_name,
9
+ :last_name,
10
+ :ssn,
11
+ :age,
12
+ :sex
13
+ ]
14
+
15
+ #transform :age, :type, :type => :number
16
+ transform :ssn, :sha1
17
+ transform(:ssn){ |n, v, row| v[0,24] }
18
+ transform :sex, :decode, {:decode_table_path => 'data/decode.txt'}
19
+
20
+ destination :out, {
21
+ :file => 'output/delimited.txt'
22
+ },
23
+ {
24
+ :order => [:id, :first_name, :last_name, :ssn, :age, :sex, :test, :calc_test],
25
+ :virtual => {
26
+ :id => :surrogate_key,
27
+ :test => "test!",
28
+ :calc_test => Time.now
29
+ },
30
+ }
@@ -0,0 +1,33 @@
1
+ # puts "executing delimited.ctl"
2
+
3
+ source :in, {
4
+ :file => '/tmp/delimited_abs.txt',
5
+ :parser => {
6
+ :name => :delimited
7
+ }
8
+ },
9
+ [
10
+ :first_name,
11
+ :last_name,
12
+ :ssn,
13
+ {
14
+ :name => :age,
15
+ :type => :integer
16
+ },
17
+ :sex
18
+ ]
19
+
20
+ transform :ssn, :sha1
21
+ transform(:ssn){ |n, v, row| v[0,24] }
22
+ transform :sex, :decode, {:decode_table_path => 'data/decode.txt'}
23
+
24
+ destination :out, {
25
+ :file => 'data/delimited_abs.txt'
26
+ },
27
+ {
28
+ :order => [:first_name, :last_name, :ssn, :age, :sex, :test, :calc_test],
29
+ :virtual => {
30
+ :test => "test!",
31
+ :calc_test => Time.now
32
+ }
33
+ }
@@ -0,0 +1,25 @@
1
+ # puts "executing delimited.ctl"
2
+
3
+ source :in, {
4
+ :file => 'data/delimited.txt',
5
+ :parser => :delimited
6
+ },
7
+ [
8
+ :id,
9
+ :first_name,
10
+ :last_name,
11
+ :ssn
12
+ ]
13
+
14
+ transform :ssn, :sha1
15
+ transform(:ssn){ |v| v[0,24] }
16
+
17
+ destination :out, {
18
+ :type => :database,
19
+ :target => :data_warehouse,
20
+ :database => 'etl_unittest',
21
+ :table => 'people',
22
+ },
23
+ {
24
+ :order => [:id, :first_name, :last_name, :ssn]
25
+ }
@@ -0,0 +1,31 @@
1
+ source :in, {
2
+ :file => 'data/delimited.txt',
3
+ :parser => {
4
+ :name => :delimited
5
+ }
6
+ },
7
+ [
8
+ :first_name,
9
+ :last_name,
10
+ :ssn,
11
+ :age,
12
+ :sex
13
+ ]
14
+
15
+ #transform :age, :type, :type => :number
16
+ transform :ssn, :sha1
17
+ transform(:ssn){ |n, v, row| v[0,24] }
18
+ transform :sex, :decode, {:decode_table_path => 'data/decode.txt'}
19
+
20
+ destination :out, {
21
+ :type => :excel,
22
+ :file => 'output/delimited_excel.xls'
23
+ },
24
+ {
25
+ :order => [:id, :first_name, :last_name, :ssn, :age, :sex, :test, :calc_test],
26
+ :virtual => {
27
+ :id => :surrogate_key,
28
+ :test => "test!",
29
+ :calc_test => Time.now
30
+ },
31
+ }
@@ -0,0 +1,34 @@
1
+ source :in, {
2
+ :file => 'data/delimited.txt',
3
+ :parser => {
4
+ :name => :delimited
5
+ }
6
+ },
7
+ [
8
+ :first_name,
9
+ :last_name,
10
+ :ssn,
11
+ :age,
12
+ :sex
13
+ ]
14
+
15
+ #transform :age, :type, :type => :number
16
+ transform :ssn, :sha1
17
+ transform(:ssn){ |n, v, row| v[0,24] }
18
+ transform :sex, :decode, {:decode_table_path => 'data/decode.txt'}
19
+
20
+ destination :out, {
21
+ :type => :insert_update_database,
22
+ :target => :data_warehouse,
23
+ :database => 'etl_unittest',
24
+ :table => 'people'
25
+ },
26
+ {
27
+ :primarykey => [:id],
28
+ :order => [:id, :first_name, :last_name, :ssn, :age, :sex, :test, :calc_test],
29
+ :virtual => {
30
+ :id => :surrogate_key,
31
+ :test => "test!",
32
+ :calc_test => Time.now
33
+ },
34
+ }
@@ -0,0 +1,34 @@
1
+ source :in, {
2
+ :file => 'data/delimited.txt',
3
+ :parser => {
4
+ :name => :delimited
5
+ }
6
+ },
7
+ [
8
+ :first_name,
9
+ :last_name,
10
+ :ssn,
11
+ :age,
12
+ :sex
13
+ ]
14
+
15
+ #transform :age, :type, :type => :number
16
+ transform :ssn, :sha1
17
+ transform(:ssn){ |n, v, row| v[0,24] }
18
+ transform :sex, :decode, {:decode_table_path => 'data/decode.txt'}
19
+
20
+ destination :out, {
21
+ :type => :update_database,
22
+ :target => :data_warehouse,
23
+ :database => 'etl_unittest',
24
+ :table => 'people'
25
+ },
26
+ {
27
+ :conditions => [{:field => "\#{conn.quote_column_name(:id)}", :value => "\#{conn.quote(row[:id])}", :comp => "="}],
28
+ :order => [:id, :first_name, :last_name, :ssn, :age, :sex, :test, :calc_test],
29
+ :virtual => {
30
+ :id => :surrogate_key,
31
+ :test => "test!",
32
+ :calc_test => Time.now
33
+ },
34
+ }
@@ -0,0 +1,34 @@
1
+ infile = 'data/people.txt'
2
+ outfile = 'output/people.txt'
3
+
4
+ source :in, {
5
+ :file => infile,
6
+ :parser => {
7
+ :name => :delimited
8
+ }
9
+ },
10
+ [
11
+ :first_name,
12
+ :last_name,
13
+ ]
14
+
15
+ before_write :surrogate_key, :target => :data_warehouse, :table => 'person_dimension', :column => 'id'
16
+ before_write :check_exists, {
17
+ :target => :data_warehouse,
18
+ :table => 'person_dimension',
19
+ :columns => [:first_name, :last_name]
20
+ }
21
+
22
+ destination :out, {
23
+ :file => outfile
24
+ },
25
+ {
26
+ :order => [:id, :first_name, :last_name]
27
+ }
28
+
29
+ post_process :bulk_import, {
30
+ :file => outfile,
31
+ :target => :data_warehouse,
32
+ :table => 'person_dimension',
33
+ :order => [:id, :first_name, :last_name]
34
+ }
@@ -0,0 +1,275 @@
1
+ require 'rubygems'
2
+ require 'spreadsheet'
3
+ require File.dirname(__FILE__) + '/test_helper'
4
+
5
+ class Person < ActiveRecord::Base
6
+ end
7
+
8
+ class BadDestination < ETL::Control::Destination
9
+ def initialize(control, configuration, mapping)
10
+ super
11
+ end
12
+ end
13
+
14
+ # Test the functionality of destinations
15
+ class DestinationTest < Test::Unit::TestCase
16
+ # Test a file destination
17
+ def test_file_destination
18
+ outfile = 'output/test_file_destination.txt'
19
+ outfile2 = 'output/test_file_destination.2.txt'
20
+ row = ETL::Row[ :address => '123 SW 1st Street', :city => 'Melbourne',
21
+ :state => 'Florida', :country => 'United States' ]
22
+ row_needs_escape = ETL::Row[ :address => "Allen's Way",
23
+ :city => 'Some City', :state => 'Some State', :country => 'Mexico' ]
24
+ control = ETL::Control::Control.parse(File.dirname(__FILE__) +
25
+ '/delimited.ctl')
26
+
27
+ # First define a basic configuration to check defaults
28
+ configuration = {
29
+ :file => outfile,
30
+ :buffer_size => 0,
31
+ }
32
+ mapping = {
33
+ :order => [:address, :city, :state, :country, :country_code],
34
+ :virtual => {
35
+ :country_code => Proc.new do |r|
36
+ {
37
+ 'United States' => 'US',
38
+ 'Mexico' => 'MX'
39
+ }[r[:country]]
40
+ end
41
+ }
42
+ }
43
+
44
+ dest = ETL::Control::FileDestination.new(control, configuration, mapping)
45
+ dest.write(row)
46
+ dest.write(row_needs_escape)
47
+ dest.close
48
+
49
+ configuration[:file] = outfile2
50
+ configuration[:separator] = '|'
51
+ configuration[:eol] = "[EOL]\n"
52
+
53
+ dest = ETL::Control::FileDestination.new(control, configuration, mapping)
54
+ dest.write(row)
55
+ dest.write(row_needs_escape)
56
+ dest.close
57
+
58
+ # Read back the resulting
59
+ lines = open(File.join(File.dirname(__FILE__), outfile), 'r').readlines
60
+ assert_equal "123 SW 1st Street,Melbourne,Florida,United States,US\n", lines[0]
61
+ assert_equal "Allen's Way,Some City,Some State,Mexico,MX\n", lines[1]
62
+
63
+ lines = open(File.join(File.dirname(__FILE__), outfile2), 'r').readlines
64
+ assert_equal "123 SW 1st Street|Melbourne|Florida|United States|US[EOL]\n", lines[0]
65
+ assert_equal "Allen's Way|Some City|Some State|Mexico|MX[EOL]\n", lines[1]
66
+ end
67
+
68
+ # Test a database destination
69
+ def test_database_destination
70
+ row = ETL::Row[:id => 1, :first_name => 'Bob', :last_name => 'Smith', :ssn => '111234444']
71
+ row_needs_escape = ETL::Row[:id => 2, :first_name => "Foo's", :last_name => "Bar", :ssn => '000000000' ]
72
+ control = ETL::Control::Control.parse(File.dirname(__FILE__) +
73
+ '/delimited.ctl')
74
+
75
+ Person.delete_all
76
+ assert_equal 0, Person.count
77
+
78
+ # First define a basic configuration to check defaults
79
+ configuration = {
80
+ :target => :data_warehouse,
81
+ :database => 'etl_unittest',
82
+ :table => 'people',
83
+ :buffer_size => 0
84
+ }
85
+ mapping = { :order => [:id, :first_name, :last_name, :ssn] }
86
+ dest = ETL::Control::DatabaseDestination.new(control, configuration, mapping)
87
+ dest.write(row)
88
+ dest.close
89
+
90
+ assert_equal 1, Person.find(:all).length
91
+ end
92
+
93
+ def test_database_destination_with_control
94
+ row = ETL::Row[:id => 1, :first_name => 'Bob', :last_name => 'Smith', :ssn => '111234444']
95
+ control = ETL::Control::Control.parse(File.dirname(__FILE__) +
96
+ '/delimited_destination_db.ctl')
97
+ Person.delete_all
98
+ assert_equal 0, Person.count
99
+ d = control.destinations.first
100
+ dest = ETL::Control::DatabaseDestination.new(control, d.configuration, d.mapping)
101
+ dest.write(row)
102
+ dest.close
103
+ assert_equal 1, Person.count
104
+ end
105
+
106
+ def test_unique
107
+ row1 = ETL::Row[:id => 1, :first_name => 'Bob', :last_name => 'Smith', :ssn => '111234444']
108
+ row2 = ETL::Row[:id => 2, :first_name => 'Bob', :last_name => 'Smith', :ssn => '111234444']
109
+ row3 = ETL::Row[:id => 3, :first_name => 'John', :last_name => 'Smith', :ssn => '000112222']
110
+
111
+ outfile = 'output/test_unique.txt'
112
+ control = ETL::Control::Control.parse(File.dirname(__FILE__) + '/delimited.ctl')
113
+
114
+ # First define a basic configuration to check defaults
115
+ configuration = { :file => outfile, :buffer_size => 0, :unique => [:ssn]}
116
+ mapping = {
117
+ :order => [:first_name, :last_name, :ssn]
118
+ }
119
+ dest = ETL::Control::FileDestination.new(control, configuration, mapping)
120
+ dest.write(row1)
121
+ dest.write(row2)
122
+ dest.write(row3)
123
+
124
+ # Close (and flush) the destination
125
+ dest.close
126
+
127
+ # Read back the resulting
128
+ lines = open(File.join(File.dirname(__FILE__), outfile), 'r').readlines
129
+ assert_equal "Bob,Smith,111234444\n", lines[0]
130
+ assert_equal "John,Smith,000112222\n", lines[1]
131
+ end
132
+
133
+ def test_multiple_unique
134
+ row1 = ETL::Row[:id => 1, :first_name => 'Bob', :last_name => 'Smith', :ssn => '111234444']
135
+ row2 = ETL::Row[:id => 2, :first_name => 'Bob', :last_name => 'Smith', :ssn => '111234444']
136
+ row3 = ETL::Row[:id => 3, :first_name => 'Bob', :last_name => 'Smith', :ssn => '000112222']
137
+
138
+ outfile = 'output/test_multiple_unique.txt'
139
+ control = ETL::Control::Control.parse(File.dirname(__FILE__) + '/delimited.ctl')
140
+
141
+ # First define a basic configuration to check defaults
142
+ configuration = { :file => outfile, :buffer_size => 0, :unique => [:last_name,:first_name]}
143
+ mapping = {
144
+ :order => [:first_name, :last_name, :ssn]
145
+ }
146
+ dest = ETL::Control::FileDestination.new(control, configuration, mapping)
147
+ dest.write(row1)
148
+ dest.write(row2)
149
+ dest.write(row3)
150
+
151
+ # Close (and flush) the destination
152
+ dest.close
153
+
154
+ # Read back the resulting
155
+ lines = open(File.join(File.dirname(__FILE__), outfile), 'r').readlines
156
+ assert_equal "Bob,Smith,111234444\n", lines[0]
157
+ assert_equal 1, lines.length
158
+ end
159
+
160
+ def test_bad_destination
161
+ control = ETL::Control::Control.parse_text('')
162
+ configuration = {}
163
+ mapping = {}
164
+ dest = BadDestination.new(control, configuration, mapping)
165
+ dest.write(nil)
166
+ assert_raise NotImplementedError do
167
+ dest.flush
168
+ end
169
+ assert_raise NotImplementedError do
170
+ dest.close
171
+ end
172
+ end
173
+
174
+ def test_excel_destination
175
+ outfile = 'output/test_excel_destination.xls'
176
+ row = ETL::Row[ :address => '123 SW 1st Street', :city => 'Melbourne',
177
+ :state => 'Florida', :country => 'United States' ]
178
+ control = ETL::Control::Control.parse(File.dirname(__FILE__) +
179
+ '/delimited_excel.ctl')
180
+
181
+ # First define a basic configuration to check defaults
182
+ configuration = {
183
+ :file => outfile,
184
+ :buffer_size => 0,
185
+ }
186
+ mapping = {
187
+ :order => [:address, :city, :state, :country, :country_code],
188
+ :virtual => {
189
+ :country_code => Proc.new do |r|
190
+ {
191
+ 'United States' => 'US',
192
+ 'Mexico' => 'MX'
193
+ }[r[:country]]
194
+ end
195
+ }
196
+ }
197
+
198
+ dest = ETL::Control::ExcelDestination.new(control, configuration, mapping)
199
+ dest.write(row)
200
+ dest.close
201
+
202
+ # Read back the resulting
203
+ book = Spreadsheet.open File.join(File.dirname(__FILE__), outfile)
204
+ sheet = book.worksheet(0)
205
+
206
+ assert_equal "123 SW 1st Street", sheet[0, 0]
207
+ assert_equal "Melbourne", sheet[0, 1]
208
+ assert_equal "Florida", sheet[0, 2]
209
+ assert_equal "United States", sheet[0, 3]
210
+ assert_equal "US", sheet[0, 4]
211
+ end
212
+
213
+ # Test a update database destination
214
+ def test_update_database_destination
215
+ row = ETL::Row[:id => 1, :first_name => 'Bob', :last_name => 'Smith', :ssn => '111234444']
216
+ control = ETL::Control::Control.parse(File.dirname(__FILE__) +
217
+ '/delimited_update.ctl')
218
+
219
+ Person.delete_all
220
+ assert_equal 0, Person.count
221
+ test_database_destination
222
+
223
+ # First define a basic configuration to check defaults
224
+ configuration = {
225
+ :type => :update_database,
226
+ :target => :data_warehouse,
227
+ :database => 'etl_unittest',
228
+ :table => 'people',
229
+ :buffer_size => 0
230
+ }
231
+ mapping = {
232
+ :conditions => [{:field => "\#{conn.quote_column_name(:id)}", :value => "\#{conn.quote(row[:id])}", :comp => "="}],
233
+ :order => [:id, :first_name, :last_name, :ssn]
234
+ }
235
+ dest = ETL::Control::UpdateDatabaseDestination.new(control, configuration, mapping)
236
+ dest.write(row)
237
+ dest.close
238
+
239
+ assert_equal 1, Person.find(:all).length
240
+
241
+ end
242
+
243
+ # Test a insert update database destination
244
+ def test_insert_update_database_destination
245
+ row = ETL::Row[:id => 1, :first_name => 'Bob', :last_name => 'Smith', :ssn => '111234444']
246
+ row_needs_escape = ETL::Row[:id => 2, :first_name => "Foo's", :last_name => "Bar", :ssn => '000000000' ]
247
+ row_needs_update = ETL::Row[:id => 1, :first_name => "Sean", :last_name => "Toon", :ssn => '000000000' ]
248
+ control = ETL::Control::Control.parse(File.dirname(__FILE__) +
249
+ '/delimited_insert_update.ctl')
250
+
251
+ Person.delete_all
252
+ assert_equal 0, Person.count
253
+
254
+ # First define a basic configuration to check defaults
255
+ configuration = {
256
+ :type => :insert_update_database,
257
+ :target => :data_warehouse,
258
+ :database => 'etl_unittest',
259
+ :table => 'people',
260
+ :buffer_size => 0
261
+ }
262
+ mapping = {
263
+ :primarykey => [:id],
264
+ :order => [:id, :first_name, :last_name, :ssn]
265
+ }
266
+ dest = ETL::Control::InsertUpdateDatabaseDestination.new(control, configuration, mapping)
267
+ dest.write(row)
268
+ dest.write(row_needs_escape)
269
+ dest.write(row_needs_update)
270
+ dest.close
271
+
272
+ assert_equal 2, Person.find(:all).length
273
+ end
274
+
275
+ end