How to use Create method of Telerik.JustMock.Core.MatcherTree.ReferenceMatcher class

Best JustMockLite code snippet using Telerik.JustMock.Core.MatcherTree.ReferenceMatcher.Create

CallPatternCreator.cs

Source:CallPatternCreator.cs Github

copy

Full Screen

...108 method = property.GetGetMethod(true);109 args = index.Arguments.ToArray();110 }111 else throw new MockException("The expression does not represent a method call, property access, new expression or a delegate invocation.");112 // Create the matcher for the instance part of the call pattern.113 // If the base of the target expression is a new expression (new T()),114 // or null (e.g. (null as T) or ((T) null)), then use AnyMatcher for the instance part,115 // otherwise evaluate the instance expression and use a value matcher with the evaluated result.116 var rootTarget = expr;117 Expression prevToRoot = null;118 while (true)119 {120 var memberExpr = rootTarget as MemberExpression;121 if (memberExpr != null && memberExpr.Expression != null && memberExpr.Member is PropertyInfo)122 {123 prevToRoot = rootTarget;124 rootTarget = memberExpr.Expression;125 continue;126 }127 var callExpr = rootTarget as MethodCallExpression;128 if (callExpr != null && callExpr.Object != null)129 {130 prevToRoot = rootTarget;131 rootTarget = callExpr.Object;132 continue;133 }134 if (rootTarget != null && (rootTarget.NodeType == ExpressionType.Convert || rootTarget.NodeType == ExpressionType.TypeAs))135 {136 rootTarget = ((UnaryExpression)rootTarget).Operand;137 continue;138 }139 if (rootTarget is InvocationExpression)140 {141 prevToRoot = rootTarget;142 rootTarget = ((InvocationExpression)rootTarget).Expression;143 continue;144 }145 if (rootTarget is BinaryExpression)146 {147 prevToRoot = rootTarget;148 rootTarget = ((BinaryExpression)rootTarget).Left;149 continue;150 }151 if (rootTarget is IndexExpression)152 {153 prevToRoot = rootTarget;154 rootTarget = ((IndexExpression)rootTarget).Object;155 continue;156 }157 break;158 }159 object targetMockObject = null;160 Type targetMockType = null;161 bool isStatic = false;162 var rootMatcher = MocksRepository.TryCreateMatcherFromArgMember(rootTarget);163 if (rootMatcher != null)164 {165 callPattern.InstanceMatcher = rootMatcher;166 }167 else if (rootTarget is MemberExpression)168 {169 var memberExpr = (MemberExpression)rootTarget;170 targetMockObject = memberExpr.Member is FieldInfo ? memberExpr.EvaluateExpression()171 : memberExpr.Expression != null ? memberExpr.Expression.EvaluateExpression()172 : null;173 targetMockType = memberExpr.Member is FieldInfo ? memberExpr.Type : memberExpr.Member.DeclaringType;174 var asPropertyInfo = memberExpr.Member as PropertyInfo;175 isStatic = asPropertyInfo != null176 ? (asPropertyInfo.GetGetMethod(true) ?? asPropertyInfo.GetSetMethod(true)).IsStatic177 : false;178 }179 else if (rootTarget is MethodCallExpression)180 {181 var methodCallExpr = (MethodCallExpression)rootTarget;182 targetMockObject = methodCallExpr.Object != null ? methodCallExpr.Object.EvaluateExpression() : null;183 targetMockType = methodCallExpr.Method.DeclaringType;184 isStatic = methodCallExpr.Method.IsStatic;185 }186 else if (rootTarget is NewExpression)187 {188 callPattern.InstanceMatcher = new AnyMatcher();189 }190 else if (rootTarget is ConstantExpression)191 {192 var constant = (ConstantExpression)rootTarget;193 if (constant.Value == null)194 callPattern.InstanceMatcher = new AnyMatcher();195 else196 {197 if (constant.Type.IsCompilerGenerated() && prevToRoot != null && prevToRoot.Type != typeof(void))198 {199 targetMockObject = prevToRoot.EvaluateExpression();200 targetMockType = prevToRoot.Type;201 }202 else203 {204 targetMockObject = constant.Value;205 targetMockType = constant.Type;206 }207 }208 }209 if (targetMockObject != null)210 targetMockType = targetMockObject.GetType();211 if (callPattern.InstanceMatcher != null && prevToRoot != expr && prevToRoot != null)212 {213 throw new MockException("Using a matcher for the root member together with recursive mocking is not supported. Arrange the property or method of the root member in a separate statement.");214 }215 if (callPattern.InstanceMatcher == null)216 {217 // TODO: implicit creation of mock mixins shouldn't explicitly refer to behaviors, but218 // should get them from some configuration made outside the Core.219 Debug.Assert(targetMockObject != null || targetMockType != null);220 MockingUtil.UnwrapDelegateTarget(ref targetMockObject);221 var mixin = MocksRepository.GetMockMixin(targetMockObject, targetMockType);222 if (mixin == null)223 {224 if (isStatic)225 {226 MockCreationSettings settings = MockCreationSettings.GetSettings(Behavior.CallOriginal);227 repository.InterceptStatics(targetMockType, settings, false);228 }229 else if (targetMockObject != null)230 {231 MockCreationSettings settings = MockCreationSettings.GetSettings(Behavior.CallOriginal);232 repository.CreateExternalMockMixin(targetMockType, targetMockObject, settings);233 }234 }235 var targetValue = target != null ? target.EvaluateExpression() : null;236 var delgMethod = MockingUtil.UnwrapDelegateTarget(ref targetValue);237 if (delgMethod != null)238 {239 method = delgMethod.GetInheritanceChain().First(m => !m.DeclaringType.IsProxy());240 }241 callPattern.InstanceMatcher = new ReferenceMatcher(targetValue);242 }243 // now we have the method part of the call pattern244 Debug.Assert(method != null);245 callPattern.SetMethod(method, checkCompatibility: true);246 //Finally, construct the arguments part of the call pattern.247 using (repository.StartArrangeArgMatching())248 {249 bool hasParams = false;250 bool hasSingleValueInParams = false;251 if (args != null && args.Length > 0)252 {253 var lastParameter = method.GetParameters().Last();254 if (Attribute.IsDefined(lastParameter, typeof(ParamArrayAttribute)) && args.Last() is NewArrayExpression)255 {256 hasParams = true;257 var paramsArg = (NewArrayExpression)args.Last();258 args = args.Take(args.Length - 1).Concat(paramsArg.Expressions).ToArray();259 if (paramsArg.Expressions.Count == 1)260 hasSingleValueInParams = true;261 }262 foreach (var argument in args)263 {264 callPattern.ArgumentMatchers.Add(MocksRepository.CreateMatcherForArgument(argument));265 }266 if (hasParams)267 {268 int paramsCount = method.GetParameters().Count();269 if (hasSingleValueInParams)270 {271 IMatcher matcher = callPattern.ArgumentMatchers[paramsCount - 1];272 ITypedMatcher typeMatcher = matcher as ITypedMatcher;273 if (typeMatcher != null && typeMatcher.Type != method.GetParameters().Last().ParameterType)274 {275 callPattern.ArgumentMatchers[paramsCount - 1] = new ParamsMatcher(new IMatcher[] { matcher });276 }277 }278 else279 {280 IEnumerable<IMatcher> paramMatchers = callPattern.ArgumentMatchers.Skip(paramsCount - 1).Take(callPattern.ArgumentMatchers.Count - paramsCount + 1);281 callPattern.ArgumentMatchers = callPattern.ArgumentMatchers.Take(paramsCount - 1).ToList();282 callPattern.ArgumentMatchers.Add(new ParamsMatcher(paramMatchers.ToArray()));283 }284 }285 }286 }287 MethodBase methodFromCallPattern = repository.GetMethodFromCallPattern(callPattern);288 callPattern.AdjustForExtensionMethod();289 callPattern.SetMethod(methodFromCallPattern, checkCompatibility: false);290 return callPattern;291 }292 internal static CallPattern FromMethodBase(MocksRepository repository, object instance, MethodBase method, object[] arguments)293 {294 var callPattern = new CallPattern295 {296 InstanceMatcher =297 method.IsStatic ? new ReferenceMatcher(null)298 : instance == null ? (IMatcher)new AnyMatcher()299 : new ReferenceMatcher(instance),300 };301 callPattern.SetMethod(method, checkCompatibility: true);302 using (repository != null ? repository.StartArrangeArgMatching() : null)303 {304 var parameters = method.GetParameters();305 if (arguments == null || arguments.Length == 0)306 {307 callPattern.ArgumentMatchers.AddRange(method.GetParameters().Select(p => (IMatcher)new TypeMatcher(p.ParameterType)));308 }309 else310 {311 if (arguments.Length != method.GetParameters().Length)312 {313 throw new MockException("Argument count mismatch.");314 }315 callPattern.ArgumentMatchers.AddRange(arguments.Select(arg => MocksRepository.CreateMatcherForArgument(arg)));316 }317 }318 callPattern.AdjustForExtensionMethod();319 return callPattern;320 }321 internal static CallPattern FromMethodBase(object instance, MethodBase method, object[] arguments)322 {323 return FromMethodBase(null, instance, method, arguments);324 }325 internal static CallPattern FromAction(MocksRepository repository, Action memberAction, bool dispatchToMethodMocks = false)326 {327 var callPattern = new CallPattern();328 Invocation lastInvocation = null;329 var recorder = new DelegatingRecorder();...

