forked from npgsql/efcore.pg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigationsSetOperationsNpgsqlTest.cs
More file actions
159 lines (147 loc) · 11.5 KB
/
NavigationsSetOperationsNpgsqlTest.cs
File metadata and controls
159 lines (147 loc) · 11.5 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.EntityFrameworkCore.Query.Associations.Navigations;
public class NavigationsSetOperationsNpgsqlTest(
NavigationsNpgsqlFixture fixture,
ITestOutputHelper testOutputHelper)
: NavigationsSetOperationsRelationalTestBase<NavigationsNpgsqlFixture>(fixture, testOutputHelper)
{
public override async Task Over_associate_collections()
{
await base.Over_associate_collections();
AssertSql(
"""
SELECT r."Id", r."Name", r."OptionalAssociateId", r."RequiredAssociateId", s."Id", s."CollectionRootId", s."Int", s."Ints", s."Name", s."OptionalNestedAssociateId", s."RequiredNestedAssociateId", s."String", s."Id0", s."CollectionAssociateId", s."Int0", s."Ints0", s."Name0", s."String0", s."Id1", s."CollectionAssociateId0", s."Int1", s."Ints1", s."Name1", s."String1", s."Id2", s."CollectionAssociateId1", s."Int2", s."Ints2", s."Name2", s."String2", a1."Id", a1."CollectionRootId", a1."Int", a1."Ints", a1."Name", a1."OptionalNestedAssociateId", a1."RequiredNestedAssociateId", a1."String", n6."Id", n6."CollectionAssociateId", n6."Int", n6."Ints", n6."Name", n6."String", n."Id", n."CollectionAssociateId", n."Int", n."Ints", n."Name", n."String", n0."Id", n0."CollectionAssociateId", n0."Int", n0."Ints", n0."Name", n0."String", a2."Id", a2."CollectionRootId", a2."Int", a2."Ints", a2."Name", a2."OptionalNestedAssociateId", a2."RequiredNestedAssociateId", a2."String", n7."Id", n7."CollectionAssociateId", n7."Int", n7."Ints", n7."Name", n7."String", n1."Id", n1."CollectionAssociateId", n1."Int", n1."Ints", n1."Name", n1."String", n2."Id", n2."CollectionAssociateId", n2."Int", n2."Ints", n2."Name", n2."String"
FROM "RootEntity" AS r
LEFT JOIN "AssociateType" AS a1 ON r."OptionalAssociateId" = a1."Id"
LEFT JOIN "NestedAssociateType" AS n ON a1."OptionalNestedAssociateId" = n."Id"
LEFT JOIN "NestedAssociateType" AS n0 ON a1."RequiredNestedAssociateId" = n0."Id"
INNER JOIN "AssociateType" AS a2 ON r."RequiredAssociateId" = a2."Id"
LEFT JOIN "NestedAssociateType" AS n1 ON a2."OptionalNestedAssociateId" = n1."Id"
INNER JOIN "NestedAssociateType" AS n2 ON a2."RequiredNestedAssociateId" = n2."Id"
LEFT JOIN (
SELECT a3."Id", a3."CollectionRootId", a3."Int", a3."Ints", a3."Name", a3."OptionalNestedAssociateId", a3."RequiredNestedAssociateId", a3."String", n5."Id" AS "Id0", n5."CollectionAssociateId", n5."Int" AS "Int0", n5."Ints" AS "Ints0", n5."Name" AS "Name0", n5."String" AS "String0", n3."Id" AS "Id1", n3."CollectionAssociateId" AS "CollectionAssociateId0", n3."Int" AS "Int1", n3."Ints" AS "Ints1", n3."Name" AS "Name1", n3."String" AS "String1", n4."Id" AS "Id2", n4."CollectionAssociateId" AS "CollectionAssociateId1", n4."Int" AS "Int2", n4."Ints" AS "Ints2", n4."Name" AS "Name2", n4."String" AS "String2"
FROM "AssociateType" AS a3
LEFT JOIN "NestedAssociateType" AS n3 ON a3."OptionalNestedAssociateId" = n3."Id"
INNER JOIN "NestedAssociateType" AS n4 ON a3."RequiredNestedAssociateId" = n4."Id"
LEFT JOIN "NestedAssociateType" AS n5 ON a3."Id" = n5."CollectionAssociateId"
) AS s ON r."Id" = s."CollectionRootId"
LEFT JOIN "NestedAssociateType" AS n6 ON a1."Id" = n6."CollectionAssociateId"
LEFT JOIN "NestedAssociateType" AS n7 ON a2."Id" = n7."CollectionAssociateId"
WHERE (
SELECT count(*)::int
FROM (
SELECT 1
FROM "AssociateType" AS a
WHERE r."Id" = a."CollectionRootId" AND a."Int" = 8
UNION ALL
SELECT 1
FROM "AssociateType" AS a0
WHERE r."Id" = a0."CollectionRootId" AND a0."String" = 'foo'
) AS u) = 4
ORDER BY r."Id" NULLS FIRST, s."Id" NULLS FIRST, s."Id0" NULLS FIRST, n6."Id" NULLS FIRST
""");
}
public override async Task Over_associate_collection_projected(QueryTrackingBehavior queryTrackingBehavior)
{
await base.Over_associate_collection_projected(queryTrackingBehavior);
AssertSql();
}
public override async Task Over_assocate_collection_Select_nested_with_aggregates_projected(QueryTrackingBehavior queryTrackingBehavior)
{
await base.Over_assocate_collection_Select_nested_with_aggregates_projected(queryTrackingBehavior);
AssertSql(
"""
SELECT (
SELECT COALESCE(sum((
SELECT COALESCE(sum(n."Int"), 0)::int
FROM "NestedAssociateType" AS n
WHERE u."Id" = n."CollectionAssociateId")), 0)::int
FROM (
SELECT a."Id"
FROM "AssociateType" AS a
WHERE r."Id" = a."CollectionRootId" AND a."Int" = 8
UNION ALL
SELECT a0."Id"
FROM "AssociateType" AS a0
WHERE r."Id" = a0."CollectionRootId" AND a0."String" = 'foo'
) AS u)
FROM "RootEntity" AS r
""");
}
public override async Task Over_nested_associate_collection()
{
await base.Over_nested_associate_collection();
AssertSql(
"""
SELECT r."Id", r."Name", r."OptionalAssociateId", r."RequiredAssociateId", s."Id", s."CollectionRootId", s."Int", s."Ints", s."Name", s."OptionalNestedAssociateId", s."RequiredNestedAssociateId", s."String", s."Id0", s."CollectionAssociateId", s."Int0", s."Ints0", s."Name0", s."String0", s."Id1", s."CollectionAssociateId0", s."Int1", s."Ints1", s."Name1", s."String1", s."Id2", s."CollectionAssociateId1", s."Int2", s."Ints2", s."Name2", s."String2", a0."Id", a0."CollectionRootId", a0."Int", a0."Ints", a0."Name", a0."OptionalNestedAssociateId", a0."RequiredNestedAssociateId", a0."String", n8."Id", n8."CollectionAssociateId", n8."Int", n8."Ints", n8."Name", n8."String", n1."Id", n1."CollectionAssociateId", n1."Int", n1."Ints", n1."Name", n1."String", n2."Id", n2."CollectionAssociateId", n2."Int", n2."Ints", n2."Name", n2."String", a."Id", a."CollectionRootId", a."Int", a."Ints", a."Name", a."OptionalNestedAssociateId", a."RequiredNestedAssociateId", a."String", n9."Id", n9."CollectionAssociateId", n9."Int", n9."Ints", n9."Name", n9."String", n3."Id", n3."CollectionAssociateId", n3."Int", n3."Ints", n3."Name", n3."String", n4."Id", n4."CollectionAssociateId", n4."Int", n4."Ints", n4."Name", n4."String"
FROM "RootEntity" AS r
INNER JOIN "AssociateType" AS a ON r."RequiredAssociateId" = a."Id"
LEFT JOIN "AssociateType" AS a0 ON r."OptionalAssociateId" = a0."Id"
LEFT JOIN "NestedAssociateType" AS n1 ON a0."OptionalNestedAssociateId" = n1."Id"
LEFT JOIN "NestedAssociateType" AS n2 ON a0."RequiredNestedAssociateId" = n2."Id"
LEFT JOIN "NestedAssociateType" AS n3 ON a."OptionalNestedAssociateId" = n3."Id"
INNER JOIN "NestedAssociateType" AS n4 ON a."RequiredNestedAssociateId" = n4."Id"
LEFT JOIN (
SELECT a1."Id", a1."CollectionRootId", a1."Int", a1."Ints", a1."Name", a1."OptionalNestedAssociateId", a1."RequiredNestedAssociateId", a1."String", n7."Id" AS "Id0", n7."CollectionAssociateId", n7."Int" AS "Int0", n7."Ints" AS "Ints0", n7."Name" AS "Name0", n7."String" AS "String0", n5."Id" AS "Id1", n5."CollectionAssociateId" AS "CollectionAssociateId0", n5."Int" AS "Int1", n5."Ints" AS "Ints1", n5."Name" AS "Name1", n5."String" AS "String1", n6."Id" AS "Id2", n6."CollectionAssociateId" AS "CollectionAssociateId1", n6."Int" AS "Int2", n6."Ints" AS "Ints2", n6."Name" AS "Name2", n6."String" AS "String2"
FROM "AssociateType" AS a1
LEFT JOIN "NestedAssociateType" AS n5 ON a1."OptionalNestedAssociateId" = n5."Id"
INNER JOIN "NestedAssociateType" AS n6 ON a1."RequiredNestedAssociateId" = n6."Id"
LEFT JOIN "NestedAssociateType" AS n7 ON a1."Id" = n7."CollectionAssociateId"
) AS s ON r."Id" = s."CollectionRootId"
LEFT JOIN "NestedAssociateType" AS n8 ON a0."Id" = n8."CollectionAssociateId"
LEFT JOIN "NestedAssociateType" AS n9 ON a."Id" = n9."CollectionAssociateId"
WHERE (
SELECT count(*)::int
FROM (
SELECT 1
FROM "NestedAssociateType" AS n
WHERE a."Id" = n."CollectionAssociateId" AND n."Int" = 8
UNION ALL
SELECT 1
FROM "NestedAssociateType" AS n0
WHERE a."Id" = n0."CollectionAssociateId" AND n0."String" = 'foo'
) AS u) = 4
ORDER BY r."Id" NULLS FIRST, s."Id" NULLS FIRST, s."Id0" NULLS FIRST, n8."Id" NULLS FIRST
""");
}
public override async Task Over_different_collection_properties()
{
await base.Over_different_collection_properties();
AssertSql(
"""
SELECT r."Id", r."Name", r."OptionalAssociateId", r."RequiredAssociateId", s."Id", s."CollectionRootId", s."Int", s."Ints", s."Name", s."OptionalNestedAssociateId", s."RequiredNestedAssociateId", s."String", s."Id0", s."CollectionAssociateId", s."Int0", s."Ints0", s."Name0", s."String0", s."Id1", s."CollectionAssociateId0", s."Int1", s."Ints1", s."Name1", s."String1", s."Id2", s."CollectionAssociateId1", s."Int2", s."Ints2", s."Name2", s."String2", a0."Id", a0."CollectionRootId", a0."Int", a0."Ints", a0."Name", a0."OptionalNestedAssociateId", a0."RequiredNestedAssociateId", a0."String", n8."Id", n8."CollectionAssociateId", n8."Int", n8."Ints", n8."Name", n8."String", n1."Id", n1."CollectionAssociateId", n1."Int", n1."Ints", n1."Name", n1."String", n2."Id", n2."CollectionAssociateId", n2."Int", n2."Ints", n2."Name", n2."String", a."Id", a."CollectionRootId", a."Int", a."Ints", a."Name", a."OptionalNestedAssociateId", a."RequiredNestedAssociateId", a."String", n9."Id", n9."CollectionAssociateId", n9."Int", n9."Ints", n9."Name", n9."String", n3."Id", n3."CollectionAssociateId", n3."Int", n3."Ints", n3."Name", n3."String", n4."Id", n4."CollectionAssociateId", n4."Int", n4."Ints", n4."Name", n4."String"
FROM "RootEntity" AS r
INNER JOIN "AssociateType" AS a ON r."RequiredAssociateId" = a."Id"
LEFT JOIN "AssociateType" AS a0 ON r."OptionalAssociateId" = a0."Id"
LEFT JOIN "NestedAssociateType" AS n1 ON a0."OptionalNestedAssociateId" = n1."Id"
LEFT JOIN "NestedAssociateType" AS n2 ON a0."RequiredNestedAssociateId" = n2."Id"
LEFT JOIN "NestedAssociateType" AS n3 ON a."OptionalNestedAssociateId" = n3."Id"
INNER JOIN "NestedAssociateType" AS n4 ON a."RequiredNestedAssociateId" = n4."Id"
LEFT JOIN (
SELECT a1."Id", a1."CollectionRootId", a1."Int", a1."Ints", a1."Name", a1."OptionalNestedAssociateId", a1."RequiredNestedAssociateId", a1."String", n7."Id" AS "Id0", n7."CollectionAssociateId", n7."Int" AS "Int0", n7."Ints" AS "Ints0", n7."Name" AS "Name0", n7."String" AS "String0", n5."Id" AS "Id1", n5."CollectionAssociateId" AS "CollectionAssociateId0", n5."Int" AS "Int1", n5."Ints" AS "Ints1", n5."Name" AS "Name1", n5."String" AS "String1", n6."Id" AS "Id2", n6."CollectionAssociateId" AS "CollectionAssociateId1", n6."Int" AS "Int2", n6."Ints" AS "Ints2", n6."Name" AS "Name2", n6."String" AS "String2"
FROM "AssociateType" AS a1
LEFT JOIN "NestedAssociateType" AS n5 ON a1."OptionalNestedAssociateId" = n5."Id"
INNER JOIN "NestedAssociateType" AS n6 ON a1."RequiredNestedAssociateId" = n6."Id"
LEFT JOIN "NestedAssociateType" AS n7 ON a1."Id" = n7."CollectionAssociateId"
) AS s ON r."Id" = s."CollectionRootId"
LEFT JOIN "NestedAssociateType" AS n8 ON a0."Id" = n8."CollectionAssociateId"
LEFT JOIN "NestedAssociateType" AS n9 ON a."Id" = n9."CollectionAssociateId"
WHERE (
SELECT count(*)::int
FROM (
SELECT 1
FROM "NestedAssociateType" AS n
WHERE a."Id" = n."CollectionAssociateId"
UNION ALL
SELECT 1
FROM "NestedAssociateType" AS n0
WHERE a0."Id" IS NOT NULL AND a0."Id" = n0."CollectionAssociateId"
) AS u) = 4
ORDER BY r."Id" NULLS FIRST, s."Id" NULLS FIRST, s."Id0" NULLS FIRST, n8."Id" NULLS FIRST
""");
}
[ConditionalFact]
public virtual void Check_all_tests_overridden()
=> TestHelpers.AssertAllMethodsOverridden(GetType());
}