Project

General

Profile

1
selfDir_uZPPqC := $(dir $(lastword $(MAKEFILE_LIST)))
2
root := $(selfDir_uZPPqC)..
3
include $(root)/lib/common.Makefile
4

    
5

    
6
##### Configuration
7

    
8
# Command line
9
debug ?=
10
full_import ?=
11
import_source ?= 1
12
log ?= $(if $(test),,1)
13
noclobber ?=
14
profile ?=
15
quiet ?=
16
reverify ?= 1
17
schema_only ?=
18
use_staged ?= $(by_col)
19

    
20
# Makefile
21
exts ?= csv tsv tab txt dat dmp xml
22
test_n ?= 2
23

    
24
##### Vars/functions
25

    
26
# Paths
27
datasrc := $(patsubst .%,%,$(notdir $(realpath .)))
28
bin := $(root)/bin
29
mappings := $(root)/mappings
30

    
31
# Make
32
SHELL := /bin/bash
33
selfMake = $(MAKE) --makefile=../input.Makefile
34
subMake = $(MAKE) $(@:$(root)/%=%) --directory=$(root)
35
+_ = $(+:_%=)
36
# used to filter the output of embedded $(shell make ...) invocations
37
filter_make := grep -vF -e lib -e ".Makefile'."
38
addBeforeExt = $(basename $(2))$(1)$(suffix $(2))
39

    
40
# Terminal
41
termCols := $(shell tput cols)
42

    
43
# Commands
44
MKDIR = mkdir -p
45
mkdir = $(MKDIR) $(@D)
46
diff = diff --unified=2
47
diffIgnoreSpace = $(diff) --ignore-space-change
48
diffVerbose = $(if $(verbose),diff --side-by-side --left-column\
49
--width=$(termCols),$(diff))
50

    
51
# BIEN commands
52
sortFilenames = $(shell $(bin)/sort_filenames $(1))
53
selfMap = $(bin)/cols 0 0
54
psqlAsBien := $(bin)/psql_verbose_vegbien
55
psqlNoSearchPath := env no_search_path=1 $(psqlAsBien)
56
# Usage: ($(inDatasrc); cat $(file))|$(psqlCmd)
57
inDatasrc := echo 'SET search_path TO "$(datasrc)";'
58

    
59
# SVN
60
setSvnIgnore = svn propset svn:ignore $(2) $(1)
61
define addDirWithIgnore
62
$(addDir)
63
$(setSvnIgnore)
64
endef
65

    
66
##### Environment
67

    
68
export PATH := $(bin):$(PATH)
69

    
70
##### General targets
71

    
72
all: _always maps ;
73

    
74
clean: _always
75
	$(RM) $(all)
76

    
77
remake: _always clean
78
	+$(selfMake)
79
# re-run make so that cache of existing files is reset
80

    
81
# Only remake if doesn't exist. This prevents unintentional remaking when the
82
# make script is newly checked out from svn (which sets the mod time to now) but
83
# the output is synced externally.
84
# Can't remove prereq to do this, because it determines when the rule applies.
85
make_script = $(if $(wildcard $@),,"time" ./$< >$@)
86

    
87
%/: %/map.csv _always ;
88

    
89
%/: % _always ;
90

    
91
%: %.make
92
	$(make_script)
93
.PRECIOUS: % # save partial outputs of aborted src make scripts
94

    
95
##### Tables discovery
96

    
97
sortFile := import_order.txt
98
noImportFile := _no_import
99

    
100
dontImport = $(wildcard $(noImportFile))$(wildcard $(1)/$(noImportFile))$(if\
101
$(import_source),,$(filter Source,$(1)))
102

    
103
ifeq ($(sort_file_updated),)# keep $(sortFile) up-to-date
104
$(shell sort_file_updated=1 $(selfMake) $(sortFile)|$(filter_make) >&2)
105
export sort_file_updated=1
106
endif
107

    
108
sort_file_tables := $(if $(wildcard $(sortFile)),$(shell cat $(sortFile)))
109
    # $(shell) replaces "\n" with " "