Full Screen

Full Screen

CallPattern.cs

Source:CallPattern.cs Github

copy

Full Screen

...124 newCallPattern.ArgumentMatchers.Add(this.ArgumentMatchers[i]);125 }126 return newCallPattern;127 }128 internal static CallPattern CreateUniversalCallPattern(MethodBase method)129 {130 var result = new CallPattern();131 result.SetMethod(method, checkCompatibility: true);132 result.InstanceMatcher = new AnyMatcher();133 result.ArgumentMatchers.AddRange(Enumerable.Repeat((IMatcher)new AnyMatcher(), method.GetParameters().Length));134 result.AdjustForExtensionMethod();135 return result;136 }137 internal void AdjustForExtensionMethod()138 {139 if (Method.IsExtensionMethod())140 {141 var thisMatcher = ArgumentMatchers[0];142 var valueMatcher = thisMatcher as IValueMatcher;...

Full Screen

Full Screen

ReferenceMatcher.cs

Source:ReferenceMatcher.cs Github

copy

Full Screen

...59 get { return reference != null && reference.GetType().IsValueType; }60 }61 public override Expression ToExpression(Type argumentType)62 {63 return Expression.Call(null, typeof(ReferenceMatcher).GetMethod("Create"),64 Expression.Constant(this.Value));65 }66 [ArgMatcher(Matcher = typeof(ReferenceMatcher))]67 public static object Create(object value)68 {69 throw new NotSupportedException();70 }71 }72}...

