-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathTests.fs
More file actions
885 lines (766 loc) · 43.7 KB
/
Copy pathTests.fs
File metadata and controls
885 lines (766 loc) · 43.7 KB
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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
module Tests
open System
open Expecto
open Npgsql.FSharp.Analyzers
open Npgsql.FSharp.Analyzers.Core
open Npgsql.FSharp
open ThrowawayDb.Postgres
let analyzers = [
SqlAnalyzer.queryAnalyzer
]
let inline find file = IO.Path.Combine(__SOURCE_DIRECTORY__ , file)
let project = IO.Path.Combine(__SOURCE_DIRECTORY__, "../examples/hashing/examples.fsproj")
let raiseWhenFailed = function
| Result.Ok _ -> ()
| Result.Error error -> raise error
let inline context file =
AnalyzerBootstrap.context file
|> Option.map SqlAnalyzer.sqlAnalyzerContext
let createTestDatabase() =
Sql.host "localhost"
|> Sql.port 5432
|> Sql.username "dbrattli"
|> Sql.password "secret"
|> Sql.formatConnectionString
|> ThrowawayDatabase.Create
[<Tests>]
let tests =
testList "Postgres" [
test "Syntactic Analysis: SQL blocks can be detected with their relavant information" {
match context (find "../examples/hashing/syntacticAnalysis.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let operationBlocks = SyntacticAnalysis.findSqlOperations context
Expect.equal (List.length operationBlocks) 15 "Found 15 operation blocks"
}
test "Syntactic analysis: no SQL blocks should be found using sprintf" {
match context (find "../examples/hashing/SprintfBlock.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let operations = SyntacticAnalysis.findSqlOperations context
Expect.isEmpty operations "There should be no syntactic blocks"
}
test "Syntactic Analysis: finding processed parameters" {
match context (find "../examples/hashing/usingProcessedParameters.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let operationBlocks = SyntacticAnalysis.findSqlOperations context
Expect.equal (List.length operationBlocks) 1 "Found 1 operation"
let parameters =
[
for operation in operationBlocks do
for block in operation.blocks do
match block with
| SqlAnalyzerBlock.Parameters (parameters, _) ->
yield! parameters
| _ ->
()
]
Expect.equal 2 parameters.Length "There are 2 parameters"
}
test "Syntactic analysis: SQL block found from top-level expression in module" {
match context (find "../examples/hashing/topLevelExpressionIsDetected.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let operations = SyntacticAnalysis.findSqlOperations context
Expect.equal 1 operations.Length "There should be one syntactic block found"
}
test "Syntactic analysis: SQL block found from lambda body" {
match context (find "../examples/hashing/syntacticAnalysisFromLambdaBody.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let operations = SyntacticAnalysis.findSqlOperations context
Expect.equal 1 operations.Length "There should be one syntactic block found"
}
test "Syntactic analysis: SQL block found from lambda body wrapped in single case union" {
match context (find "../examples/hashing/syntacticAnalysisFromSingleCaseUnion.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let operations = SyntacticAnalysis.findSqlOperations context
Expect.equal 1 operations.Length "There should be one syntactic block found"
}
test "Syntactic Analysis: reading queries with [<Literal>] query" {
match context (find "../examples/hashing/syntacticAnalysis-literalStrings.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SyntacticAnalysis.findSqlOperations context with
| [ operation ] ->
match SqlAnalysis.findQuery operation with
| Some(query, range) -> Expect.equal query "SELECT * FROM users" "Literal string should be read correctly"
| None -> failwith "Should have found the correct query"
| _ ->
failwith "Should not happen"
}
test "Syntactic Analysis: reading queries from transactions" {
match context (find "../examples/hashing/syntaxAnalysis-usingTransactions.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let operations = SyntacticAnalysis.findSqlOperations context
Expect.equal operations.Length 2 "There should be two operations"
}
test "Syntactic Analysis: simple queries can be read" {
match context (find "../examples/hashing/syntacticAnalysisSimpleQuery.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SyntacticAnalysis.findSqlOperations context with
| [ operation ] ->
match SqlAnalysis.findQuery operation with
| Some(query, range) -> Expect.equal query "SELECT COUNT(*) FROM users" "Literal string should be read correctly"
| None -> failwith "Should have found the correct query"
| _ ->
failwith "Should not happen"
}
test "Syntactic Analysis: combination with Sql functions can be detected" {
match context (find "../examples/hashing/syntacticAnalysisExecuteScalar.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SyntacticAnalysis.findSqlOperations context with
| [ operation ] ->
match SqlAnalysis.findQuery operation with
| Some(query, range) ->
Expect.equal query "SELECT COUNT(*) as Count FROM users WHERE is_active = @is_active" "Literal string should be read correctly"
match SqlAnalysis.findParameters operation with
| Some ([ parameter ], range) ->
Expect.equal "is_active" parameter.name "Parameter is correct"
| otherwise ->
failwith "There should have been a parameter"
| None ->
failwith "Should have found the correct query"
| _ ->
failwith "Should not happen"
}
test "Syntactic Analysis: skip analysis can be detected" {
match context (find "../examples/hashing/syntaxAnalysis-detectingSkipAnalysis.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SyntacticAnalysis.findSqlOperations context with
| [ operation ] ->
operation.blocks
|> List.exists (fun block -> block = SqlAnalyzerBlock.SkipAnalysis)
|> fun found -> Expect.isTrue found "Skip analysis block found"
| _ ->
failwith "Should not happen"
}
test "Syntactic Analysis: empty parameter sets can be analyzed" {
match context (find "../examples/hashing/detectingEmptyParameterSet.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SyntacticAnalysis.findSqlOperations context with
| [ operation ] ->
let transactionQueries =
operation.blocks
|> List.tryPick (fun block ->
match block with
| SqlAnalyzerBlock.Transaction queries -> Some queries
| _ -> None)
match transactionQueries with
| None -> failwith "Expected transaction to be found"
| Some [ ] -> failwith "Expected transaction to have one query"
| Some (query :: _) ->
Expect.equal 1 query.parameterSets.Length "There is one parameter set"
Expect.isEmpty query.parameterSets.[0].parameters "There are no parameters provided"
| _ ->
failwith "Should not happen"
}
test "Syntactic Analysis: detecting dynamic arrays" {
match context (find "../examples/hashing/detectingDynamicListsInTransactions.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SyntacticAnalysis.findSqlOperations context with
| [ operation; secondOperation ] ->
let transactionQueries =
operation.blocks
|> List.tryPick (fun block ->
match block with
| SqlAnalyzerBlock.Transaction queries -> Some queries
| _ -> None)
match transactionQueries with
| None -> failwith "Expected transaction to be found"
| Some [ ] -> failwith "Expected transaction to have one query"
| Some (query :: _) ->
Expect.equal 1 query.parameterSets.Length "There is one parameter set"
Expect.equal 1 query.parameterSets.[0].parameters.Length "There are no parameters provided"
let secondTransactionQueries =
secondOperation.blocks
|> List.tryPick (fun block ->
match block with
| SqlAnalyzerBlock.Transaction queries -> Some queries
| _ -> None)
match secondTransactionQueries with
| None -> failwith "Expected transaction to be found"
| Some [ ] -> failwith "Expected transaction to have one query"
| Some (query :: _) ->
Expect.equal 1 query.parameterSets.Length "There is one parameter set"
Expect.equal 1 query.parameterSets.[0].parameters.Length "There are no parameters provided"
| _ ->
failwith "Should not happen"
}
test "Syntactic Analysis: detecting dynamic arrays and using query literals" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/usingLiteralQueriesWithTransactions.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SyntacticAnalysis.findSqlOperations context with
| [ operation; secondOperation ] ->
let transactionQueries =
operation.blocks
|> List.tryPick (fun block ->
match block with
| SqlAnalyzerBlock.Transaction queries -> Some queries
| _ -> None)
match transactionQueries with
| None -> failwith "Expected transaction to be found"
| Some [ ] -> failwith "Expected transaction to have one query"
| Some (query :: _) ->
Expect.equal 1 query.parameterSets.Length "There is one parameter set"
Expect.equal 1 query.parameterSets.[0].parameters.Length "There are no parameters provided"
let secondTransactionQueries =
secondOperation.blocks
|> List.tryPick (fun block ->
match block with
| SqlAnalyzerBlock.Transaction queries -> Some queries
| _ -> None)
match secondTransactionQueries with
| None -> failwith "Expected transaction to be found"
| Some [ ] -> failwith "Expected transaction to have one query"
| Some (query :: _) ->
Expect.equal 1 query.parameterSets.Length "There is one parameter set"
Expect.equal 1 query.parameterSets.[0].parameters.Length "There are no parameters provided"
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let firstMessages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
let secondMessages = SqlAnalysis.analyzeOperation secondOperation db.ConnectionString schema
Expect.isEmpty firstMessages "No errors returned"
Expect.isEmpty secondMessages "No errors returned"
| _ ->
failwith "Should not happen"
}
test "Semantic analysis: skip analysis doesn't give any errors" {
use db = createTestDatabase()
match context (find "../examples/hashing/syntaxAnalysis-detectingSkipAnalysis.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let block = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation block db.ConnectionString schema
Expect.isEmpty messages "No errors returned"
}
test "Semantic analysis: casting non-nullable columns stays non-nullable" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/castingNonNullableStaysNonNullable.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let blocks = SyntacticAnalysis.findSqlOperations context
let messages = blocks |> List.collect (fun block -> SqlAnalysis.analyzeOperation block db.ConnectionString schema)
Expect.isEmpty messages "No errors returned"
}
test "Semantic analysis: incorrect queries in executeTransaction are detected" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/errorsInTransactions.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let block = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation block db.ConnectionString schema
Expect.equal 3 messages.Length "Three errors returned"
}
test "Semantic Analysis: empty parameter sets with missing parameters give error" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/detectingEmptyParameterSet.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let block = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation block db.ConnectionString schema
match messages with
| [ message ] ->
Expect.isTrue (message.IsWarning()) "The message is an warning"
| _ ->
failwith "Expected only one error message"
}
test "Semantic Analysis: parameter type mismatch" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> ignore
match context (find "../examples/hashing/parameterTypeMismatch.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let block = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation block db.ConnectionString schema
match messages with
| [ message ] ->
Expect.isTrue (message.IsWarning()) "The message is an warning"
Expect.stringContains message.Message "Sql.int64" "Message should contain the missing column name"
| _ ->
failwith "Expected only one error message"
}
test "Syntactic Analysis: reading queries with extra processing after Sql.executeReader" {
match context (find "../examples/hashing/syntacticAnalysisProcessedList.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SyntacticAnalysis.findSqlOperations context with
| [ operation ] ->
match SqlAnalysis.findQuery operation with
| Some(query, range) ->
Expect.equal query "SELECT * FROM users" "Query should be read correctly"
match SqlAnalysis.findColumnReadAttempts operation with
| Some [ attempt ] ->
Expect.equal attempt.funcName "read.text" "Function name is correct"
Expect.equal attempt.columnName "username" "Column name is read correctly"
| otherwise ->
failwith "Should have found one column read attempt"
| None ->
failwith "Should have found the correct query"
| otherwise ->
failwith "Should not happen"
}
test "SQL schema analysis" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> ignore
let databaseMetadata = InformationSchema.getDbSchemaLookups db.ConnectionString
let userColumns =
databaseMetadata.Schemas.["public"].Tables
|> Seq.tryFind (fun pair -> pair.Key.Name = "users")
|> Option.map (fun pair -> pair.Value)
|> Option.map List.ofSeq
match userColumns with
| None ->
failwith "Expected to find columns for users table"
| Some columns ->
Expect.equal 3 (List.length columns) "There are three columns"
}
test "SQL schema analysis with arrays" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, roles text[] not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
let databaseMetadata = InformationSchema.getDbSchemaLookups db.ConnectionString
let userColumns =
databaseMetadata.Schemas.["public"].Tables
|> Seq.tryFind (fun pair -> pair.Key.Name = "users")
|> Option.map (fun pair -> pair.Value)
|> Option.map List.ofSeq
match userColumns with
| None ->
failwith "Expected to find columns for users table"
| Some columns ->
Expect.equal 2 (List.length columns) "There are three columns"
let rolesColumn = columns |> List.find (fun column -> column.Name = "roles")
Expect.equal rolesColumn.DataType.Name "text" "The data type is text"
Expect.isTrue rolesColumn.DataType.IsArray "The data type is an array"
Expect.isFalse rolesColumn.Nullable "The column is not nullable"
}
test "SQL schema analysis with user defined arrays" {
use db = createTestDatabase ()
Sql.connect db.ConnectionString
|> Sql.executeTransaction [
"CREATE TYPE role AS ENUM ('admin')", []
"CREATE TABLE users (roles role[])", [] ]
|> raiseWhenFailed
let databaseMetadata =
InformationSchema.getDbSchemaLookups db.ConnectionString
let userColumns =
databaseMetadata.Schemas.["public"].Tables
|> Seq.tryFind (fun pair -> pair.Key.Name = "users")
|> Option.map (fun pair -> pair.Value)
|> Option.map List.ofSeq
match userColumns with
| None -> failwith "Expected to find columns for users table"
| Some columns ->
Expect.equal 1 (List.length columns) "There is one column"
let rolesColumn = columns |> List.find (fun column -> column.Name = "roles")
Expect.equal rolesColumn.DataType.Name "role" "The data type is role"
Expect.isTrue rolesColumn.DataType.IsArray "The data type is an array"
}
test "SQL query analysis" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
let databaseMetadata = InformationSchema.getDbSchemaLookups db.ConnectionString
let query = "SELECT * FROM users"
let parameters, outputColumns, enums = InformationSchema.extractParametersAndOutputColumns(db.ConnectionString, query, false, databaseMetadata)
Expect.isEmpty parameters "Query contains no parameters"
Expect.equal 3 (List.length outputColumns) "There are 3 columns in users table"
}
test "SQL scalar query analysis" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
let databaseMetadata = InformationSchema.getDbSchemaLookups db.ConnectionString
let query = "SELECT COUNT(*) FROM users"
let resultSetMetadata = SqlAnalysis.extractParametersAndOutputColumns(db.ConnectionString, query, databaseMetadata)
match resultSetMetadata with
| Result.Error errorMsg ->
failwithf "Could not analyse result set metadata %s" errorMsg
| Result.Ok (parameters, outputColumns, _) ->
Expect.isEmpty parameters "Query shouldn't contain any parameters"
Expect.equal 1 outputColumns.Length "There is one column returned"
}
test "SQL function analysis" {
use db = createTestDatabase()
let createFuncQuery = """
CREATE FUNCTION Increment(val integer) RETURNS integer AS $$
BEGIN
RETURN val + 1;
END; $$
LANGUAGE PLPGSQL;
"""
Sql.connect db.ConnectionString
|> Sql.query createFuncQuery
|> Sql.executeNonQuery
|> raiseWhenFailed
let databaseMetadata = InformationSchema.getDbSchemaLookups db.ConnectionString
let query = "SELECT Increment(@Input)"
let resultSetMetadata = SqlAnalysis.extractParametersAndOutputColumns(db.ConnectionString, query, databaseMetadata)
match resultSetMetadata with
| Result.Error errorMsg ->
failwithf "Could not analyse result set metadata %s" errorMsg
| Result.Ok (parameters, outputColumns, _) ->
Expect.equal 1 parameters.Length "Query has one parameter"
Expect.equal "integer" parameters.[0].DataType.Name "The parameter is int4"
Expect.equal 1 outputColumns.Length "There is one column returned"
Expect.equal "integer" outputColumns.[0].DataType.Name "The output type is int4"
}
test "SQL query semantic analysis: missing column" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/semanticAnalysis-missingColumn.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let block = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation block db.ConnectionString schema
match messages with
| [ message ] ->
Expect.isTrue (message.IsWarning()) "The message is an warning"
Expect.stringContains message.Message "non_existent" "Message should contain the missing column name"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: missing parameter" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/semanticAnalysis-missingParameter.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let block = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let messages = SqlAnalysis.analyzeOperation block db.ConnectionString schema
match messages with
| [ message ] ->
Expect.isTrue (message.IsWarning()) "The message is a warning"
Expect.stringContains message.Message "Missing parameter 'active'" "Error should say which parameter is not provided"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: using dynamically referenced query doesn't give errors" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/syntaxAnalysisReferencingQueryDoesNotGiveError.fs") with
| None -> failwith "Could not crack project"
| Some context ->
let block = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let messages = SqlAnalysis.analyzeOperation block db.ConnectionString schema
Expect.isEmpty messages "There should be no errors"
}
test "SQL query semantic analysis: type mismatch" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/semanticAnalysis-typeMismatch.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Please use read.bool instead" "Message contains suggestion to use Sql.readBool"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: type mismatch when using text[]" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, roles text[] not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/readingTextArray.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Please use read.stringArray instead" "Message contains suggestion to use Sql.stringArray"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: type mismatch when using uuid[]" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, codes uuid[] not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/readingUuidArray.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Please use read.uuidArray instead" "Message contains suggestion to use Sql.stringArray"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: type mismatch when using int[] as parameter" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/usingIntArrayParameter.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Sql.intArray" "Message contains suggestion to use Sql.stringArray"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: detect incorrectly used Sql.execute where as Sql.executeNonQuery was needed" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text, roles text[] not null)"
|> Sql.executeNonQuery
|> ignore
match context (find "../examples/hashing/executingQueryInsteadOfNonQuery.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Sql.executeNonQuery" "Message contains suggestion to use Sql.executeNonQuery"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: detect incorrectly used nullable parameter on non-nullable column insert" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active boolean not null)"
|> Sql.executeNonQuery
|> ignore
match context (find "../examples/hashing/insertQueryWithNonNullableParameter.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Sql.text or Sql.string" "Message contains suggestion to use non-nullable text functions"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: type mismatch with integer/serial" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id serial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/readAttemptIntegerTypeMismatch.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "read.int" "Message contains suggestion to use Sql.readBool"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: type mismatch with comparing against non-nullable column during SELECT" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id serial primary key, username text not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/selectWithNonNullableColumnComparison.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Sql.int instead" "Message contains suggestion to use Sql.readBool"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: type mismatch with comparing against non-nullable column during SELECT with JOINS" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id serial primary key, username text not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE user_roles (user_role_id serial primary key, role_description text not null, user_id int not null references users(user_id))"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/selectWithInnerJoins.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Sql.int instead" "Message contains suggestion to use Sql.readBool"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: type mismatch with comparing against non-nullable column during UPDATE with assignments" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id serial primary key, username text not null, last_login timestamptz)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/updateQueryWithParametersInAssignments.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let operation = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation operation db.ConnectionString schema
match messages with
| [ firstMessage; secondMessage ] ->
Expect.stringContains firstMessage.Message "Sql.int instead" "Suggest to use non-nullable Sql.int"
Expect.stringContains secondMessage.Message "Sql.text or Sql.string" "Suggest to use non-nullable text"
| _ ->
failwith "Expected only one error message"
}
test "SQL query semantic analysis: redundant parameters" {
use db = createTestDatabase()
Sql.connect db.ConnectionString
|> Sql.query "CREATE TABLE users (user_id bigserial primary key, username text not null, active bit not null)"
|> Sql.executeNonQuery
|> raiseWhenFailed
match context (find "../examples/hashing/semanticAnalysis-redundantParameters.fs") with
| None -> failwith "Could not crack project"
| Some context ->
match SqlAnalysis.databaseSchema db.ConnectionString with
| Result.Error connectionError ->
failwith connectionError
| Result.Ok schema ->
let block = List.exactlyOne (SyntacticAnalysis.findSqlOperations context)
let messages = SqlAnalysis.analyzeOperation block db.ConnectionString schema
match messages with
| [ message ] ->
Expect.stringContains message.Message "Provided parameters are redundant" "Message contains suggestion to remove Sql.parameters"
| _ ->
failwith "Expected only one error message"
}
]