File: test.test

package info (click to toggle)
mysqltcl 3.052-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 844 kB
  • ctags: 195
  • sloc: ansic: 1,917; tcl: 1,287; sh: 142; makefile: 28; sql: 20
file content (456 lines) | stat: -rwxr-xr-x 12,749 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
#!/usr/bin/tcl
# Simple Test file to test all mysqltcl commands and parameters
# please create test database first
# from test.sql file
# >mysql -u root
# >create database uni;
#
# >mysql -u root <test.sql
# please adapt the parameters for mysqlconnect some lines above

if {[file exists libload.tcl]} {
    source libload.tcl
} else {
    source [file join [file dirname [info script]] libload.tcl]
}


# global connect variables
set dbuser root
set dbpassword ""
set dbank mysqltcltest

package require tcltest
variable SETUP {#common setup code}
variable CLEANUP {#common cleanup code}
tcltest::configure -verbose bet

proc getConnection {{addOptions {}} {withDB 1}} {
    global dbuser dbpassword dbank
    if {$withDB} {
        append addOptions " -db $dbank"
    }
    if {$dbpassword ne ""} {
	    append addOptions " -password $dbpassword"
    }
    return [eval mysqlconnect -user $dbuser $addOptions]
}
proc prepareTestDB {} {
    global dbank
    set handle [getConnection {} 0]
    if {[lsearch [mysqlinfo $handle databases] $dbank]<0} {
        puts "Testdatabase $dbank does not exist. Create it"
        mysqlexec $handle "CREATE DATABASE $dbank"
    }
    mysqluse $handle $dbank
    
    catch {mysqlexec $handle {drop table Student}}

    mysqlexec $handle {
       	CREATE TABLE Student (
 		MatrNr int NOT NULL auto_increment,
		Name varchar(20),
		Semester int,
		PRIMARY KEY (MatrNr)
	)
    }
    mysqlexec $handle "INSERT INTO Student VALUES (1,'Sojka',4)"
    mysqlexec $handle "INSERT INTO Student VALUES (2,'Preisner',2)"
    mysqlexec $handle "INSERT INTO Student VALUES (3,'Killar',2)"
    mysqlexec $handle "INSERT INTO Student VALUES (4,'Penderecki',10)"
    mysqlexec $handle "INSERT INTO Student VALUES (5,'Turnau',2)"
    mysqlexec $handle "INSERT INTO Student VALUES (6,'Grechuta',3)"
    mysqlexec $handle "INSERT INTO Student VALUES (7,'Gorniak',1)"
    mysqlexec $handle "INSERT INTO Student VALUES (8,'Niemen',3)"
    mysqlexec $handle "INSERT INTO Student VALUES (9,'Bem',5)"
    mysqlclose $handle
}

prepareTestDB

tcltest::test {connect-1.1} {no encoding} -body {
	getConnection {-encoding nonexisting}
} -returnCodes error -match glob -result "*unknown encoding*"

tcltest::test {connect-1.2} {binary encoding} -body {
	set handle [getConnection {-encoding binary}]
	mysqlclose $handle
	return
}

tcltest::test {connect-1.3} {-ssl option} -body {
	set handle [getConnection {-ssl 1}]
	mysqlclose $handle
	return
}

tcltest::test {connect-1.4} {-noschema option 1} -body {
	set handle [getConnection {-noschema 1}]
	mysqlclose $handle
	return
}

tcltest::test {connect-1.5} {-noschema option 0} -body {
	set handle [getConnection {-noschema 0}]
	mysqlclose $handle
	return
}

tcltest::test {connect-1.6} {-comperss option} -body {
	set handle [getConnection {-compress 1}]
	mysqlclose $handle
	return
}

tcltest::test {connect-1.7} {-odbc option} -body {
	set handle [getConnection {-odbc 1}]
	mysqlclose $handle
	return
}

tcltest::test {connect-1.8} {Test of encondig option} -body {
	set handle [getConnection {-encoding iso8859-1}]
	set name {Artur Trzewik}
	mysqlexec $handle "INSERT INTO Student (Name,Semester) VALUES ('$name',11)"
	set newid [mysqlinsertid $handle]
	set rname [lindex [lindex [mysqlsel $handle "select Name from Student where MatrNr = $newid" -list] 0] 0]
	mysqlexec $handle "DELETE FROM Student WHERE MatrNr = $newid"
	mysqlclose $handle
	return $rname
} -result {Artur Trzewik}

tcltest::test {baseinfo-1.0} {base info} -body {
	mysqlbaseinfo connectparameters
	mysqlbaseinfo clientversion
	return
}

tcltest::test {select-1.0} {use implicit database notation} -body {
   set handle [getConnection {} 0]
   mysqlsel $handle "select * from $dbank.Student"
   mysqlcol $handle -current {name type length table non_null prim_key decimals numeric}
   mysqlnext $handle
   mysqlinfo $handle databases
   mysqlclose $handle
   return
}

set handle [getConnection]

tcltest::test {use-1.0} {false use} -body {
    mysqluse $handle notdb2
} -returnCodes error -match glob -result "mysqluse/db server: Unknown database 'notdb2'"


tcltest::test {select-1.1} {Test sel and next functions} -body {
   mysqluse $handle uni
   set allrows [mysqlsel $handle {select * from Student}]
   mysqlcol $handle -current {name type length table non_null prim_key decimals numeric}
   # result status
   mysqlresult $handle cols
   set rows [mysqlresult $handle rows]
   set rowsComp [expr {$allrows==$rows}]
   set fstcurrent [mysqlresult $handle current]
   set firstRow [mysqlnext $handle]
   set scdcurrent [mysqlresult $handle current]
   mysqlnext $handle
   mysqlnext $handle
   mysqlseek $handle 0
   set scdcurrent2 [mysqlresult $handle current]
   set isFirst [expr {[mysqlnext $handle] eq $firstRow}]
   mysqlnext $handle
   return [list $fstcurrent $scdcurrent $rowsComp $scdcurrent2 $isFirst]
} -result {0 1 1 0 1}

tcltest::test {map-1.0} {map function} -body {
    mysqlsel $handle {
       select MatrNr,Name from Student order by Name
    }
    mysqlmap $handle {nr name} {
        if {$nr == {}} continue
        set tempr [list $nr $name]
        set row [format  "nr %16s  name:%s"  $nr $name]
    }
    return
}

tcltest::test {map-1.1} {double map with seek} -body {
	#read after end by map
	mysqlsel $handle {select * from Student}
	mysqlmap $handle {nr name} {
    	set row [format  "nr %16s  name:%s"  $nr $name]
	}
	mysqlseek $handle 0
  	mysqlmap $handle {nr name} {
		set row [format  "nr %16s  name:%s"  $nr $name]
    }
	return
}

# Test error in version 3.01
tcltest::test {map-1.2} {map function error 3.01} -body {
    mysqlsel $handle {
       select Name from Student order by Name
    }
    namespace eval :: {
        mysqlmap $handle name {
            set a $name
        }
    }
    return
}


tcltest::test {receive-1.0} {base case} -body {
    mysqlreceive $handle {select MatrNr,Name from Student order by Name} {nr name} {
       set res [list $nr $name]
    }
    return
}

tcltest::test {receive-1.1} {with break} -body {
    set count 0
    mysqlreceive $handle {select MatrNr,Name from Student order by Name} {nr name} {
       set res [list $nr $name]
       if ($count>0) break
       incr count
    }
    return
}

tcltest::test {receive-1.2} {with error} -body {
    set count 0
    mysqlreceive $handle {select MatrNr,Name from Student order by Name} {nr name} {
       set res [list $nr $name]
       if ($count>0) {
           error "Test Error"
       }
       incr count
    }
    return
} -returnCodes error -result "Test Error"

# test error in 3.01
tcltest::test {receive-1.3} {with error 3.01} -body {
    set count 0
    namespace eval :: {
        mysqlreceive $handle {select Name from Student order by Name} name {
            set res [list $name]
            incr count
        }
    }
    return
}


tcltest::test {query-1.0} {base case} -body {
	set query1 [mysqlquery $handle {select MatrNr,Name From Student Order By Name}]
    mysqlnext $query1
    set query2 [mysqlquery $handle {select MatrNr,Name From Student Order By Name}]
	mysqlnext $query2
	mysqlendquery $query1
	mysqlnext $query2
	mysqlresult $query2 cols
    mysqlresult $query2 rows
    mysqlresult $query2 current
    mysqlseek $query2 0
	mysqlnext $query2
	mysqlresult $query2 current
	mysqlcol $query2 -current {name type length table non_null prim_key decimals numeric}
	mysqlendquery $query2
 	return
}

tcltest::test {query-1.1} {endquery on handle} -body {
	mysqlsel $handle {select * from Student}
    mysqlendquery $handle
    mysqlresult $handle current
} -returnCodes error -match glob -result "*no result*"

tcltest::test {status-1.0} {read status array} -body {
	set ret "code=$mysqlstatus(code) command=$mysqlstatus(command) message=$mysqlstatus(message) nullvalue=$mysqlstatus(nullvalue)"
	return
}

tcltest::test {insert-1.0} {new insert id check} -body {
	mysqlexec $handle {INSERT INTO Student (Name,Semester) VALUES ('Artur Trzewik',11)}
	set newid [mysqlinsertid $handle]
	mysqlexec $handle "UPDATE Student SET Semester=12 WHERE MatrNr=$newid"
	mysqlinfo $handle info
	mysqlexec $handle "DELETE FROM Student WHERE MatrNr=$newid"
} -result 1

tcltest::test {nullvalue-1.0} {null value handling} -body {
	# Test NULL Value setting
	mysqlexec $handle {INSERT INTO Student (Name) VALUES (Null)}
	set id [mysqlinsertid $handle]
	set mysqlstatus(nullvalue) NULL
	set res [lindex [mysqlsel $handle "select Name,Semester from Student where MatrNr=$id" -list] 0]
	lindex $res 1
} -result NULL

tcltest::test {schema-1.0} {querry on schema} -body {
	# Metadata querries
	mysqlcol $handle Student name
	mysqlcol $handle Student {name type length table non_null prim_key decimals numeric}
	return
}

tcltest::test {info-1.0} {info} -body {
	mysqlinfo $handle databases
	mysqlinfo $handle dbname
	mysqlinfo $handle host
	mysqlinfo $handle tables
	mysqlinfo $handle dbname?
	mysqlinfo $handle host?
	return
}

tcltest::test {state-1.0} {state} -body {
	mysqlstate $handle
	mysqlstate $handle -numeric
	return
}

tcltest::test {errorhandling-1.0} {not a handle} -body {
	mysqlsel bad0 {select * from Student}
} -returnCodes error -match glob -result "*not mysqltcl handle*"

tcltest::test {errorhandling-1.1} {error in sql select, no table} -body {
	mysqlsel $handle {select * from Unknown}
} -returnCodes error -match glob -result "*Table*"

tcltest::test {errorhandling-1.2} {error in sql} -body {
	mysqlexec $handle {unknown command}
} -returnCodes error -match glob -result "*SQL syntax*"

tcltest::test {errorhandling-1.3} {read after end} -body {
	set rows [mysqlsel $handle {select * from Student}]
	for {set x 0} {$x<$rows} {incr x} {
    	set res  [mysqlnext $handle]
	    set nr [lindex $res 0]
	    set name [lindex $res 1]
	    set sem [lindex $res 2]
	}
	mysqlnext $handle
} -result {}


tcltest::test {errorhandling-1.4} {false map binding} -body {
	#read after end by map
	mysqlsel $handle {select * from Student}
	mysqlmap $handle {nr name} {
    	set row [format  "nr %16s  name:%s"  $nr $name]
	}
	mysqlseek $handle 0
  	mysqlmap $handle {nr name err err2} {
		set row [format  "nr %16s  name:%s"  $nr $name]
    }
	return
} -returnCodes error -match glob -result "*too many variables*"

tcltest::test {sel-1.2} {-list option} -body {
	mysqlsel $handle {select * from Student} -list
	return
}

tcltest::test {sel-1.3} {-flatlist option} -body {
	mysqlsel $handle {select * from Student} -flatlist
	return
}

tcltest::test {handle-1.0} {interanl finding handle} -body {
	set shandle [string trim " $handle "]
	mysqlinfo $shandle databases
	return
}

mysqlclose $handle

tcltest::test {handle-1.1} {operation on closed handle} -body {
	mysqlinfo $handle tables
	return
} -returnCodes error -match glob -result "*handle already closed*"

tcltest::test {handle-1.2} {operation on closed handle} -body {
	set a " $handle "
	unset handle
	set a [string trim $a]
	mysqlinfo $a tables
} -returnCodes error -match glob -result "*not mysqltcl handle*"


tcltest::test {handle-1.2} {open 20 connection, close all} -body {
	for {set x 0} {$x<20} {incr x} {
    	lappend handles [getConnection]
	}
	foreach h $handles {
	    mysqlsel $h {select * from Student}
	}
	mysqlclose
	return
}

tcltest::test {handle-1.3} {10 queries, close all} -body {
	set handle [getConnection]
	for {set x 0} {$x<10} {incr x} {
    	lappend queries [mysqlquery $handle {select * from Student}]
	}
	for {set x 0} {$x<10} {incr x} {
		mysqlquery $handle {select * from Student}
	}
	mysqlclose $handle
	mysqlnext [lindex $queries 0]
} -returnCodes error -match glob -result "*handle already closed*"

tcltest::test {handle-1.4} {10 queries, close all} -body {
	set handle [getConnection]
	mysqlquery $handle {select * from Student}
	mysqlclose
	return
}

tcltest::test {handle-1.5} {Testing false connecting} -body {
	mysqlconnect -user nouser -db nodb
} -returnCodes error -match glob -result "*Unknown database*"


set handle [getConnection]

tcltest::test {escape-1.0} {escaping} -body {
	mysqlescape "art\"ur"
	mysqlescape $handle "art\"ur"
	return
}

tcltest::test {ping-1.0} {escaping} -body {
	mysqlping $handle
	return
}

tcltest::test {changeuser-1.0} {escaping} -body {
	mysqlchangeuser $handle root {}
	mysqlchangeuser $handle root {} uni
	return
}

# does not work for mysql4.1
tcltest::test {changeuser-1.1} {no such user} -body {
	mysqlchangeuser $handle root {} nodb
} -returnCodes error -match glob -result "*Unknown database*"

tcltest::test {interpreter-1.0} {mysqltcl in slave interpreter} -body {
	set handle [getConnection]
	set i1 [interp create]
	$i1 eval "
	  package require mysqltcl
	  set hdl [mysqlconnect -user $dbuser -db $dbank]
	"
	interp delete $i1
	mysqlinfo $handle databases
	mysqlclose $handle
	return
}

tcltest::cleanupTests
puts "End of test"