Full Screen

Full Screen

Create

Using AI Code Generation

copy

Full Screen

1var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();2var result = instance.Create();3var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();4var result = instance.Create();5var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();6var result = instance.Create();7var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();8var result = instance.Create();9var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();10var result = instance.Create();11var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();12var result = instance.Create();13var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();14var result = instance.Create();15var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();16var result = instance.Create();17var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();18var result = instance.Create();19var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();20var result = instance.Create();21var instance = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();22var result = instance.Create();

Full Screen

Full Screen

Create

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using Telerik.JustMock.Core.MatcherTree;6{7 {8 public void Test()9 {10 var mock = Mock.Create<IList<int>>();11 Mock.Arrange(() => mock[Arg.Create<int>(x => x > 5)]).Returns(10);12 }13 }14}15using System;16using System.Collections.Generic;17using System.Linq;18using System.Text;19using Telerik.JustMock.Core.MatcherTree;20{21 {22 public void Test()23 {24 var mock = Mock.Create<IList<int>>();25 Mock.Arrange(() => mock[Arg.Create<int>(x => x > 5)]).Returns(10);26 }27 }28}29using System;30using System.Collections.Generic;31using System.Linq;32using System.Text;33using Telerik.JustMock.Core.MatcherTree;34{35 {36 public void Test()37 {38 var mock = Mock.Create<IList<int>>();39 Mock.Arrange(() => mock[Arg.Create<int>(x => x > 5)]).Returns(10);40 }41 }42}43using System;44using System.Collections.Generic;45using System.Linq;46using System.Text;47using Telerik.JustMock.Core.MatcherTree;48{49 {50 public void Test()51 {52 var mock = Mock.Create<IList<int>>();53 Mock.Arrange(() => mock[Arg.Create<int>(x => x > 5)]).Returns(10);54 }55 }56}57using System;58using System.Collections.Generic;59using System.Linq;60using System.Text;61using Telerik.JustMock.Core.MatcherTree;62{63 {64 public void Test()65 {

Full Screen

Full Screen

Create

Using AI Code Generation

copy

Full Screen

1using Telerik.JustMock.Core.MatcherTree;2using System;3using System.Collections.Generic;4using System.Linq;5using System.Text;6using System.Threading.Tasks;7{8 {9 public void Test()10 {11 var mock = Mock.Create<ITest>();12 var matcher = new ReferenceMatcher();13 matcher.Create("Test", "Test");14 Mock.Arrange(() => mock.Test(Arg.Matches(matcher))).Returns(1);15 }16 }17 {18 int Test(string test);19 }20}

Full Screen

Full Screen

Create

Using AI Code Generation

copy

Full Screen

1using Telerik.JustMock.Core.MatcherTree;2{3 public static void Main()4 {5 var matcher = new ReferenceMatcher();6 matcher.Create("test");7 }8}9using Telerik.JustMock.Core.MatcherTree;10{11 public static void Main()12 {13 var matcher = new ReferenceMatcher();14 matcher.Create("test");15 }16}17using Telerik.JustMock.Core.MatcherTree;18{19 public static void Main()20 {21 var matcher = new ReferenceMatcher();22 matcher.Create("test");23 }24}25using Telerik.JustMock.Core.MatcherTree;26{27 public static void Main()28 {29 var matcher = new ReferenceMatcher();30 matcher.Create("test");31 }32}33using Telerik.JustMock.Core.MatcherTree;34{35 public static void Main()36 {37 var matcher = new ReferenceMatcher();38 matcher.Create("test");39 }40}41using Telerik.JustMock.Core.MatcherTree;42{43 public static void Main()44 {45 var matcher = new ReferenceMatcher();46 matcher.Create("test");47 }48}49using Telerik.JustMock.Core.MatcherTree;50{51 public static void Main()52 {53 var matcher = new ReferenceMatcher();54 matcher.Create("test");55 }56}57using Telerik.JustMock.Core.MatcherTree;58{59 public static void Main()60 {61 var matcher = new ReferenceMatcher();62 matcher.Create("test");63 }64}

Full Screen

Full Screen

Create

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using Telerik.JustMock.Core.MatcherTree;4using Telerik.JustMock.Core;5{6 {7 public void Create()8 {9 var matcher = ReferenceMatcher.Create(new List<int> { 1, 2, 3 });10 }11 }12}

Full Screen

Full Screen

Create

Using AI Code Generation

copy

Full Screen

1var referenceMatcher = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();2var matcherTree = new Telerik.JustMock.Core.MatcherTree.MatcherTree();3var match = new Telerik.JustMock.Core.MatcherTree.Match();4var node = new Telerik.JustMock.Core.MatcherTree.Node();5var reference = new Telerik.JustMock.Core.MatcherTree.Reference();6var referenceMatcher1 = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();7var matcherTree1 = new Telerik.JustMock.Core.MatcherTree.MatcherTree();8var match1 = new Telerik.JustMock.Core.MatcherTree.Match();9var node1 = new Telerik.JustMock.Core.MatcherTree.Node();10var reference1 = new Telerik.JustMock.Core.MatcherTree.Reference();11var referenceMatcher2 = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();12var matcherTree2 = new Telerik.JustMock.Core.MatcherTree.MatcherTree();13var match2 = new Telerik.JustMock.Core.MatcherTree.Match();14var node2 = new Telerik.JustMock.Core.MatcherTree.Node();15var reference2 = new Telerik.JustMock.Core.MatcherTree.Reference();16var referenceMatcher3 = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();17var matcherTree3 = new Telerik.JustMock.Core.MatcherTree.MatcherTree();18var match3 = new Telerik.JustMock.Core.MatcherTree.Match();19var node3 = new Telerik.JustMock.Core.MatcherTree.Node();20var reference3 = new Telerik.JustMock.Core.MatcherTree.Reference();21var referenceMatcher4 = new Telerik.JustMock.Core.MatcherTree.ReferenceMatcher();22var matcherTree4 = new Telerik.JustMock.Core.MatcherTree.MatcherTree();23var match4 = new Telerik.JustMock.Core.MatcherTree.Match();24var node4 = new Telerik.JustMock.Core.MatcherTree.Node();

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run JustMockLite automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful