Click here to Skip to main content
15,884,472 members
Articles / Programming Languages / C# 4.0

Flexpressions

Rate me:
Please Sign up or sign in to vote.
5.00/5 (19 votes)
10 Oct 2012CPOL10 min read 40K   507   47  
An intuitive-fluent API for generating Linq Expressions.
//  Flexpressions
//  Copyright © 2012 Andrew Rissing
//
//  Permission is hereby granted, free of charge, to any person obtaining a copy
//  of this software and associated documentation files (the "Software"), to deal
//  in the Software without restriction, including without limitation the rights 
//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
//  of the Software, and to permit persons to whom the Software is furnished to do so, 
//  subject to the following conditions:
//
//  The above copyright notice and this permission notice shall be included in all 
//  copies or substantial portions of the Software.
//
//  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
//  INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
//  PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE 
//  FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
//  ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

using System;
using System.Linq;
using System.Linq.Expressions;
using Flexpressions;
using Flexpressions.Extensions;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace FlexpressionsTest
{
	/// <summary>
	/// Contains all of the unit tests pertaining to the <see cref="SwitchCase&lt;TParent, R&gt;"/>.
	/// </summary>
	[TestClass]
	public class SwitchCaseTests
	{
		/// <summary>
		/// Exercises all versions of Case to ensure consistency.
		/// </summary>
		[TestMethod]
		public void SwitchCaseCaseExercise()
		{
			Expression inputAction;
			var inputs = Enumerable.Range(0, 17).ToArray();

			Func<int[], int> interceptor = (int[] arguments) =>
			{
				Assert.IsTrue(arguments.Length <= inputs.Length);
				CollectionAssert.AreEqual(inputs.Take(arguments.Length).ToArray(), arguments);

				return 0;
			};

			var funcs = Utility.CreateFuncs<int, int>(interceptor);
			var block = Flexpression<Action<int[]>>.Create(true, "i");
			var switchCase = block.Switch(() => 3).Case(() => 3);
			var switchCaseType = switchCase.GetType();

			for (int j = 0; j < inputs.Length; ++j)
			{
				int k = j;
				block.Set<int[], int>(string.Format("p{0}", j + 1), i => i[k]);
			}

			foreach (var caseMethod in switchCaseType.GetMethods().Where(x => x.Name == "Case"))
			{
				var methodToInvoke = caseMethod.MakeMethodConcrete<int, int>();
				var parameterType = methodToInvoke.GetParameters()[0].ParameterType;

				if (funcs.TryGetValue(parameterType, out inputAction))
				{
					if (funcs.TryGetValue(parameterType, out inputAction))
						methodToInvoke.Invoke(switchCase, new object[] { inputAction });
					else if (parameterType != typeof(Expression))
						Assert.Fail("Unable to find matching action for {0}.", parameterType.GetFriendlyName());
				}
			}

			var method = switchCase.EndCase().EndSwitch().End().Compile();
			method(inputs);
		}
		/// <summary>
		/// Creates a switch statement with a case and a default to ensure the code is executed properly.
		/// </summary>
		[TestMethod]
		public void SwitchCaseWithDefault()
		{
			Flexpression<Func<int>>
				.Create()
					.Switch(() => 0)
						.Case(() => 4)
						.Begin()
							.Return<int>(() => 5)
						.Default()
						.Begin()
							.Return<int>(() => 4)
					.EndSwitch()
				.End()
				.CreateLambda()
				.TestExpression(4);
		}
		/// <summary>
		/// Creates a switch statement with two defaults to ensure the code throws an exception.
		/// </summary>
		[TestMethod]
		[ExpectedException(typeof(InvalidOperationException))]
		public void SwitchCaseWithTwoDefaults()
		{
			Flexpression<Func<int>>
				.Create()
					.Switch(() => 0)
						.Case(() => 4)
						.Begin()
							.Return<int>(() => 5)
						.Default()
						.Default();
		}
		/// <summary>
		/// Creates a switch statement with a case followed by a default.
		/// </summary>
		[TestMethod]
		public void SwitchCaseWithCaseThenDefault()
		{
			Flexpression<Func<int>>
				.Create()
					.Switch(() => 0)
						.Case(() => 4)
						.Begin()
							.Return<int>(() => 5)
						.Case(() => 2)
						.Default()
						.Begin()
							.Return<int>(() => 4)
					.EndSwitch()
				.End()
				.CreateLambda()
				.TestExpression(4);
		}
		/// <summary>
		/// Ensures that the switch case statement's CreateExpression throws an exception with a null argument.
		/// </summary>
		[TestMethod]
		[ExpectedException(typeof(InvalidOperationException))]
		public void SwitchCaseWithCaseThenDefaultWithNullArgument()
		{
			var method = Flexpression<Func<int>>
				.Create()
					.Switch(() => 0)
						.Case(() => 4)
						.Begin()
							.Return<int>(() => 5)
						.Case(() => 2)
						.CreateExpression(null);
		}
		/// <summary>
		/// Ensures that the switch case statement's CreateExpression throws an exception with a non-null argument.
		/// </summary>
		[TestMethod]
		[ExpectedException(typeof(InvalidOperationException))]
		public void SwitchCaseWithCaseThenDefaultWithNonNullArgument()
		{
			var method = Flexpression<Func<int>>
				.Create()
					.Switch(() => 0)
						.Case(() => 4)
						.Begin()
							.Return<int>(() => 5)
						.Case(() => 2)
						.CreateExpression(Enumerable.Empty<Expression>());
		}
		/// <summary>
		/// Creates a switch statement with just a default to ensure the code is executed properly.
		/// </summary>
		[TestMethod]
		public void SwitchCaseWithDefaultOnly()
		{
			Flexpression<Func<int>>
				.Create()
					.Switch(() => 0)
						.Default()
						.Begin()
							.Return<int>(() => 4)
					.EndSwitch()
				.End()
				.CreateLambda()
				.TestExpression(4);
		}
		/// <summary>
		/// Exercises Case methods on SwitchCase to ensure input is validated.
		/// </summary>
		[TestMethod]
		public void SwitchCaseCaseInputValidation()
		{
			var switchBlock = Flexpression<Action<int[]>>.Create().Switch(() => 2).Case(() => 3);

			switchBlock.ValidateInputCase
			(
				new InputCase("Case", typeof(ArgumentNullException), new object[] { null })
			);
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Since I've begun my profession as a software developer, I've learned one important fact - change is inevitable. Requirements change, code changes, and life changes.

So..If you're not moving forward, you're moving backwards.

Comments and Discussions