* Add a .gitattributes file specifying LF-style line endings. This is similar to [Rust's .gitattributes file] though simplified. Most of our source and documentation files already used LF-style line endings, including *.cs files, so this makes things more consistent. [Rust's .gitattributes file]: https://github.com/rust-lang/rust/blob/master/.gitattributes * Remove UTF-8 BOMs in *.cs files. Most of our *.cs files don't have UTF-8 BOMs, so this makes things more consistent.
151 lines
4.5 KiB
C#
151 lines
4.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using FluentAssertions;
|
|
using Xunit;
|
|
|
|
namespace Wasmtime.Tests
|
|
{
|
|
public class FunctionExportsFixture : ModuleFixture
|
|
{
|
|
protected override string ModuleFileName => "FunctionExports.wat";
|
|
}
|
|
|
|
public class FunctionExportsTests : IClassFixture<FunctionExportsFixture>
|
|
{
|
|
public FunctionExportsTests(FunctionExportsFixture fixture)
|
|
{
|
|
Fixture = fixture;
|
|
}
|
|
|
|
private FunctionExportsFixture Fixture { get; set; }
|
|
|
|
[Theory]
|
|
[MemberData(nameof(GetFunctionExports))]
|
|
public void ItHasTheExpectedFunctionExports(string exportName, ValueKind[] expectedParameters, ValueKind[] expectedResults)
|
|
{
|
|
var export = Fixture.Module.Exports.Functions.Where(f => f.Name == exportName).FirstOrDefault();
|
|
export.Should().NotBeNull();
|
|
export.Parameters.Should().Equal(expectedParameters);
|
|
export.Results.Should().Equal(expectedResults);
|
|
}
|
|
|
|
[Fact]
|
|
public void ItHasTheExpectedNumberOfExportedFunctions()
|
|
{
|
|
GetFunctionExports().Count().Should().Be(Fixture.Module.Exports.Functions.Count);
|
|
}
|
|
|
|
public static IEnumerable<object[]> GetFunctionExports()
|
|
{
|
|
yield return new object[] {
|
|
"no_params_no_results",
|
|
Array.Empty<ValueKind>(),
|
|
Array.Empty<ValueKind>()
|
|
};
|
|
|
|
yield return new object[] {
|
|
"one_i32_param_no_results",
|
|
new ValueKind[] {
|
|
ValueKind.Int32
|
|
},
|
|
Array.Empty<ValueKind>()
|
|
};
|
|
|
|
yield return new object[] {
|
|
"one_i64_param_no_results",
|
|
new ValueKind[] {
|
|
ValueKind.Int64
|
|
},
|
|
Array.Empty<ValueKind>()
|
|
};
|
|
|
|
yield return new object[] {
|
|
"one_f32_param_no_results",
|
|
new ValueKind[] {
|
|
ValueKind.Float32
|
|
},
|
|
Array.Empty<ValueKind>()
|
|
};
|
|
|
|
yield return new object[] {
|
|
"one_f64_param_no_results",
|
|
new ValueKind[] {
|
|
ValueKind.Float64
|
|
},
|
|
Array.Empty<ValueKind>()
|
|
};
|
|
|
|
yield return new object[] {
|
|
"one_param_of_each_type",
|
|
new ValueKind[] {
|
|
ValueKind.Int32,
|
|
ValueKind.Int64,
|
|
ValueKind.Float32,
|
|
ValueKind.Float64
|
|
},
|
|
Array.Empty<ValueKind>()
|
|
};
|
|
|
|
yield return new object[] {
|
|
"no_params_one_i32_result",
|
|
Array.Empty<ValueKind>(),
|
|
new ValueKind[] {
|
|
ValueKind.Int32,
|
|
}
|
|
};
|
|
|
|
yield return new object[] {
|
|
"no_params_one_i64_result",
|
|
Array.Empty<ValueKind>(),
|
|
new ValueKind[] {
|
|
ValueKind.Int64,
|
|
}
|
|
};
|
|
|
|
yield return new object[] {
|
|
"no_params_one_f32_result",
|
|
Array.Empty<ValueKind>(),
|
|
new ValueKind[] {
|
|
ValueKind.Float32,
|
|
}
|
|
};
|
|
|
|
yield return new object[] {
|
|
"no_params_one_f64_result",
|
|
Array.Empty<ValueKind>(),
|
|
new ValueKind[] {
|
|
ValueKind.Float64,
|
|
}
|
|
};
|
|
|
|
yield return new object[] {
|
|
"one_result_of_each_type",
|
|
Array.Empty<ValueKind>(),
|
|
new ValueKind[] {
|
|
ValueKind.Int32,
|
|
ValueKind.Int64,
|
|
ValueKind.Float32,
|
|
ValueKind.Float64,
|
|
}
|
|
};
|
|
|
|
yield return new object[] {
|
|
"one_param_and_result_of_each_type",
|
|
new ValueKind[] {
|
|
ValueKind.Int32,
|
|
ValueKind.Int64,
|
|
ValueKind.Float32,
|
|
ValueKind.Float64,
|
|
},
|
|
new ValueKind[] {
|
|
ValueKind.Int32,
|
|
ValueKind.Int64,
|
|
ValueKind.Float32,
|
|
ValueKind.Float64,
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|