1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147 |
- using System;
- using System.Collections.Generic;
- using Jint.Native;
- using Jint.Native.Object;
- using Jint.Tests.Runtime.Converters;
- using Jint.Tests.Runtime.Domain;
- using Shapes;
- using Xunit;
- namespace Jint.Tests.Runtime
- {
- public class InteropTests : IDisposable
- {
- private readonly Engine _engine;
- public InteropTests()
- {
- _engine = new Engine(cfg => cfg.AllowClr(typeof(Shape).Assembly))
- .SetValue("log", new Action<object>(Console.WriteLine))
- .SetValue("assert", new Action<bool>(Assert.True))
- ;
- }
- void IDisposable.Dispose()
- {
- }
- private void RunTest(string source)
- {
- _engine.Execute(source);
- }
- [Fact]
- public void PrimitiveTypesCanBeSet()
- {
- _engine.SetValue("x", 10);
- _engine.SetValue("y", true);
- _engine.SetValue("z", "foo");
- RunTest(@"
- assert(x === 10);
- assert(y === true);
- assert(z === 'foo');
- ");
- }
- [Fact]
- public void DelegatesCanBeSet()
- {
- _engine.SetValue("square", new Func<double, double>(x => x * x));
- RunTest(@"
- assert(square(10) === 100);
- ");
- }
- [Fact]
- public void DelegateWithNullableParameterCanBePassedANull()
- {
- _engine.SetValue("isnull", new Func<double?, bool>(x => x == null));
- RunTest(@"
- assert(isnull(null) === true);
- ");
- }
- [Fact]
- public void DelegateWithObjectParameterCanBePassedANull()
- {
- _engine.SetValue("isnull", new Func<object, bool>(x => x == null));
- RunTest(@"
- assert(isnull(null) === true);
- ");
- }
- private delegate string callParams(params object[] values);
- private delegate string callArgumentAndParams(string firstParam, params object[] values);
- [Fact]
- public void DelegatesWithParamsParameterCanBeInvoked()
- {
- var a = new A();
- _engine.SetValue("callParams", new callParams(a.Call13));
- _engine.SetValue("callArgumentAndParams", new callArgumentAndParams(a.Call14));
- RunTest(@"
- assert(callParams('1','2','3') === '1,2,3');
- assert(callParams('1') === '1');
- assert(callParams() === '');
- assert(callArgumentAndParams('a','1','2','3') === 'a:1,2,3');
- assert(callArgumentAndParams('a','1') === 'a:1');
- assert(callArgumentAndParams('a') === 'a:');
- ");
- }
- [Fact]
- public void CanGetObjectProperties()
- {
- var p = new Person
- {
- Name = "Mickey Mouse"
- };
- _engine.SetValue("p", p);
- RunTest(@"
- assert(p.Name === 'Mickey Mouse');
- ");
- }
- [Fact]
- public void CanInvokeObjectMethods()
- {
- var p = new Person
- {
- Name = "Mickey Mouse"
- };
- _engine.SetValue("p", p);
- RunTest(@"
- assert(p.ToString() === 'Mickey Mouse');
- ");
- }
- [Fact]
- public void CanSetObjectProperties()
- {
- var p = new Person
- {
- Name = "Mickey Mouse"
- };
- _engine.SetValue("p", p);
- RunTest(@"
- p.Name = 'Donald Duck';
- assert(p.Name === 'Donald Duck');
- ");
- Assert.Equal("Donald Duck", p.Name);
- }
- [Fact]
- public void CanGetIndexUsingStringKey()
- {
- var dictionary = new Dictionary<string, Person>();
- dictionary.Add("person1", new Person { Name = "Mickey Mouse" });
- dictionary.Add("person2", new Person { Name = "Goofy" });
- _engine.SetValue("dictionary", dictionary);
- RunTest(@"
- assert(dictionary['person1'].Name === 'Mickey Mouse');
- assert(dictionary['person2'].Name === 'Goofy');
- ");
- }
- [Fact]
- public void CanSetIndexUsingStringKey()
- {
- var dictionary = new Dictionary<string, Person>();
- dictionary.Add("person1", new Person { Name = "Mickey Mouse" });
- dictionary.Add("person2", new Person { Name = "Goofy" });
- _engine.SetValue("dictionary", dictionary);
- RunTest(@"
- dictionary['person2'].Name = 'Donald Duck';
- assert(dictionary['person2'].Name === 'Donald Duck');
- ");
- Assert.Equal("Donald Duck", dictionary["person2"].Name);
- }
- [Fact]
- public void CanGetIndexUsingIntegerKey()
- {
- var dictionary = new Dictionary<int, string>();
- dictionary.Add(1, "Mickey Mouse");
- dictionary.Add(2, "Goofy");
- _engine.SetValue("dictionary", dictionary);
- RunTest(@"
- assert(dictionary[1] === 'Mickey Mouse');
- assert(dictionary[2] === 'Goofy');
- ");
- }
- [Fact]
- public void CanSetIndexUsingIntegerKey()
- {
- var dictionary = new Dictionary<int, string>();
- dictionary.Add(1, "Mickey Mouse");
- dictionary.Add(2, "Goofy");
- _engine.SetValue("dictionary", dictionary);
- RunTest(@"
- dictionary[2] = 'Donald Duck';
- assert(dictionary[2] === 'Donald Duck');
- ");
- Assert.Equal("Mickey Mouse", dictionary[1]);
- Assert.Equal("Donald Duck", dictionary[2]);
- }
- [Fact]
- public void CanUseIndexOnCollection()
- {
- var collection = new System.Collections.ObjectModel.Collection<string>();
- collection.Add("Mickey Mouse");
- collection.Add("Goofy");
- _engine.SetValue("dictionary", collection);
- RunTest(@"
- dictionary[1] = 'Donald Duck';
- assert(dictionary[1] === 'Donald Duck');
- ");
- Assert.Equal("Mickey Mouse", collection[0]);
- Assert.Equal("Donald Duck", collection[1]);
- }
- [Fact]
- public void CanUseIndexOnList()
- {
- var arrayList = new System.Collections.ArrayList(2);
- arrayList.Add("Mickey Mouse");
- arrayList.Add("Goofy");
- _engine.SetValue("dictionary", arrayList);
- RunTest(@"
- dictionary[1] = 'Donald Duck';
- assert(dictionary[1] === 'Donald Duck');
- ");
- Assert.Equal("Mickey Mouse", arrayList[0]);
- Assert.Equal("Donald Duck", arrayList[1]);
- }
- [Fact]
- public void CanAccessAnonymousObject()
- {
- var p = new
- {
- Name = "Mickey Mouse",
- };
- _engine.SetValue("p", p);
- RunTest(@"
- assert(p.Name === 'Mickey Mouse');
- ");
- }
- [Fact]
- public void CanAccessAnonymousObjectProperties()
- {
- var p = new
- {
- Address = new
- {
- City = "Mouseton"
- }
- };
- _engine.SetValue("p", p);
- RunTest(@"
- assert(p.Address.City === 'Mouseton');
- ");
- }
- [Fact]
- public void PocosCanReturnJsValueDirectly()
- {
- var o = new
- {
- x = new JsValue(1),
- y = new JsValue("string"),
- };
- _engine.SetValue("o", o);
- RunTest(@"
- assert(o.x === 1);
- assert(o.y === 'string');
- ");
- }
- [Fact]
- public void PocosCanReturnObjectInstanceDirectly()
- {
- var x = new ObjectInstance(_engine) { Extensible = true};
- x.Put("foo", new JsValue("bar"), false);
- var o = new
- {
- x
- };
- _engine.SetValue("o", o);
- RunTest(@"
- assert(o.x.foo === 'bar');
- ");
- }
- [Fact]
- public void DateTimeIsConvertedToDate()
- {
- var o = new
- {
- z = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)
- };
- _engine.SetValue("o", o);
- RunTest(@"
- assert(o.z.valueOf() === 0);
- ");
- }
- [Fact]
- public void DateTimeOffsetIsConvertedToDate()
- {
- var o = new
- {
- z = new DateTimeOffset(1970, 1, 1, 0, 0, 0, new TimeSpan())
- };
- _engine.SetValue("o", o);
- RunTest(@"
- assert(o.z.valueOf() === 0);
- ");
- }
- [Fact]
- public void EcmaValuesAreAutomaticallyConvertedWhenSetInPoco()
- {
- var p = new Person
- {
- Name = "foo",
- };
- _engine.SetValue("p", p);
- RunTest(@"
- assert(p.Name === 'foo');
- assert(p.Age === 0);
- p.Name = 'bar';
- p.Age = 10;
- ");
- Assert.Equal("bar", p.Name);
- Assert.Equal(10, p.Age);
- }
- [Fact]
- public void EcmaValuesAreAutomaticallyConvertedToBestMatchWhenSetInPoco()
- {
- var p = new Person
- {
- Name = "foo",
- };
- _engine.SetValue("p", p);
- RunTest(@"
- p.Name = 10;
- p.Age = '20';
- ");
- Assert.Equal("10", p.Name);
- Assert.Equal(20, p.Age);
- }
- [Fact]
- public void ShouldCallInstanceMethodWithoutArgument()
- {
- _engine.SetValue("a", new A());
- RunTest(@"
- assert(a.Call1() === 0);
- ");
- }
- [Fact]
- public void ShouldCallInstanceMethodOverloadArgument()
- {
- _engine.SetValue("a", new A());
- RunTest(@"
- assert(a.Call1(1) === 1);
- ");
- }
- [Fact]
- public void ShouldCallInstanceMethodWithString()
- {
- var p = new Person();
- _engine.SetValue("a", new A());
- _engine.SetValue("p", p);
- RunTest(@"
- p.Name = a.Call2('foo');
- assert(p.Name === 'foo');
- ");
- Assert.Equal("foo", p.Name);
- }
- [Fact]
- public void CanUseTrim()
- {
- var p = new Person { Name = "Mickey Mouse "};
- _engine.SetValue("p", p);
- RunTest(@"
- assert(p.Name === 'Mickey Mouse ');
- p.Name = p.Name.trim();
- assert(p.Name === 'Mickey Mouse');
- ");
- Assert.Equal("Mickey Mouse", p.Name);
- }
- [Fact]
- public void CanUseMathFloor()
- {
- var p = new Person();
- _engine.SetValue("p", p);
- RunTest(@"
- p.Age = Math.floor(1.6);p
- assert(p.Age === 1);
- ");
- Assert.Equal(1, p.Age);
- }
- [Fact]
- public void CanUseDelegateAsFunction()
- {
- var even = new Func<int, bool>(x => x % 2 == 0);
- _engine.SetValue("even", even);
- RunTest(@"
- assert(even(2) === true);
- ");
- }
- [Fact]
- public void ShouldConvertArrayToArrayInstance()
- {
- var result = _engine
- .SetValue("values", new[] { 1, 2, 3, 4, 5, 6 })
- .Execute("values.filter(function(x){ return x % 2 == 0; })");
- var parts = result.GetCompletionValue().ToObject();
- Assert.True(parts.GetType().IsArray);
- Assert.Equal(3, ((object[])parts).Length);
- Assert.Equal(2d, ((object[])parts)[0]);
- Assert.Equal(4d, ((object[])parts)[1]);
- Assert.Equal(6d, ((object[])parts)[2]);
- }
- [Fact]
- public void ShouldConvertListsToArrayInstance()
- {
- var result = _engine
- .SetValue("values", new List<object> { 1, 2, 3, 4, 5, 6 })
- .Execute("new Array(values).filter(function(x){ return x % 2 == 0; })");
- var parts = result.GetCompletionValue().ToObject();
- Assert.True(parts.GetType().IsArray);
- Assert.Equal(3, ((object[])parts).Length);
- Assert.Equal(2d, ((object[])parts)[0]);
- Assert.Equal(4d, ((object[])parts)[1]);
- Assert.Equal(6d, ((object[])parts)[2]);
- }
- [Fact]
- public void ShouldConvertArrayInstanceToArray()
- {
- var result = _engine.Execute("'[email protected]'.split('@');");
- var parts = result.GetCompletionValue().ToObject();
-
- Assert.True(parts.GetType().IsArray);
- Assert.Equal(2, ((object[])parts).Length);
- Assert.Equal("foo", ((object[])parts)[0]);
- Assert.Equal("bar.com", ((object[])parts)[1]);
- }
- [Fact]
- public void ShouldConvertBooleanInstanceToBool()
- {
- var result = _engine.Execute("new Boolean(true)");
- var value = result.GetCompletionValue().ToObject();
- Assert.Equal(typeof(bool), value.GetType());
- Assert.Equal(true, value);
- }
- [Fact]
- public void ShouldConvertDateInstanceToDateTime()
- {
- var result = _engine.Execute("new Date(0)");
- var value = result.GetCompletionValue().ToObject();
- Assert.Equal(typeof(DateTime), value.GetType());
- Assert.Equal(new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc), value);
- }
- [Fact]
- public void ShouldConvertNumberInstanceToDouble()
- {
- var result = _engine.Execute("new Number(10)");
- var value = result.GetCompletionValue().ToObject();
- Assert.Equal(typeof(double), value.GetType());
- Assert.Equal(10d, value);
- }
- [Fact]
- public void ShouldConvertStringInstanceToString()
- {
- var result = _engine.Execute("new String('foo')");
- var value = result.GetCompletionValue().ToObject();
- Assert.Equal(typeof(string), value.GetType());
- Assert.Equal("foo", value);
- }
- [Fact]
- public void ShouldConvertObjectInstanceToExpando()
- {
- _engine.Execute("var o = {a: 1, b: 'foo'}");
- var result = _engine.GetValue("o");
- dynamic value = result.ToObject();
- Assert.Equal(1, value.a);
- Assert.Equal("foo", value.b);
- var dic = (IDictionary<string, object>)result.ToObject();
- Assert.Equal(1d, dic["a"]);
- Assert.Equal("foo", dic["b"]);
- }
- [Fact]
- public void ShouldNotTryToConvertCompatibleTypes()
- {
- _engine.SetValue("a", new A());
- RunTest(@"
- assert(a.Call3('foo') === 'foo');
- assert(a.Call3(1) === '1');
- ");
- }
- [Fact]
- public void ShouldNotTryToConvertDerivedTypes()
- {
- _engine.SetValue("a", new A());
- _engine.SetValue("p", new Person { Name = "Mickey" });
- RunTest(@"
- assert(a.Call4(p) === 'Mickey');
- ");
- }
- [Fact]
- public void ShouldExecuteFunctionCallBackAsDelegate()
- {
- _engine.SetValue("a", new A());
- RunTest(@"
- assert(a.Call5(function(a,b){ return a+b }) === '1foo');
- ");
- }
- [Fact]
- public void ShouldExecuteFunctionCallBackAsFuncAndThisCanBeAssigned()
- {
- _engine.SetValue("a", new A());
- RunTest(@"
- assert(a.Call6(function(a,b){ return this+a+b }) === 'bar1foo');
- ");
- }
- [Fact]
- public void ShouldExecuteFunctionCallBackAsPredicate()
- {
- _engine.SetValue("a", new A());
-
- // Func<>
- RunTest(@"
- assert(a.Call8(function(){ return 'foo'; }) === 'foo');
- ");
- }
- [Fact]
- public void ShouldExecuteFunctionWithParameterCallBackAsPredicate()
- {
- _engine.SetValue("a", new A());
- // Func<,>
- RunTest(@"
- assert(a.Call7('foo', function(a){ return a === 'foo'; }) === true);
- ");
- }
- [Fact]
- public void ShouldExecuteActionCallBackAsPredicate()
- {
- _engine.SetValue("a", new A());
- // Action
- RunTest(@"
- var value;
- a.Call9(function(){ value = 'foo'; });
- assert(value === 'foo');
- ");
- }
- [Fact]
- public void ShouldExecuteActionWithParameterCallBackAsPredicate()
- {
- _engine.SetValue("a", new A());
- // Action<>
- RunTest(@"
- var value;
- a.Call10('foo', function(b){ value = b; });
- assert(value === 'foo');
- ");
- }
- [Fact]
- public void ShouldExecuteActionWithMultipleParametersCallBackAsPredicate()
- {
- _engine.SetValue("a", new A());
- // Action<,>
- RunTest(@"
- var value;
- a.Call11('foo', 'bar', function(a,b){ value = a + b; });
- assert(value === 'foobar');
- ");
- }
- [Fact]
- public void ShouldExecuteFunc()
- {
- _engine.SetValue("a", new A());
- // Func<int, int>
- RunTest(@"
- var result = a.Call12(42, function(a){ return a + a; });
- assert(result === 84);
- ");
- }
- [Fact]
- public void ShouldExecuteActionCallbackOnEventChanged()
- {
- var collection = new System.Collections.ObjectModel.ObservableCollection<string>();
- Assert.True(collection.Count == 0);
- _engine.SetValue("collection", collection);
- RunTest(@"
- var eventAction;
- collection.add_CollectionChanged(function(sender, eventArgs) { eventAction = eventArgs.Action; } );
- collection.Add('test');
- ");
- var eventAction = _engine.GetValue("eventAction").AsNumber();
- Assert.True(eventAction == 0);
- Assert.True(collection.Count == 1);
- }
- [Fact]
- public void ShouldUseSystemIO()
- {
- RunTest(@"
- var filename = System.IO.Path.GetTempFileName();
- var sw = System.IO.File.CreateText(filename);
- sw.Write('Hello World');
- sw.Dispose();
-
- var content = System.IO.File.ReadAllText(filename);
- System.Console.WriteLine(content);
-
- assert(content === 'Hello World');
- ");
- }
- [Fact]
- public void ShouldImportNamespace()
- {
- RunTest(@"
- var Shapes = importNamespace('Shapes');
- var circle = new Shapes.Circle();
- assert(circle.Radius === 0);
- assert(circle.Perimeter() === 0);
- ");
- }
- [Fact]
- public void ShouldConstructWithParameters()
- {
- RunTest(@"
- var Shapes = importNamespace('Shapes');
- var circle = new Shapes.Circle(1);
- assert(circle.Radius === 1);
- assert(circle.Perimeter() === Math.PI);
- ");
- }
- [Fact]
- public void ShouldInvokeAFunctionByName()
- {
- RunTest(@"
- function add(x, y) { return x + y; }
- ");
- Assert.Equal(3, _engine.Invoke("add", 1, 2));
- }
- [Fact]
- public void ShouldNotInvokeNonFunctionValue()
- {
- RunTest(@"
- var x= 10;
- ");
- Assert.Throws<ArgumentException>(() => _engine.Invoke("x", 1, 2));
- }
- [Fact]
- public void CanGetField()
- {
- var o = new ClassWithField
- {
- Field = "Mickey Mouse"
- };
- _engine.SetValue("o", o);
- RunTest(@"
- assert(o.Field === 'Mickey Mouse');
- ");
- }
- [Fact]
- public void CanSetField()
- {
- var o = new ClassWithField();
- _engine.SetValue("o", o);
- RunTest(@"
- o.Field = 'Mickey Mouse';
- assert(o.Field === 'Mickey Mouse');
- ");
- Assert.Equal("Mickey Mouse", o.Field);
- }
- [Fact]
- public void CanGetStaticField()
- {
- RunTest(@"
- var domain = importNamespace('Jint.Tests.Runtime.Domain');
- var statics = domain.ClassWithStaticFields;
- assert(statics.Get == 'Get');
- ");
- }
- [Fact]
- public void CanSetStaticField()
- {
- RunTest(@"
- var domain = importNamespace('Jint.Tests.Runtime.Domain');
- var statics = domain.ClassWithStaticFields;
- statics.Set = 'hello';
- assert(statics.Set == 'hello');
- ");
- Assert.Equal(ClassWithStaticFields.Set, "hello");
- }
- [Fact]
- public void CanGetStaticAccessor()
- {
- RunTest(@"
- var domain = importNamespace('Jint.Tests.Runtime.Domain');
- var statics = domain.ClassWithStaticFields;
- assert(statics.Getter == 'Getter');
- ");
- }
- [Fact]
- public void CanSetStaticAccessor()
- {
- RunTest(@"
- var domain = importNamespace('Jint.Tests.Runtime.Domain');
- var statics = domain.ClassWithStaticFields;
- statics.Setter = 'hello';
- assert(statics.Setter == 'hello');
- ");
- Assert.Equal(ClassWithStaticFields.Setter, "hello");
- }
- [Fact]
- public void CantSetStaticReadonly()
- {
- RunTest(@"
- var domain = importNamespace('Jint.Tests.Runtime.Domain');
- var statics = domain.ClassWithStaticFields;
- statics.Readonly = 'hello';
- assert(statics.Readonly == 'Readonly');
- ");
- Assert.Equal(ClassWithStaticFields.Readonly, "Readonly");
- }
- [Fact]
- public void CanSetCustomConverters()
- {
- var engine1 = new Engine();
- engine1.SetValue("p", new { Test = true });
- engine1.Execute("var result = p.Test;");
- Assert.True((bool)engine1.GetValue("result").ToObject());
- var engine2 = new Engine(o => o.AddObjectConverter(new NegateBoolConverter()));
- engine2.SetValue("p", new { Test = true });
- engine2.Execute("var result = p.Test;");
- Assert.False((bool)engine2.GetValue("result").ToObject());
- }
- [Fact]
- public void CanUserIncrementOperator()
- {
- var p = new Person
- {
- Age = 1,
- };
- _engine.SetValue("p", p);
- RunTest(@"
- assert(++p.Age === 2);
- ");
- Assert.Equal(2, p.Age);
- }
- [Fact]
- public void CanOverwriteValues()
- {
- _engine.SetValue("x", 3);
- _engine.SetValue("x", 4);
- RunTest(@"
- assert(x === 4);
- ");
- }
- [Fact]
- public void ShouldCreateGenericType()
- {
- RunTest(@"
- var ListOfString = System.Collections.Generic.List(System.String);
- var list = new ListOfString();
- list.Add('foo');
- list.Add(1);
- assert(2 === list.Count);
- ");
- }
- [Fact]
- public void EnumComparesByName()
- {
- var o = new
- {
- r = Colors.Red,
- b = Colors.Blue,
- g = Colors.Green,
- b2 = Colors.Red
- };
- _engine.SetValue("o", o);
- _engine.SetValue("assertFalse", new Action<bool>(Assert.False));
- RunTest(@"
- var domain = importNamespace('Jint.Tests.Runtime.Domain');
- var colors = domain.Colors;
- assert(o.r === colors.Red);
- assert(o.g === colors.Green);
- assert(o.b === colors.Blue);
- assertFalse(o.b2 === colors.Blue);
- ");
- }
- [Fact]
- public void ShouldSetEnumProperty()
- {
- var s = new Circle
- {
- Color = Colors.Red,
- };
- _engine.SetValue("s", s);
- RunTest(@"
- var domain = importNamespace('Jint.Tests.Runtime.Domain');
- var colors = domain.Colors;
-
- s.Color = colors.Blue;
- assert(s.Color === colors.Blue);
- ");
- _engine.SetValue("s", s);
- RunTest(@"
- s.Color = colors.Blue | colors.Green;
- assert(s.Color === colors.Blue | colors.Green);
- ");
- Assert.Equal(Colors.Blue | Colors.Green, s.Color);
- }
- [Fact]
- public void EnumIsConvertedToNumber()
- {
- var o = new
- {
- r = Colors.Red,
- b = Colors.Blue,
- g = Colors.Green
- };
- _engine.SetValue("o", o);
- RunTest(@"
- assert(o.r === 0);
- assert(o.g === 1);
- assert(o.b === 10);
- ");
- }
- [Fact]
- public void ShouldConvertToEnum()
- {
- var s = new Circle
- {
- Color = Colors.Red,
- };
- _engine.SetValue("s", s);
- RunTest(@"
- assert(s.Color === 0);
- s.Color = 10;
- assert(s.Color === 10);
- ");
- _engine.SetValue("s", s);
- RunTest(@"
- s.Color = 11;
- assert(s.Color === 11);
- ");
- Assert.Equal(Colors.Blue | Colors.Green, s.Color);
- }
- [Fact]
- public void ShouldUseExplicitPropertyGetter()
- {
- _engine.SetValue("c", new Company("ACME"));
- RunTest(@"
- assert(c.Name === 'ACME');
- ");
- }
- [Fact]
- public void ShouldUseExplicitIndexerPropertyGetter()
- {
- var company = new Company("ACME");
- ((ICompany)company)["Foo"] = "Bar";
- _engine.SetValue("c", company);
- RunTest(@"
- assert(c.Foo === 'Bar');
- ");
- }
- [Fact]
- public void ShouldUseExplicitPropertySetter()
- {
- _engine.SetValue("c", new Company("ACME"));
- RunTest(@"
- c.Name = 'Foo';
- assert(c.Name === 'Foo');
- ");
- }
- [Fact]
- public void ShouldUseExplicitIndexerPropertySetter()
- {
- var company = new Company("ACME");
- ((ICompany)company)["Foo"] = "Bar";
- _engine.SetValue("c", company);
- RunTest(@"
- c.Foo = 'Baz';
- assert(c.Foo === 'Baz');
- ");
- }
- [Fact]
- public void ShouldUseExplicitMethod()
- {
- _engine.SetValue("c", new Company("ACME"));
- RunTest(@"
- assert(0 === c.CompareTo(c));
- ");
- }
- [Fact]
- public void ShouldCallInstanceMethodWithParams()
- {
- _engine.SetValue("a", new A());
- RunTest(@"
- assert(a.Call13('1','2','3') === '1,2,3');
- assert(a.Call13('1') === '1');
- assert(a.Call13(1) === '1');
- assert(a.Call13() === '');
- assert(a.Call14('a','1','2','3') === 'a:1,2,3');
- assert(a.Call14('a','1') === 'a:1');
- assert(a.Call14('a') === 'a:');
- function call13wrapper(){ return a.Call13.apply(a, Array.prototype.slice.call(arguments)); }
- assert(call13wrapper('1','2','3') === '1,2,3');
- assert(a.Call13('1','2','3') === a.Call13(['1','2','3']));
- ");
- }
- [Fact]
- public void NullValueAsArgumentShouldWork()
- {
- _engine.SetValue("a", new A());
- RunTest(@"
- var x = a.Call2(null);
- assert(x === null);
- ");
- }
- [Fact]
- public void ShouldSetPropertyToNull()
- {
- var p = new Person { Name = "Mickey" };
- _engine.SetValue("p", p);
- RunTest(@"
- assert(p.Name != null);
- p.Name = null;
- assert(p.Name == null);
- ");
- Assert.True(p.Name == null);
- }
- [Fact]
- public void ShouldCallMethodWithNull()
- {
- _engine.SetValue("a", new A());
- RunTest(@"
- a.Call15(null);
- var result = a.Call2(null);
- assert(result == null);
- ");
- }
- [Fact]
- public void ShouldReturnUndefinedProperty()
- {
- _engine.SetValue("uo", new { foo = "bar" });
- _engine.SetValue("ud", new Dictionary<string, object>() { {"foo", "bar"} });
- _engine.SetValue("ul", new List<string>() { "foo", "bar" });
- RunTest(@"
- assert(!uo.undefinedProperty);
- assert(!ul[5]);
- assert(!ud.undefinedProperty);
- ");
- }
- [Fact]
- public void ShouldAutomaticallyConvertArraysToFindBestInteropResulution()
- {
- _engine.SetValue("a", new ArrayConverterTestClass());
- _engine.SetValue("item1", new ArrayConverterItem(1));
- _engine.SetValue("item2", new ArrayConverterItem(2));
- RunTest(@"
- assert(a.MethodAcceptsArrayOfInt([false, '1', 2]) === a.MethodAcceptsArrayOfInt([0, 1, 2]));
- assert(a.MethodAcceptsArrayOfStrings(['1', 2]) === a.MethodAcceptsArrayOfStrings([1, 2]));
- assert(a.MethodAcceptsArrayOfBool(['1', 0]) === a.MethodAcceptsArrayOfBool([true, false]));
- assert(a.MethodAcceptsArrayOfStrings([item1, item2]) === a.MethodAcceptsArrayOfStrings(['1', '2']));
- assert(a.MethodAcceptsArrayOfInt([item1, item2]) === a.MethodAcceptsArrayOfInt([1, 2]));
- ");
- }
- }
- }
|