1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 // Federico Di Gregorio <fog@initd.org>
21 // Jb Evain <jbevain@novell.com>
24 using System
.Reflection
;
26 using System
.Linq
.Expressions
;
27 using NUnit
.Framework
;
29 namespace MonoTests
.System
.Linq
.Expressions
32 public class ExpressionTest_AndAlso
35 [ExpectedException (typeof (ArgumentNullException
))]
36 public void Arg1Null ()
38 Expression
.AndAlso (null, Expression
.Constant (1));
42 [ExpectedException (typeof (ArgumentNullException
))]
43 public void Arg2Null ()
45 Expression
.AndAlso (Expression
.Constant (1), null);
49 [ExpectedException (typeof (InvalidOperationException
))]
50 public void NoOperatorClass ()
52 Expression
.AndAlso (Expression
.Constant (new NoOpClass ()), Expression
.Constant (new NoOpClass ()));
56 [ExpectedException (typeof (InvalidOperationException
))]
59 Expression
.AndAlso (Expression
.Constant (1.0), Expression
.Constant (2.0));
63 [ExpectedException (typeof (InvalidOperationException
))]
64 public void Integer ()
66 Expression
.AndAlso (Expression
.Constant (1), Expression
.Constant (2));
70 [ExpectedException (typeof (InvalidOperationException
))]
71 public void MismatchedTypes ()
73 Expression
.AndAlso (Expression
.Constant (new OpClass ()), Expression
.Constant (true));
77 public void Boolean ()
79 BinaryExpression expr
= Expression
.AndAlso (Expression
.Constant (true), Expression
.Constant (false));
80 Assert
.AreEqual (ExpressionType
.AndAlso
, expr
.NodeType
, "AndAlso#01");
81 Assert
.AreEqual (typeof (bool), expr
.Type
, "AndAlso#02");
82 Assert
.IsNull (expr
.Method
, "AndAlso#03");
86 public void UserDefinedClass ()
88 // We can use the simplest version of GetMethod because we already know only one
89 // exists in the very simple class we're using for the tests.
90 MethodInfo mi
= typeof (OpClass
).GetMethod ("op_BitwiseAnd");
92 BinaryExpression expr
= Expression
.AndAlso (Expression
.Constant (new OpClass ()), Expression
.Constant (new OpClass ()));
93 Assert
.AreEqual (ExpressionType
.AndAlso
, expr
.NodeType
, "AndAlso#05");
94 Assert
.AreEqual (typeof (OpClass
), expr
.Type
, "AndAlso#06");
95 Assert
.AreEqual (mi
, expr
.Method
, "AndAlso#07");
96 Assert
.AreEqual ("op_BitwiseAnd", expr
.Method
.Name
, "AndAlso#08");
100 public void AndAlsoTest ()
102 var a
= Expression
.Parameter (typeof (bool), "a");
103 var b
= Expression
.Parameter (typeof (bool), "b");
104 var l
= Expression
.Lambda
<Func
<bool, bool, bool>> (
105 Expression
.AndAlso (a
, b
), a
, b
);
107 var be
= l
.Body
as BinaryExpression
;
108 Assert
.IsNotNull (be
);
109 Assert
.AreEqual (typeof (bool), be
.Type
);
110 Assert
.IsFalse (be
.IsLifted
);
111 Assert
.IsFalse (be
.IsLiftedToNull
);
113 var c
= l
.Compile ();
115 Assert
.AreEqual (true, c (true, true), "a1");
116 Assert
.AreEqual (false, c (true, false), "a2");
117 Assert
.AreEqual (false, c (false, true), "a3");
118 Assert
.AreEqual (false, c (false, false), "a4");
122 public void AndAlsoLifted ()
124 var b
= Expression
.AndAlso (
125 Expression
.Constant (null, typeof (bool?)),
126 Expression
.Constant (null, typeof (bool?)));
128 Assert
.AreEqual (typeof (bool?), b
.Type
);
129 Assert
.IsTrue (b
.IsLifted
);
130 Assert
.IsTrue (b
.IsLiftedToNull
);
134 public void AndAlsoNotLifted ()
136 var b
= Expression
.AndAlso (
137 Expression
.Constant (true, typeof (bool)),
138 Expression
.Constant (true, typeof (bool)));
140 Assert
.AreEqual (typeof (bool), b
.Type
);
141 Assert
.IsFalse (b
.IsLifted
);
142 Assert
.IsFalse (b
.IsLiftedToNull
);
146 public void AndAlsoTestNullable ()
148 var a
= Expression
.Parameter (typeof (bool?), "a");
149 var b
= Expression
.Parameter (typeof (bool?), "b");
150 var l
= Expression
.Lambda
<Func
<bool?, bool?, bool?>> (
151 Expression
.AndAlso (a
, b
), a
, b
);
153 var be
= l
.Body
as BinaryExpression
;
154 Assert
.IsNotNull (be
);
155 Assert
.AreEqual (typeof (bool?), be
.Type
);
156 Assert
.IsTrue (be
.IsLifted
);
157 Assert
.IsTrue (be
.IsLiftedToNull
);
159 var c
= l
.Compile ();
161 Assert
.AreEqual (true, c (true, true), "a1");
162 Assert
.AreEqual (false, c (true, false), "a2");
163 Assert
.AreEqual (false, c (false, true), "a3");
164 Assert
.AreEqual (false, c (false, false), "a4");
166 Assert
.AreEqual (null, c (true, null), "a5");
167 Assert
.AreEqual (false, c (false, null), "a6");
168 Assert
.AreEqual (false, c (null, false), "a7");
169 Assert
.AreEqual (null, c (true, null), "a8");
170 Assert
.AreEqual (null, c (null, null), "a9");
174 public void AndAlsoBoolItem ()
176 var i
= Expression
.Parameter (typeof (Item
<bool>), "i");
177 var and
= Expression
.Lambda
<Func
<Item
<bool>, bool>> (
179 Expression
.Property (i
, "Left"),
180 Expression
.Property (i
, "Right")), i
).Compile ();
182 var item
= new Item
<bool> (false, true);
183 Assert
.AreEqual (false, and (item
));
184 Assert
.IsTrue (item
.LeftCalled
);
185 Assert
.IsFalse (item
.RightCalled
);
189 public void AndAlsoNullableBoolItem ()
191 var i
= Expression
.Parameter (typeof (Item
<bool?>), "i");
192 var and
= Expression
.Lambda
<Func
<Item
<bool?>, bool?>> (
194 Expression
.Property (i
, "Left"),
195 Expression
.Property (i
, "Right")), i
).Compile ();
197 var item
= new Item
<bool?> (false, true);
198 Assert
.AreEqual ((bool?) false, and (item
));
199 Assert
.IsTrue (item
.LeftCalled
);
200 Assert
.IsFalse (item
.RightCalled
);
207 public Slot (int val
)
212 public static Slot
operator & (Slot a
, Slot b
)
214 return new Slot (a
.Value
& b
.Value
);
217 public static bool operator true (Slot a
)
222 public static bool operator false (Slot a
)
227 public override string ToString ()
229 return Value
.ToString ();
234 public void UserDefinedAndAlso ()
236 var l
= Expression
.Parameter (typeof (Slot
), "l");
237 var r
= Expression
.Parameter (typeof (Slot
), "r");
239 var method
= typeof (Slot
).GetMethod ("op_BitwiseAnd");
241 var node
= Expression
.AndAlso (l
, r
, method
);
242 Assert
.IsFalse (node
.IsLifted
);
243 Assert
.IsFalse (node
.IsLiftedToNull
);
244 Assert
.AreEqual (method
, node
.Method
);
246 var andalso
= Expression
.Lambda
<Func
<Slot
, Slot
, Slot
>> (node
, l
, r
).Compile ();
248 Assert
.AreEqual (new Slot (64), andalso (new Slot (64), new Slot (64)));
249 Assert
.AreEqual (new Slot (0), andalso (new Slot (32), new Slot (64)));
250 Assert
.AreEqual (new Slot (0), andalso (new Slot (64), new Slot (32)));
254 public void UserDefinedAndAlsoShortCircuit ()
256 var i
= Expression
.Parameter (typeof (Item
<Slot
>), "i");
257 var and
= Expression
.Lambda
<Func
<Item
<Slot
>, Slot
>> (
259 Expression
.Property (i
, "Left"),
260 Expression
.Property (i
, "Right")), i
).Compile ();
262 var item
= new Item
<Slot
> (new Slot (0), new Slot (1));
263 Assert
.AreEqual (new Slot (0), and (item
));
264 Assert
.IsTrue (item
.LeftCalled
);
265 Assert
.IsFalse (item
.RightCalled
);
269 [Category ("NotDotNet")] // https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=350228
270 public void UserDefinedLiftedAndAlsoShortCircuit ()
272 var i
= Expression
.Parameter (typeof (Item
<Slot
?>), "i");
273 var and
= Expression
.Lambda
<Func
<Item
<Slot
?>, Slot
?>> (
275 Expression
.Property (i
, "Left"),
276 Expression
.Property (i
, "Right")), i
).Compile ();
278 var item
= new Item
<Slot
?> (null, new Slot (1));
279 Assert
.AreEqual ((Slot
?) null, and (item
));
280 Assert
.IsTrue (item
.LeftCalled
);
281 Assert
.IsFalse (item
.RightCalled
);
285 public void UserDefinedAndAlsoLiftedToNull ()
287 var l
= Expression
.Parameter (typeof (Slot
?), "l");
288 var r
= Expression
.Parameter (typeof (Slot
?), "r");
290 var method
= typeof (Slot
).GetMethod ("op_BitwiseAnd");
292 var node
= Expression
.AndAlso (l
, r
, method
);
293 Assert
.IsTrue (node
.IsLifted
);
294 Assert
.IsTrue (node
.IsLiftedToNull
);
295 Assert
.AreEqual (method
, node
.Method
);
297 var andalso
= Expression
.Lambda
<Func
<Slot
?, Slot
?, Slot
?>> (node
, l
, r
).Compile ();
299 Assert
.AreEqual (new Slot (64), andalso (new Slot (64), new Slot (64)));
300 Assert
.AreEqual (new Slot (0), andalso (new Slot (32), new Slot (64)));
301 Assert
.AreEqual (new Slot (0), andalso (new Slot (64), new Slot (32)));
302 Assert
.AreEqual (null, andalso (null, new Slot (32)));
303 Assert
.AreEqual (null, andalso (new Slot (64), null));
304 Assert
.AreEqual (null, andalso (null, null));
310 public Incomplete (int val
)
315 public static Incomplete
operator & (Incomplete a
, Incomplete b
)
317 return new Incomplete (a
.Value
& b
.Value
);
322 [ExpectedException (typeof (ArgumentException
))]
323 public void IncompleteUserDefinedAndAlso ()
325 var l
= Expression
.Parameter (typeof (Incomplete
), "l");
326 var r
= Expression
.Parameter (typeof (Incomplete
), "r");
328 var method
= typeof (Incomplete
).GetMethod ("op_BitwiseAnd");
330 Expression
.AndAlso (l
, r
, method
);
334 public static bool operator true (A x
)
339 public static bool operator false (A x
)
346 public static B
operator & (B x
, B y
)
351 public static bool op_True
<T
> (B x
)
356 public static bool op_False (B x
)
362 [Test
] // from https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=350487
363 public void Connect350487 ()
365 var p
= Expression
.Parameter (typeof (B
), "b");
366 var l
= Expression
.Lambda
<Func
<B
, A
>> (
367 Expression
.AndAlso (p
, p
), p
).Compile ();
369 Assert
.IsNotNull (l (null));