-
-
Notifications
You must be signed in to change notification settings - Fork 524
Expand file tree
/
Copy pathPostgresJsonTests.cs
More file actions
61 lines (53 loc) · 2.3 KB
/
PostgresJsonTests.cs
File metadata and controls
61 lines (53 loc) · 2.3 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
using SqlKata.Compilers;
using SqlKata.Tests.Infrastructure;
using System;
using Xunit;
namespace SqlKata.Tests.PostgreSql
{
public class PostgresJsonTests : TestSupport
{
private readonly PostgresCompiler regularCompiler = new();
private readonly JsonAwarePostgresCompiler jsonCompatibleCompiler = new();
private class JsonAwarePostgresCompiler : PostgresCompiler
{
protected override string parameterPlaceholder { get; set; } = "¤";
}
[Fact]
public void LimitWithCustomPlaceHolder()
{
var query = new Query("test_table").Limit(10);
var result = jsonCompatibleCompiler.Compile(query);
Assert.Equal("""SELECT * FROM "test_table" LIMIT 10""", result.ToString());
}
[Fact]
public void RegularCompilerThrowsExceptionWhereRawJsonContainsQuestionMarkData()
{
Assert.Throws<IndexOutOfRangeException>(() =>
{
Query query = CreateQuestionMarkJsonQuery(out var rawCondition);
SqlResult result = regularCompiler.Compile(query);
Assert.Equal($"""SELECT * FROM "test_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("test_table").WhereRaw(escapedJsonCondition);
}
[Fact]
public void WhereRawJsonWithQuestionMarkData()
{
Query query = CreateQuestionMarkJsonQuery(out var rawCondition);
SqlResult result = jsonCompatibleCompiler.Compile(query);
Assert.Equal($"""SELECT * FROM "test_table" WHERE {rawCondition}""", result.ToString());
}
[Fact]
public void UsingJsonArray()
{
var query = new Query("test_table").WhereRaw("[Json]->'address'->>'country' in (¤)", new[] { 1, 2, 3, 4 });
SqlResult result = jsonCompatibleCompiler.Compile(query);
Assert.Equal("""SELECT * FROM "test_table" WHERE "Json"->'address'->>'country' in (1,2,3,4)""", result.ToString());
}
}
}