Click here to Skip to main content
15,881,812 members
Articles / Programming Languages / CAML

Camlex.NET 3.0 and Camlex Online: CAML Reverse Engineering

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
7 Jan 2012Ms-PL4 min read 23.6K   270   5  
Camlex.NET 3.0 and Camlex Online allows developers to refactor CAML queries to compilable C# code
#region Copyright(c) Alexey Sadomov, Vladimir Timashkov. All Rights Reserved.
// -----------------------------------------------------------------------------
// Copyright(c) 2010 Alexey Sadomov, Vladimir Timashkov. All Rights Reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
//   1. No Trademark License - Microsoft Public License (Ms-PL) does not grant you rights to use
//      authors names, logos, or trademarks.
//   2. If you distribute any portion of the software, you must retain all copyright,
//      patent, trademark, and attribution notices that are present in the software.
//   3. If you distribute any portion of the software in source code form, you may do
//      so only under this license by including a complete copy of Microsoft Public License (Ms-PL)
//      with your distribution. If you distribute any portion of the software in compiled
//      or object code form, you may only do so under a license that complies with
//      Microsoft Public License (Ms-PL).
//   4. The names of the authors may not be used to endorse or promote products
//      derived from this software without specific prior written permission.
//
// The software is licensed "as-is." You bear the risk of using it. The authors
// give no express warranties, guarantees or conditions. You may have additional consumer
// rights under your local laws which this license cannot change. To the extent permitted
// under your local laws, the authors exclude the implied warranties of merchantability,
// fitness for a particular purpose and non-infringement.
// -----------------------------------------------------------------------------
#endregion
using System;
using System.Linq.Expressions;
using CamlexNET.Impl.Operations.Contains;
using CamlexNET.Interfaces;
using Microsoft.SharePoint;
using NUnit.Framework;
using Rhino.Mocks;

namespace CamlexNET.UnitTests.Operations.Contains
{
    [TestFixture]
    public class ContainsAnalyzerTests
    {
        [Test]
        public void test_THAT_contains_expression_with_string_type_IS_valid()
        {
            var analyzer = new ContainsAnalyzer(null, null);
            Expression<Func<SPListItem, bool>> expr = x => ((string)x["Count"]).Contains("foo");
            Assert.That(analyzer.IsValid(expr), Is.True);
        }

        [Test]
        public void test_THAT_contains_expression_with_custom_text_type_IS_valid()
        {
            var analyzer = new ContainsAnalyzer(null, null);
            Expression<Func<SPListItem, bool>> expr = x => ((DataTypes.Text)x["Count"]).Contains("foo");
            Assert.That(analyzer.IsValid(expr), Is.True);
        }

        [Test]
        public void test_THAT_contains_expression_with_custom_note_type_IS_valid()
        {
            var analyzer = new ContainsAnalyzer(null, null);
            Expression<Func<SPListItem, bool>> expr = x => ((DataTypes.Note)x["Count"]).Contains("foo");
            Assert.That(analyzer.IsValid(expr), Is.True);
        }

        [Test]
        public void test_THAT_contains_expression_with_string_type_and_variable_IS_valid()
        {
            var analyzer = new ContainsAnalyzer(null, null);
            var stringVar = "Blah-blah-blah";
            Expression<Func<SPListItem, bool>> expr = x => ((string)x["Count"]).Contains(stringVar);
            Assert.That(analyzer.IsValid(expr), Is.True);
        }

        [Test]
        public void test_THAT_contains_expression_with_custom_text_type_and_variable_IS_valid()
        {
            var analyzer = new ContainsAnalyzer(null, null);
            var stringVar = "Blah-blah-blah";
            Expression<Func<SPListItem, bool>> expr = x => ((DataTypes.Text)x["Count"]).Contains(stringVar);
            Assert.That(analyzer.IsValid(expr), Is.True);
        }

        [Test]
        public void test_THAT_contains_expression_with_custom_note_type_and_variable_IS_valid()
        {
            var analyzer = new ContainsAnalyzer(null, null);
            var stringVar = "Blah-blah-blah";
            Expression<Func<SPListItem, bool>> expr = x => ((DataTypes.Note)x["Count"]).Contains(stringVar);
            Assert.That(analyzer.IsValid(expr), Is.True);
        }

        [Test]
        public void test_THAT_contains_expression_IS_determined_properly()
        {
            // arrange
            Expression<Func<SPListItem, bool>> expr = x => ((string)x["Count"]).Contains("foo");
            var operandBuilder = MockRepository.GenerateStub<IOperandBuilder>();
            operandBuilder.Stub(b => b.CreateFieldRefOperand(((MethodCallExpression)expr.Body).Object, null)).Return(null);
            operandBuilder.Stub(b => b.CreateValueOperandForNativeSyntax(((MethodCallExpression)expr.Body).Arguments[0])).Return(null);
            var analyzer = new ContainsAnalyzer(null, operandBuilder);

            // act
            var operation = analyzer.GetOperation(expr);

            //assert
            Assert.That(operation, Is.InstanceOf<ContainsOperation>());
        }

        [Test]
        public void test_THAT_contains_expression_with_string_type_IS_determined_Properly()
        {
            // arrange
            Expression<Func<SPListItem, bool>> expr = x => ((string)x["Count"]).Contains("foo");
            var operandBuilder = MockRepository.GenerateStub<IOperandBuilder>();
            operandBuilder.Stub(b => b.CreateFieldRefOperand(((MethodCallExpression)expr.Body).Object, null)).Return(null);
            operandBuilder.Stub(b => b.CreateValueOperandForNativeSyntax(((MethodCallExpression)expr.Body).Arguments[0])).Return(null);
            var analyzer = new ContainsAnalyzer(null, operandBuilder);

            // act
            var operation = analyzer.GetOperation(expr);

            //assert
            Assert.That(operation, Is.InstanceOf<ContainsOperation>());
        }

        [Test]
        public void test_THAT_contains_expression_with_custom_note_type_IS_determined_properly()
        {
            // arrange
            Expression<Func<SPListItem, bool>> expr = x => ((DataTypes.Note)x["Count"]).Contains("foo");
            var operandBuilder = MockRepository.GenerateStub<IOperandBuilder>();
            operandBuilder.Stub(b => b.CreateFieldRefOperand(((MethodCallExpression)expr.Body).Object, null)).Return(null);
            operandBuilder.Stub(b => b.CreateValueOperandForNativeSyntax(((MethodCallExpression)expr.Body).Arguments[0])).Return(null);
            var analyzer = new ContainsAnalyzer(null, operandBuilder);

            // act
            var operation = analyzer.GetOperation(expr);

            //assert
            Assert.That(operation, Is.InstanceOf<ContainsOperation>());
        }
    }
}

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 Microsoft Public License (Ms-PL)


Written By
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions