Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(.net): occasional incorrect param type cast #568

Merged
merged 6 commits into from
Jul 1, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions packages/jsii-calc/lib/compliance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1726,3 +1726,18 @@ export enum SingletonIntEnum {
/** Elite! */
SINGLETON_INT = 1337
}

/**
* Verifies proper type handling through dynamic overrides.
*/
export class DataRenderer {
constructor() { }

public render(data: MyFirstStruct = { anumber: 42, astring: 'bazinga!' }): string {
return this.renderMap(data);
}

public renderMap(map: { [key: string]: any }): string {
return JSON.stringify(map, null, 2);
}
}
75 changes: 74 additions & 1 deletion packages/jsii-calc/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -2082,6 +2082,79 @@
],
"name": "ConsumersOfThisCrazyTypeSystem"
},
"jsii-calc.DataRenderer": {
"assembly": "jsii-calc",
"docs": {
"stability": "experimental",
"summary": "Verifies proper type handling through dynamic overrides."
},
"fqn": "jsii-calc.DataRenderer",
"initializer": {
"docs": {
"stability": "experimental"
}
},
"kind": "class",
"locationInModule": {
"filename": "lib/compliance.ts",
"line": 1733
},
"methods": [
{
"docs": {
"stability": "experimental"
},
"locationInModule": {
"filename": "lib/compliance.ts",
"line": 1736
},
"name": "render",
"parameters": [
{
"name": "data",
"optional": true,
"type": {
"fqn": "@scope/jsii-calc-lib.MyFirstStruct"
}
}
],
"returns": {
"type": {
"primitive": "string"
}
}
},
{
"docs": {
"stability": "experimental"
},
"locationInModule": {
"filename": "lib/compliance.ts",
"line": 1740
},
"name": "renderMap",
"parameters": [
{
"name": "map",
"type": {
"collection": {
"elementtype": {
"primitive": "any"
},
"kind": "map"
}
}
}
],
"returns": {
"type": {
"primitive": "string"
}
}
}
],
"name": "DataRenderer"
},
"jsii-calc.DefaultedConstructorArgument": {
"assembly": "jsii-calc",
"docs": {
Expand Down Expand Up @@ -8778,5 +8851,5 @@
}
},
"version": "0.13.2",
"fingerprint": "IzBpmwowWT7JOt7LEK9v3wIGmNWcpmqf9O1C927cs8o="
"fingerprint": "iCTmGcYc3DTgEt3Y8PBPaiJNOI7O9tRRGI49RI6rAwk="
}
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,22 @@ public void CorrectlyReturnsFromVoidCallback()
Assert.True(voidCallback.MethodWasCalled);
}

[Fact(DisplayName = Prefix + nameof(CallbacksCorrectlyDeserializeArguments))]
RomainMuller marked this conversation as resolved.
Show resolved Hide resolved
public void CallbacksCorrectlyDeserializeArguments()
{
var obj = new DataRendererSubclass();
Assert.Equal("{\n \"anumber\": 42,\n \"astring\": \"bazinga!\"\n}", obj.Render(null));
}

class DataRendererSubclass : DataRenderer
{
[JsiiMethod("renderMap", returnsJson: "{\"type\":{\"primitive\":\"string\"}}", parametersJson: "[{\"name\":\"map\",\"type\":{\"collection\":{\"kind\":\"map\",\"elementtype\":{\"primitive\":\"any\"}}}}]", isOverride: true)]
public override string RenderMap(IDictionary<string, object> map)
{
return base.RenderMap(map);
}
}

class VoidCallbackImpl : VoidCallback
{
protected override void OverrideMe()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

RomainMuller marked this conversation as resolved.
Show resolved Hide resolved
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Amazon.JSII.Runtime", "Amazon.JSII.Runtime.csproj", "{A31525BC-0422-446E-B7DE-92769D96302B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A31525BC-0422-446E-B7DE-92769D96302B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A31525BC-0422-446E-B7DE-92769D96302B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A31525BC-0422-446E-B7DE-92769D96302B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A31525BC-0422-446E-B7DE-92769D96302B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using Amazon.JSII.Runtime.Services.Converters;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;

Expand Down Expand Up @@ -136,6 +137,17 @@ private static object FromKernel(object obj, IReferenceMap referenceMap)
{
return referenceMap.GetOrCreateNativeReference(new ByRefValue(prop.Value.Value<String>()));
}

var dict = ((JObject)obj).ToObject<Dictionary<string, object>>();
RomainMuller marked this conversation as resolved.
Show resolved Hide resolved
foreach (var key in dict.Keys)
{
var value = dict[key];
if (value != null && value.GetType() == typeof(JObject))
{
dict[key] = FromKernel(value, referenceMap);
}
}
return dict;
}
return obj;
}
Expand All @@ -145,7 +157,7 @@ internal class CallbackResult : OptionalValue
{
public CallbackResult(IOptionalValue optionalValue, object value)
: this(optionalValue?.Type, optionalValue?.IsOptional ?? false, value) {}

private CallbackResult(TypeReference type, bool isOptional, object value): base(type, isOptional)
{
Value = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2082,6 +2082,79 @@
],
"name": "ConsumersOfThisCrazyTypeSystem"
},
"jsii-calc.DataRenderer": {
"assembly": "jsii-calc",
"docs": {
"stability": "experimental",
"summary": "Verifies proper type handling through dynamic overrides."
},
"fqn": "jsii-calc.DataRenderer",
"initializer": {
"docs": {
"stability": "experimental"
}
},
"kind": "class",
"locationInModule": {
"filename": "lib/compliance.ts",
"line": 1733
},
"methods": [
{
"docs": {
"stability": "experimental"
},
"locationInModule": {
"filename": "lib/compliance.ts",
"line": 1736
},
"name": "render",
"parameters": [
{
"name": "data",
"optional": true,
"type": {
"fqn": "@scope/jsii-calc-lib.MyFirstStruct"
}
}
],
"returns": {
"type": {
"primitive": "string"
}
}
},
{
"docs": {
"stability": "experimental"
},
"locationInModule": {
"filename": "lib/compliance.ts",
"line": 1740
},
"name": "renderMap",
"parameters": [
{
"name": "map",
"type": {
"collection": {
"elementtype": {
"primitive": "any"
},
"kind": "map"
}
}
}
],
"returns": {
"type": {
"primitive": "string"
}
}
}
],
"name": "DataRenderer"
},
"jsii-calc.DefaultedConstructorArgument": {
"assembly": "jsii-calc",
"docs": {
Expand Down Expand Up @@ -8778,5 +8851,5 @@
}
},
"version": "0.13.2",
"fingerprint": "IzBpmwowWT7JOt7LEK9v3wIGmNWcpmqf9O1C927cs8o="
"fingerprint": "iCTmGcYc3DTgEt3Y8PBPaiJNOI7O9tRRGI49RI6rAwk="
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
using Amazon.JSII.Runtime.Deputy;
using Amazon.JSII.Tests.CalculatorNamespace.LibNamespace;
using System.Collections.Generic;

namespace Amazon.JSII.Tests.CalculatorNamespace
{
/// <summary>Verifies proper type handling through dynamic overrides.</summary>
/// <remarks>stability: Experimental</remarks>
[JsiiClass(nativeType: typeof(DataRenderer), fullyQualifiedName: "jsii-calc.DataRenderer")]
public class DataRenderer : DeputyBase
{
/// <remarks>stability: Experimental</remarks>
public DataRenderer(): base(new DeputyProps(new object[]{}))
{
}

protected DataRenderer(ByRefValue reference): base(reference)
{
}

protected DataRenderer(DeputyProps props): base(props)
{
}

/// <remarks>stability: Experimental</remarks>
[JsiiMethod(name: "render", returnsJson: "{\"type\":{\"primitive\":\"string\"}}", parametersJson: "[{\"name\":\"data\",\"type\":{\"fqn\":\"@scope/jsii-calc-lib.MyFirstStruct\"},\"optional\":true}]")]
public virtual string Render(IMyFirstStruct data)
{
return InvokeInstanceMethod<string>(new object[]{data});
}

/// <remarks>stability: Experimental</remarks>
[JsiiMethod(name: "renderMap", returnsJson: "{\"type\":{\"primitive\":\"string\"}}", parametersJson: "[{\"name\":\"map\",\"type\":{\"collection\":{\"kind\":\"map\",\"elementtype\":{\"primitive\":\"any\"}}}}]")]
public virtual string RenderMap(IDictionary<string, object> map)
{
return InvokeInstanceMethod<string>(new object[]{map});
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ protected Class<?> resolveClass(final String fqn) throws ClassNotFoundException
case "jsii-calc.ConstructorPassesThisOut": return software.amazon.jsii.tests.calculator.ConstructorPassesThisOut.class;
case "jsii-calc.Constructors": return software.amazon.jsii.tests.calculator.Constructors.class;
case "jsii-calc.ConsumersOfThisCrazyTypeSystem": return software.amazon.jsii.tests.calculator.ConsumersOfThisCrazyTypeSystem.class;
case "jsii-calc.DataRenderer": return software.amazon.jsii.tests.calculator.DataRenderer.class;
case "jsii-calc.DefaultedConstructorArgument": return software.amazon.jsii.tests.calculator.DefaultedConstructorArgument.class;
case "jsii-calc.DeprecatedClass": return software.amazon.jsii.tests.calculator.DeprecatedClass.class;
case "jsii-calc.DeprecatedEnum": return software.amazon.jsii.tests.calculator.DeprecatedEnum.class;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
package software.amazon.jsii.tests.calculator;

/**
* Verifies proper type handling through dynamic overrides.
*
* EXPERIMENTAL
*/
@javax.annotation.Generated(value = "jsii-pacmak")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Jsii(module = software.amazon.jsii.tests.calculator.$Module.class, fqn = "jsii-calc.DataRenderer")
public class DataRenderer extends software.amazon.jsii.JsiiObject {
protected DataRenderer(final software.amazon.jsii.JsiiObject.InitializationMode mode) {
super(mode);
}
/**
* EXPERIMENTAL
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public DataRenderer() {
super(software.amazon.jsii.JsiiObject.InitializationMode.Jsii);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this);
}

/**
* EXPERIMENTAL
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public java.lang.String render(@javax.annotation.Nullable final software.amazon.jsii.tests.calculator.lib.MyFirstStruct data) {
return this.jsiiCall("render", java.lang.String.class, new Object[] { data });
}

/**
* EXPERIMENTAL
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public java.lang.String render() {
return this.jsiiCall("render", java.lang.String.class);
}

/**
* EXPERIMENTAL
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public java.lang.String renderMap(final java.util.Map<java.lang.String, java.lang.Object> map) {
return this.jsiiCall("renderMap", java.lang.String.class, new Object[] { java.util.Objects.requireNonNull(map, "map is required") });
}
}
Loading