110
tables := $(sort_file_tables)
111
allSubdirs := $(call wildcard/,*/)
112
allTables := $(call sortFilenames,$(filter-out _% verify logs,$(allSubdirs:%/=%)))
113
joinedTables := $(filter-out $(tables),$(allTables))
114
allTables := $(strip $(joinedTables) $(tables))# move joined tables to beginning
115
has_visible_files = $(call wildcard/,$(1)/*)
116
allTables := $(foreach table,$(allTables),$(if\
117
$(call has_visible_files,$(table)),$(table)))
118
ifeq ($(tables),)# none specified in sort file
119
tables := $(allTables)
120
endif
121
importTables := $(foreach table,$(tables),$(if\
122
$(call dontImport,$(table)),,$(table)))
123

    
124
list_tables: _always # use `make -s` to avoid echoing commands
125
	@for table in $(tables); do echo "$$table"; done
126

    
127
$(sortFile): _always
128
	# add any missing tables to $(sortFile)
129
	$(if $(filter-out $(sort_file_tables),$(tables)),$(selfMake) -s list_tables >$@)
130

    
131
##### SVN
132

    
133
svnFilesGlob:= */{,$(noImportFile),{,.}{data,map,VegBIEN}.csv{,.*},*header.*,*.sql,test.xml.ref}
134
svnFilesGlob := {map.csv,*{schema,grants,~}*.sql,{,*/}{*.make,*terms.csv},$(svnFilesGlob)}
135
_svnFilesGlob := {_MySQL/{,*schema*.sql,*.make},{,*/}{*{run,Makefile},*.{md5,url,pdf},*README.TXT}}
136
svnFiles = $(filter-out _% logs/% %.data.sql,$(call wildcard/,$(svnFilesGlob)))\
137
$(call wildcard/,$(_svnFilesGlob))
138

    
139
add: _always $(if $(call dontImport,.),,add!) ;
140

    
141
# To update all inputs with these settings: make inputs/add
142
add!: _always Source/add $(allTables:%=%/add)
143
	$(call setSvnIgnore,.,'*')
144
	$(call addDirWithIgnore,logs,$$'*.gz\n*.log.sql\n*.trace')
145
	$(call addDirWithIgnore,verify,$$'*.out\n*.csv\n*.xls\n*.xlsx')
146
	$(call addFile,import_order.txt)
147
	$(if $(wildcard _MySQL/),$(call addDirWithIgnore,_MySQL,'*'))
148
	$(if $(wildcard _src/),$(call addDirWithIgnore,_src,'*'))
149
	$(if $(wildcard _archive/),$(call addDirWithIgnore,_archive,'*'))
150
	$(call add*,$(svnFiles))
151

    
152
# Adds a new table subdir
153
%/add: _always
154
	$(call addDirWithIgnore,$*,'*')
155
	$(call addDirWithIgnore,$*/logs,$$'*.gz\n*.log.sql\n*.trace')
156

    
157
##### Existing maps discovery
158

    
159
anyMap := %/map.csv %/VegBIEN.csv %/unmapped_terms.csv %/new_terms.csv
160

    
161
exts := $(call ci,$(exts))
162
extsFilter := $(addprefix %.,$(exts))
163
dataOnly = $(filter $(extsFilter),$(1))
164

    
165
anyTest = $*/test.%
166
srcsOnly = $(filter-out $(anyMap) $(anyTest) %/logs,$(call dataOnly,$(1)))
167

    
168
srcDict := map.csv
169

    
170
vocab := $(mappings)/VegCore.vocab.csv
171
thesaurus := $(mappings)/VegCore.thesaurus.csv
172
coreMap := $(mappings)/VegCore-VegBIEN.csv
173

    
174
viaMaps := $(tables:%=%/map.csv)
175

    
176
autogenMaps := $(subst map.,VegBIEN.,$(viaMaps))
177
directMaps := $(autogenMaps) $(filter-out $(autogenMaps),\
178
$(wildcard */VegBIEN.csv))
179

    
180
##### Sources
181

    
182
srcs = $(call sortFilenames,$(call srcsOnly,$(wildcard $*/*)))
183
nonHeaderSrcs = $(filter-out %/header.csv,$(srcs))
184
isRef = $(if $(nonHeaderSrcs),,1)
185
    # empty subdir, so references an already-installed staging table
186
isXml = $(filter %.xml,$(nonHeaderSrcs))
187
nonXml = $(if $(isXml),,1)
188
isCsv = $(if $(nonHeaderSrcs),$(if $(isXml),,1))
189
    # true if $(srcs) non-empty and contains no *.xml
190
catSrcs = $(bin)/cat$(if $(nonXml),_csv) $(nonHeaderSrcs)
191
withCatSrcs = $(catSrcs:$(bin)/%=$(bin)/with_%) --
192

    
193
# Run with `make -s` to avoid echoing make commands
194
cat: $(importTables:%=%/cat) _always ;
195

    
196
%/cat: _always
197
	$(catSrcs)
198

    
199
##### Input data retrieval
200

    
201
# Must come before `%.sql: _MySQL/%.sql` to override it
202
%.sql: %.sql.make
203
	$(make_script)
204

    
205
# The export must be created with:
206
# `--compatible=postgresql --add-locks=false --set-charset --no-create-info`
207
# Must come before `%.sql: _MySQL/%.sql` to override it
208
%.data.sql: _MySQL/%.data.sql
209
	$(if $(wildcard $@),,$(bin)/my2pg.data <$< >$@)
210

    
211
# The export must be created with:
212
# `--compatible=postgresql --add-locks=false --set-charset`
213
# Add `--no-data` to create a schema-only export.
214
%.sql: _MySQL/%.sql
215
	$(if $(wildcard $@),,$(bin)/my2pg <$< >$@)
216

    
217
##### Staging tables installation
218

    
219
srcTable := %.src
220

    
221
dbExportsWildcard = $(sort $(patsubst _MySQL/%.make,%,$(wildcard\
222
$(1) _MySQL/$(1).make)))
223

    
224
dbExports := $(call dbExportsWildcard,*schema*.sql)# schemas first
225
ifeq ($(schema_only),) # add rest of .sql files
226
dbExports += $(filter-out $(dbExports),$(call dbExportsWildcard,*.sql))
227
endif
228
dbExports := $(filter-out grants.sql,$(dbExports))
229
dbExports := $(strip $(dbExports))# += adds extra whitespace
230
allInstalls := $(if $(dbExports),sql) $(allTables)
231

    
232
install: _always schema $(allInstalls:%=%/install) ;
233

    
234
uninstall: _always confirm_rm_schema rm_schema ;
235
# rm_schema will also drop all staging tables
236

    
237
reinstall: _always uninstall install ;
238

    
239
confirm_rm_schema: _always
240
	$(if $(filter TNRS,$(datasrc)),$(call confirm,WARNING: This will delete the\
241
TNRS cache!,To save it: make backups/TNRS.backup-remake))
242

    
243
schema: _always
244
	-echo 'CREATE SCHEMA "$(datasrc)";'|$(psqlNoSearchPath)
245
# ignore errors if schema exists
246

    
247
rm_schema: _always
248
	echo 'DROP SCHEMA IF EXISTS "$(datasrc)" CASCADE;'|$(psqlNoSearchPath)
249

    
250
installLog := logs/install.log.sql
251

    
252
log_dir = $(1)logs
253
has_log_dir = $(call and,$(wildcard $(log_dir)),$(call not,$(noclobber)))
254
logInstall = $(if $(has_log_dir),$(if $(quiet),$(2)$(1)$(installLog)\
255
2>&1,2>&1|tee $(3) $(1)$(installLog)))
256
logInstallRoot = $(call logInstall,,>)
257
logInstall* = $(call logInstall,$*/,>)
258
logInstall*Add = $(call logInstall,$*/,>>,-a)# append to log
259

    
260
# Must come before %/install to override it
261
sql/install: $(dbExports)
262
	($(inDatasrc); cat $+|pg_dump_limit; $(if $(wildcard\
263
grants.sql),cat grants.sql))|"time" env no_search_path=1 \
264
$(bin)/psql_$(if $(debug),verbose,script)_vegbien --set=schema='"$(datasrc)"' \
265
$(logInstallRoot)
266

    
267
# $debug option runs the *.sql import verbosely, to display which statements are
268
# being run. this should only be used for SQL files that use COPY FROM to import
269
# data, to avoid echoing pages of insert statements.
270
cleanup = $(if $(wildcard $*/cleanup.sql),($(inDatasrc); cat $*/cleanup.sql)\
271
|"time" $(psqlNoSearchPath) --echo-all --set=table='"$*"' $(logInstall*Add),\
272
(export schema=$(datasrc) table=$*; . $(bin)/vegbien_dest; unset schemas; \
273
$(bin)/csv2db) $(logInstall*Add))
274

    
275
%/header.csv:
276
	echo 'COPY (SELECT * FROM "$(datasrc)"."$*" LIMIT 0) TO STDOUT CSV HEADER;'|\
277
env no_search_path=1 $(bin)/psql_script_vegbien >$*/header.csv
278

    
279
exportHeader = $(selfMake) $*/header.csv
280

    
281
# Don't try to edit a view. Must come before %/install to override it.
282
%_view/install: _always ;
283

    
284
%.sql/run: _always
285
	$(if $(wildcard $(@D)),($(inDatasrc); cat $(@D))|(cd '$(*D)';\
286
"time" env no_search_path=1 ../$(bin)/psql_verbose_vegbien \
287
--set=table='"$(*D)"' --set=table_str=\''"$(*D)"'\'))
288

    
289
%/postprocess.sql: %/map.csv
290
	$(if $(wildcard $*/run),$(bin)/in_place $@ env text=1 $(bin)/repl $<)
291

    
292
%/postprocess: _always
293
	$(if $(wildcard $*/run),,$(selfMake) $*/postprocess.sql/run)
294

    
295
%/map_table: _always
296
	$(if $(wildcard $*/run),$*/run map_table)
297

    
298
# For staging tables which are derived by joining together other staging tables.
299
%/install %/header.csv: %/create.sql _always
300
	($(inDatasrc); echo 'CREATE TABLE "$*" AS'; cat $<; echo ';')|"time" \
301
$(psqlNoSearchPath) --echo-all --set=schema='"$(datasrc)"' --set=table='"$*"' \
302
$(logInstall*)
303
	$(selfMake) $*/postprocess
304
	$(exportHeader)
305
	$(cleanup)
306
	$(selfMake) $*/map_table
307
ifneq ($(noclobber),)
308
.PRECIOUS: %/header.csv
309
endif
310

    
311
%/install: _always
312
	$(if $(isCsv),$(import_install_))
313
	$(selfMake) $*/postprocess
314
	-$(exportHeader)
315
	-$(if $(isCsv),,$(cleanup))
316
	$(selfMake) $*/map_table
317
# ignore errors if table does not exist (non-data dir)
318
define import_install_
319
(. $(bin)/vegbien_dest; unset schemas; "time" nice -n +5\
320
env schema=$(datasrc) table=$* $(bin)/csv2db $(catSrcs) $(logInstall*))
321
$(if $(filter $(srcTable),$*),($(inDatasrc);\
322
echo 'ALTER TABLE "$(datasrc)"."$*" RENAME row_num TO "$*.row_num";')|"time"\
323
$(psqlNoSearchPath) --echo-all --set=table='"$*"' $(logInstall*Add))
324
endef
325
# table-scope src table's row_num col to allow joining it with other tables
326

    
327
%/uninstall: _always
328
	echo 'DROP TABLE IF EXISTS "$(datasrc)"."$*" CASCADE;'|$(psqlNoSearchPath)
329

    
330
%/reinstall: _always %/uninstall %/install ;
331

    
332
postprocess: _always $(allTables:%=%/postprocess) ;
333

    
334
cleanup: _always $(tables:%=%/cleanup) ;
335

    
336
# WARNING: This removes any index comments, due to a PostgreSQL bug.
337
# This occurs because ALTER TABLE recreates the index but not its comment.
338
%/cleanup: _always
339
	$(cleanup)
340

    
341
##### Maps building
342

    
343
# Maps to (try to) build are added to this
344
maps :=
345

    
346
srcRoot = $(mappings)/root.sh
347
mkSrcMap = (. $(srcRoot); env datasrc=$(datasrc) $(bin)/src_map <$*/header.csv\
348
>$@)
349

    
350
translate = $(if $(wildcard $(1)),$(bin)/in_place $< $(bin)/translate_ci 1 $(1))
351

    
352
$(srcDict):# empty target in case it doesn't exist
353

    
354
# Via maps cleanup
355
ifneq ($(filter %/.map.csv.last_cleanup,$(MAKECMDGOALS)),)
356
%/.map.csv.last_cleanup: %/map.csv $(vocab) $(thesaurus) $(coreMap) $(srcDict)
357
	$(call translate,$(srcDict))
358
	$(bin)/in_place $< $(bin)/canon 1 $(vocab)
359
	$(call translate,$(thesaurus))
360
	$(bin)/in_place $< $(bin)/fix_line_endings
361
	touch $@
362
	+$(selfMake) $(<:%/map.csv=%/unmapped_terms.csv)
363
	+$(selfMake) $(<:%/map.csv=%/new_terms.csv)
364
.PRECIOUS: %/.map.csv.last_cleanup
365
else
366
%/map.csv: _always
367
	$(if $(wildcard $@),,$(mk_map_csv))
368
	+$(selfMake) $(@:%/map.csv=%/.map.csv.last_cleanup)
369
define mk_map_csv
370
+$(selfMake) $*/header.csv
371
$(if $(nonXml),$(mkSrcMap))
372
endef
373
endif
374

    
375
%/VegBIEN.csv: %/map.csv $(coreMap)
376
	$(if $(wildcard $*/run),-ln -s ../$(coreMap) $@\
377
,<$< $(bin)/cat_cols 1 2|$(bin)/join $(coreMap)|$(bin)/sort_map >$@)
378
# ignore errors if symlink exists
379
maps += $(autogenMaps)
380

    
381
maps: $(maps) _always ;
382

    
383
all += $(maps)
384

    
385
##### Maps validation
386

    
387
# `tail -n +2`: Remove header before running filter_out_ci because filter_out_ci
388
# only removes the header if it matches the vocabulary's header.
389

    
390
%/unmapped_terms.csv: %/map.csv $(coreMap)
391
	tail -n +2 $<|$(bin)/cols 1|$(bin)/filter_out_ci 0 $(coreMap) >$@
392
	$(bin)/autoremove $@
393

    
394
%/new_terms.csv: %/map.csv $(vocab) $(thesaurus) %/unmapped_terms.csv
395
	$(newTerms)
396
	$(bin)/autoremove $@
397
newTerms = tail -n +2 $<|$(bin)/filter_out_ci 0 $(vocab)|$(bin)/filter_out_ci 0\
398
$(thesaurus) $(if $(wildcard $(word 4,$+)),|$(bin)/filter_out_ci 0 $(word 4,$+))\
399
|grep -vE -e '^"?:' -e 'UNUSED' >$@; exit 0 # grep exits nonzero if no match
400

    
401
termsSubdirs := $(tables)
402

    
403
include $(root)/lib/mappings.Makefile
404

    
405
##### External dependencies
406

    
407
$(root)/%: _always
408
	+$(subMake)
409
.PRECIOUS: $(root)/% # let ext. dir's Makefile decide whether to delete on error
410

    
411
##### Mapping
412

    
413
+maps = $(filter %/map.csv %/VegBIEN.csv $(mappings)/%,$(+_))
414
map2db = env in_database=vegbien in_schema=$(datasrc) in_table=$*\
415
out_database=vegbien $(root)/map $(+maps)
416

    
417
##### Import to VegBIEN
418

    
419
import: $(importTables:%=%/import) _always ;
420

    
421
rm: _always
422
	echo "DELETE FROM source WHERE shortname = '$(datasrc)';"\
423
|"time" $(psqlAsBien)
424

    
425
reimport: _always rm import ;
426

    
427
profileTest = $(if $(profile),$(if $(test),1))
428
profileOnly = -env profile_to=/dev/fd/3 $(map2db) 3>&1 1>&2|\
429
$(bin)/profile_stats /dev/fd/0
430

    
431
log_ = $*/logs/$(if $(n),n=$(n).,)$(version).log.sql
432

    
433
# Displays the import log file path
434
# Run with `make -s` to avoid echoing make commands
435
%/log_file: _always
436
	echo $$(pwd)/$(log_)
437

    
438
trace = $(log_:.log.sql=.trace)
439
import = -$(if $(profileTest),$(profileOnly),(set -x; date; "time" env commit=1\
440
$(if $(profile),profile_to=$(trace)) $(map2db))$(if $(log), >>$(log_) 2>&1))
441
# don't abort on import errors, which often relate to invalid input data
442

    
443
import? = $(if $(call and,$(full_import),$(call dontImport,.)),,$(import))
444

    
445
%/import: %/VegBIEN.csv _always
446
	$(import?)
447
# default:
448
%/import: _always ;
449

    
450
#### Taxonomic scrubbing
451

    
452
scrub: _always
453
	$(selfMake) $(root)/scrub & echo $$!
454

    
455
# Removes TNRS taxondeterminations
456
unscrub: _always
457
	echo "SELECT delete_scrubbed_taxondeterminations('$(datasrc)');"|\
458
"time" env no_query_results=1 $(psqlAsBien)
459

    
460
rescrub: _always unscrub scrub ;
461

    
462
import_scrub: _always import scrub ;
463

    
464
reimport_scrub: _always reimport scrub ;
465

    
466
##### Log files from import
467

    
468
logs := $(wildcard */logs/*.log.sql */logs/*.trace)
469

    
470
rm_logs: _always
471
	$(RM) $(logs)
472

    
473
##### Verification of import
474

    
475
verifyTables := $(patsubst verify/%.ref,%,$(wildcard verify/*.ref))
476

    
477
verify: $(verifyTables:%=%/verify) _always ;
478

    
479
%/verify: verify/%.ref verify/%.out _always
480
	-$(diffVerbose) $(+_)
481
# don't abort on verification errors, which are expected during development
482
# default:
483
%/verify: verify/%.out _always
484
	$(if $(shell test -e $< && echo t),cat $<)
485
# don't run if verify/%.out's default do-nothing action was used
486
# can't use $(wildcard) because it won't recheck file after verify/%.out is run
487

    
488
psqlExport := "time" $(psqlNoSearchPath) --no-align --field-separator=$$'\t'\
489
--pset=footer=off --pset=null=NULL
490
# Note that using $(inDatasrc) will not work with datasources whose tables are
491
# the same name as VegBIEN tables (likely only VegBank), because the datasource
492
# is first in the search_path.
493
verify = $(if $(reverify),($(inDatasrc); cat $<)|$(psqlExport)\
494
--set=datasource="'$(datasrc)'" >$@)
495

    
496
verify/%.out: $(mappings)/verify.%.sql _always
497
	$(verify)
498
.PRECIOUS: verify/%.out # save partial output in case of error to help debugging
499
# default:
500
verify/%.out: _always ;
501

    
502
all += $(wildcard verify/*.out)
503

    
504
%.ref: %.ref.sql
505
	($(inDatasrc); cat $<)|$(psqlExport) >$@
506
.PRECIOUS: %.ref # there must always be a .ref for the make rules to work
507

    
508
##### Editing import
509

    
510
rename/%: _always
511
	echo "UPDATE source SET shortname = '$*' WHERE shortname = '$(datasrc)';"\
512
|$(psqlAsBien)
513

    
514
##### Testing
515

    
516
testRefOutput = $(subst .by_col,,$(1))
517
testRef = $(testRefOutput).ref
518
hasOwnRef = $(filter $@,$(call testRefOutput,$@))
519
# filter returns non-empty if they are equal
520

    
521
# `rm $@`: Remove outputs of successful tests to reduce clutter
522
# `$(foreach use_staged...)`: Run with use_staged=1
523
define runTest
524
@echo "Testing $(abspath $@)..."
525
>$@ env test=1 n=$(test_n) $(1) $(foreach use_staged,1,$(map2db))
526
$(if $(hasOwnRef),,-)@(set -x; $(diffIgnoreSpace) $(call testRef,$@) $@) 2>&1\
527
&& rm $@ || { e=$$?; $(if $(wildcard $(call testRef,$@)),,cat $@;)\
528
$(if $(hasOwnRef),\
529
{\
530
read -p $(emph)'Accept new test output? (y/n)'$(endEmph) REPLY;\
531
if test "$$REPLY" = y; then\
532
(set -x; $(MAKE) $@-ok --directory=$(realpath .) --makefile=../input.Makefile);\
533
exit 0;\
534
fi;\
535
};,\
536
echo $(emph)"Note: The preceding failed test is compared to another test's\
537
output"$(endEmph);\
538
echo $(emph)"When it fails, this always indicates a bug"$(endEmph);\
539
)\
540
exit $$e;}
541
endef
542

    
543
tests :=
544

    
545
%/test: %/test.xml _always ;
546

    
547
# Requires staging tables. To create them, run `make inputs/<datasrc>/install`.
548
# Non-flat-file inputs fall back to mimicking a successful test
549
%/test.xml: %/VegBIEN.csv _always
550
	$(if $(nonXml),$(call runTest,by_col=))
551
tests += %/test.xml
552

    
553
%/test.by_col.xml: %/VegBIEN.csv _always
554
	$(if $(nonXml),$(call runTest,by_col=1))
555

    
556
# Only run column-based tests if column-based mode enabled, because these tests
557
# are much slower than the row-based tests for small numbers of rows
558
ifneq ($(by_col),)
559
tests += %/test.by_col.xml
560
endif
561

    
562
testOutputs := $(foreach test,$(tests),$(tables:%=$(test)))
563

    
564
.PRECIOUS: $(testOutputs) # save outputs of failed tests so they can be accepted
565

    
566
test: _always $(testOutputs) ;
567

    
568
all += $(wildcard %/test*.xml)
569

    
570
# Accepts a test output: make <test_output_path>-ok
571
%-ok: _always
572
	mv $* $(call testRef,$*)
573

    
574
accept-all: _always
575
	+yes|$(selfMake) test
576

    
577
##### Documentation
578

    
579
steps = $(selfMake) -s $*/import test=1 by_col=1 verbosity=2 n=100\
580
2>&1|$(bin)/debug2redmine >$@
581

    
582
%/logs/steps.by_col.log.sql: _always
583
	+$(steps)
(9-9/10)