@@ -14,24 +14,113 @@ public class MongoDbFilterVisitorComparableTests
14
14
{
15
15
private static readonly Foo [ ] _fooEntities =
16
16
{
17
- new Foo { BarShort = 12 } ,
18
- new Foo { BarShort = 14 } ,
19
- new Foo { BarShort = 13 }
17
+ new ( )
18
+ {
19
+ BarShort = 12 ,
20
+ BarDateTime = new DateTime ( 2000 , 1 , 12 , 0 , 0 , 0 , DateTimeKind . Utc )
21
+ } ,
22
+ new ( )
23
+ {
24
+ BarShort = 14 ,
25
+ BarDateTime = new DateTime ( 2000 , 1 , 14 , 0 , 0 , 0 , DateTimeKind . Utc )
26
+ } ,
27
+ new ( )
28
+ {
29
+ BarShort = 13 ,
30
+ BarDateTime = new DateTime ( 2000 , 1 , 13 , 0 , 0 , 0 , DateTimeKind . Utc )
31
+ }
20
32
} ;
21
33
22
34
private static readonly FooNullable [ ] _fooNullableEntities =
23
35
{
24
- new FooNullable { BarShort = 12 } ,
25
- new FooNullable { BarShort = null } ,
26
- new FooNullable { BarShort = 14 } ,
27
- new FooNullable { BarShort = 13 }
36
+ new ( )
37
+ {
38
+ BarShort = 12 ,
39
+ BarDateTime = new DateTime ( 2000 , 1 , 12 , 0 , 0 , 0 , DateTimeKind . Utc )
40
+ } ,
41
+ new ( ) { BarShort = null , BarDateTime = null } ,
42
+ new ( )
43
+ {
44
+ BarShort = 14 ,
45
+ BarDateTime = new DateTime ( 2000 , 1 , 14 , 0 , 0 , 0 , DateTimeKind . Utc )
46
+ } ,
47
+ new ( )
48
+ {
49
+ BarShort = 13 ,
50
+ BarDateTime = new DateTime ( 2000 , 1 , 13 , 0 , 0 , 0 , DateTimeKind . Utc )
51
+ }
28
52
} ;
29
53
30
54
public MongoDbFilterVisitorComparableTests ( MongoResource resource )
31
55
{
32
56
Init ( resource ) ;
33
57
}
34
58
59
+ [ Fact ]
60
+ public async Task Create_ShortEqual_Expression_DateTime ( )
61
+ {
62
+ // arrange
63
+ IRequestExecutor tester = CreateSchema < Foo , FooFilterType > ( _fooEntities ) ;
64
+
65
+ // act
66
+ // assert
67
+ IExecutionResult res1 = await tester . ExecuteAsync (
68
+ QueryRequestBuilder . New ( )
69
+ . SetQuery ( "{ root(where: { barDateTime: { eq: \" 2000-01-12T00:00Z\" }})" +
70
+ "{ barDateTime}}" )
71
+ . Create ( ) ) ;
72
+
73
+ res1 . MatchDocumentSnapshot ( "12" ) ;
74
+
75
+ IExecutionResult res2 = await tester . ExecuteAsync (
76
+ QueryRequestBuilder . New ( )
77
+ . SetQuery ( "{ root(where: { barDateTime: { eq: \" 2000-01-12T00:00Z\" }})" +
78
+ "{ barDateTime}}" )
79
+ . Create ( ) ) ;
80
+
81
+ res2 . MatchDocumentSnapshot ( "13" ) ;
82
+
83
+ IExecutionResult res3 = await tester . ExecuteAsync (
84
+ QueryRequestBuilder . New ( )
85
+ . SetQuery ( "{ root(where: { barDateTime: { eq: null}}){ barDateTime}}" )
86
+ . Create ( ) ) ;
87
+
88
+ res3 . MatchDocumentSnapshot ( "null" ) ;
89
+ }
90
+
91
+ [ Fact ]
92
+ public async Task Create_ShortEqual_Expression_DateTime_Nullable ( )
93
+ {
94
+ // arrange
95
+ IRequestExecutor tester =
96
+ CreateSchema < FooNullable , FooNullableFilterType > ( _fooNullableEntities ) ;
97
+
98
+ // act
99
+ // assert
100
+ IExecutionResult res1 = await tester . ExecuteAsync (
101
+ QueryRequestBuilder . New ( )
102
+ . SetQuery ( "{ root(where: { barDateTime: { eq: \" 2000-01-12T00:00:00Z\" }})" +
103
+ "{ barDateTime}}" )
104
+ . Create ( ) ) ;
105
+
106
+ res1 . MatchDocumentSnapshot ( "12" ) ;
107
+
108
+ IExecutionResult res2 = await tester . ExecuteAsync (
109
+ QueryRequestBuilder . New ( )
110
+ . SetQuery ( "{ root(where: { barDateTime: { eq: \" 2000-01-12T00:00:00Z\" }})" +
111
+ "{ barDateTime}}" )
112
+ . Create ( ) ) ;
113
+
114
+ res2 . MatchDocumentSnapshot ( "13" ) ;
115
+
116
+ IExecutionResult res3 = await tester . ExecuteAsync (
117
+ QueryRequestBuilder . New ( )
118
+ . SetQuery ( "{ root(where: { barDateTime: { eq: null}}){ barDateTime}}" )
119
+ . Create ( ) ) ;
120
+
121
+ res3 . MatchDocumentSnapshot ( "null" ) ;
122
+ }
123
+
35
124
[ Fact ]
36
125
public async Task Create_ShortEqual_Expression ( )
37
126
{
@@ -867,6 +956,8 @@ public class Foo
867
956
public double BarDouble { get ; set ; }
868
957
869
958
public decimal BarDecimal { get ; set ; }
959
+
960
+ public DateTime BarDateTime { get ; set ; }
870
961
}
871
962
872
963
public class FooNullable
@@ -875,6 +966,8 @@ public class FooNullable
875
966
public Guid Id { get ; set ; } = Guid . NewGuid ( ) ;
876
967
877
968
public short ? BarShort { get ; set ; }
969
+
970
+ public DateTime ? BarDateTime { get ; set ; }
878
971
}
879
972
880
973
public class FooFilterType
0 commit comments