-
-
Notifications
You must be signed in to change notification settings - Fork 524
Expand file tree
/
Copy pathPostgresJsonTests.cs
More file actions
70 lines (58 loc) · 2.38 KB
/
PostgresJsonTests.cs
File metadata and controls
70 lines (58 loc) · 2.38 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
using SqlKata.Compilers;
using SqlKata.Tests.Infrastructure;
using System;
using Xunit;
namespace SqlKata.Tests.PostgreSql
{
public class PostgresJsonTests : TestSupport
{
public class JsonAwarePostgresCompiler : PostgresCompiler
{
public override string ParameterPlaceholder { get; protected set; } = "$$";
}
private readonly JsonAwarePostgresCompiler compiler = new();
private PostgresCompiler regularCompiler;
public PostgresJsonTests()
{
regularCompiler = Compilers.Get<PostgresCompiler>(EngineCodes.PostgreSql);
}
[Fact]
public void LimitWithCustomPlaceHolder()
{
var query = new Query("Table").Limit(10);
var ctx = new SqlResult(compiler) { Query = query };
Assert.Equal($"LIMIT $$", compiler.CompileLimit(ctx));
Assert.Equal(10, ctx.Bindings[0]);
}
[Fact]
public void RegularCompilerThrowsExceptionWhereRawJsonContainsQuestionMarkData()
{
Assert.Throws<IndexOutOfRangeException>(() =>
{
Query query = CreateQuestionMarkJsonQuery(out var rawCondition);
SqlResult result = regularCompiler.Compile(query);
Assert.Equal($"SELECT * FROM \"Table\" WHERE {rawCondition}", result.ToString());
});
}
private Query CreateQuestionMarkJsonQuery(out string rawCondition)
{
rawCondition = "my_json_column @> '{\"json_param\" : \"question mark ? \"}'";
var escapedJsonCondition = rawCondition.Replace("{", "\\{").Replace("}", "\\}");
return new Query("Table").WhereRaw(escapedJsonCondition);
}
[Fact]
public void WhereRawJsonWithQuestionMarkData()
{
Query query = CreateQuestionMarkJsonQuery(out var rawCondition);
SqlResult result = compiler.Compile(query);
Assert.Equal($"SELECT * FROM \"Table\" WHERE {rawCondition}", result.ToString());
}
[Fact]
public void UsingJsonArray()
{
var query = new Query("Table").WhereRaw("[Json]->'address'->>'country' in ($$)", new[] { 1, 2, 3, 4 });
SqlResult result = compiler.Compile(query);
Assert.Equal("SELECT * FROM \"Table\" WHERE \"Json\"->'address'->>'country' in (1,2,3,4)", result.ToString());
}
}
}