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

[dotnet] [bidi] Simplify conversion to LocalValue #15441

Merged
merged 21 commits into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ccc536d
[dotnet] [bidi] Simplify usage of `LocalValue`
RenderMichael Mar 17, 2025
0722af5
Update exception
RenderMichael Mar 17, 2025
cd55951
Use new methods better in tests
RenderMichael Mar 17, 2025
47891c5
`String(null)` returns `NullLocalValue`
RenderMichael Mar 17, 2025
d367a66
Merge branch 'trunk' into local-value
RenderMichael Mar 17, 2025
c7cbaf7
Add regex overload that takes a string pattern
RenderMichael Mar 17, 2025
0c4f8bf
Remote static factory methods for now
RenderMichael Mar 21, 2025
6ae7a94
remove unnecessary change
RenderMichael Mar 21, 2025
c7ac3b9
Avoid BigInt until we need it
RenderMichael Mar 21, 2025
c73fd33
Account for BigInt in ConvertFrom(object)
RenderMichael Mar 21, 2025
a762425
Avoid implicit casts in tests that aren't there to test it
RenderMichael Mar 21, 2025
02ace40
Merge branch 'trunk' into local-value
RenderMichael Mar 21, 2025
2ae4fad
Remote `LocalValue.ConvertFrom(JsonNode)`, expand `ConvertFrom(object)`
RenderMichael Mar 25, 2025
49f1347
Merge branch 'trunk' into local-value
RenderMichael Mar 25, 2025
e875b05
Add ConvertFrom support for `DateTime` and `long`
RenderMichael Mar 25, 2025
4e6db49
Add unit tests to LocalValue operators
RenderMichael Mar 25, 2025
e1ce7ed
Merge branch 'trunk' into local-value
RenderMichael Mar 25, 2025
efd0058
Use var
RenderMichael Mar 25, 2025
64c5eb0
Use in-line literals for `LocalValue` conversions, use a separate fix…
RenderMichael Mar 26, 2025
e647628
Merge branch 'trunk' into local-value
RenderMichael Mar 26, 2025
d0da6e2
Use int literal
RenderMichael Mar 26, 2025
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
3 changes: 3 additions & 0 deletions dotnet/src/webdriver/BiDi/BiDiException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,7 @@ public class BiDiException : Exception
public BiDiException(string message) : base(message)
{
}
public BiDiException(string? message, Exception? innerException) : base(message, innerException)
{
}
}
92 changes: 80 additions & 12 deletions dotnet/src/webdriver/BiDi/Modules/Script/LocalValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
// under the License.
// </copyright>

using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text.Json.Serialization;

namespace OpenQA.Selenium.BiDi.Modules.Script;
Expand All @@ -38,33 +41,98 @@ namespace OpenQA.Selenium.BiDi.Modules.Script;
[JsonDerivedType(typeof(SetLocalValue), "set")]
public abstract record LocalValue
{
public static implicit operator LocalValue(int value) { return new NumberLocalValue(value); }
public static implicit operator LocalValue(bool? value) { return value is bool b ? new BooleanLocalValue(b) : new NullLocalValue(); }
public static implicit operator LocalValue(int? value) { return value is int i ? new NumberLocalValue(i) : new NullLocalValue(); }
public static implicit operator LocalValue(double? value) { return value is double d ? new NumberLocalValue(d) : new NullLocalValue(); }
public static implicit operator LocalValue(string? value) { return value is null ? new NullLocalValue() : new StringLocalValue(value); }

// TODO: Extend converting from types
public static LocalValue ConvertFrom(object? value)
{
switch (value)
{
case LocalValue:
return (LocalValue)value;
case LocalValue localValue:
return localValue;

case null:
return new NullLocalValue();
case int:
return (int)value;
case string:
return (string)value;
case object:

case bool b:
return new BooleanLocalValue(b);

case int i:
return new NumberLocalValue(i);

case double d:
return new NumberLocalValue(d);

case long l:
return new NumberLocalValue(l);

case DateTime dt:
return new DateLocalValue(dt.ToString("o"));

case BigInteger bigInt:
return new BigIntLocalValue(bigInt.ToString());

case string str:
return new StringLocalValue(str);

case IDictionary<string, string?> dictionary:
{
var type = value.GetType();
var bidiObject = new List<List<LocalValue>>(dictionary.Count);
foreach (var item in dictionary)
{
bidiObject.Add([new StringLocalValue(item.Key), ConvertFrom(item.Value)]);
}

var properties = type.GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance);
return new ObjectLocalValue(bidiObject);
}

case IDictionary<string, object?> dictionary:
{
var bidiObject = new List<List<LocalValue>>(dictionary.Count);
foreach (var item in dictionary)
{
bidiObject.Add([new StringLocalValue(item.Key), ConvertFrom(item.Value)]);
}

return new ObjectLocalValue(bidiObject);
}

case IDictionary<int, object?> dictionary:
{
var bidiObject = new List<List<LocalValue>>(dictionary.Count);
foreach (var item in dictionary)
{
bidiObject.Add([ConvertFrom(item.Key), ConvertFrom(item.Value)]);
}

return new MapLocalValue(bidiObject);
}

case IEnumerable<object?> list:
return new ArrayLocalValue(list.Select(ConvertFrom).ToList());

case object:
{
const System.Reflection.BindingFlags Flags = System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance;

List<List<LocalValue>> values = [];
var properties = value.GetType().GetProperties(Flags);

var values = new List<List<LocalValue>>(properties.Length);
foreach (var property in properties)
{
values.Add([property.Name, ConvertFrom(property.GetValue(value))]);
object? propertyValue;
try
{
propertyValue = property.GetValue(value);
}
catch (Exception ex)
{
throw new BiDiException($"Could not retrieve property {property.Name} from {property.DeclaringType}", ex);
}
values.Add([property.Name, ConvertFrom(propertyValue)]);
}

return new ObjectLocalValue(values);
Expand Down
18 changes: 17 additions & 1 deletion dotnet/test/common/BiDi/Script/CallFunctionLocalValueTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ await context.Script.CallFunctionAsync($$"""
}

[Test]
public void CanCallFunctionWithArgumentBoolean()
public void CanCallFunctionWithArgumentTrue()
{
var arg = new BooleanLocalValue(true);
Assert.That(async () =>
Expand All @@ -72,6 +72,22 @@ await context.Script.CallFunctionAsync($$"""
}, Throws.Nothing);
}

[Test]
public void CanCallFunctionWithArgumentFalse()
{
var arg = new BooleanLocalValue(false);
Assert.That(async () =>
{
await context.Script.CallFunctionAsync($$"""
(arg) => {
if (arg !== false) {
throw new Error("Assert failed: " + arg);
}
}
""", false, new() { Arguments = [arg] });
}, Throws.Nothing);
}

[Test]
public void CanCallFunctionWithArgumentBigInt()
{
Expand Down
99 changes: 99 additions & 0 deletions dotnet/test/common/BiDi/Script/LocalValueConversionTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
// <copyright file="LocalValueConversionTests.cs" company="Selenium Committers">
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
// </copyright>

using NUnit.Framework;
using OpenQA.Selenium.BiDi.Modules.Script;

namespace OpenQA.Selenium.BiDi.Script;

class LocalValueConversionTests
{
[Test]
public void CanConvertNullBoolToLocalValue()
{
bool? arg = null;
LocalValue result = arg;
Assert.That(result, Is.TypeOf<NullLocalValue>());
}

[Test]
public void CanConvertTrueToLocalValue()
{
LocalValue result = true;
Assert.That(result, Is.TypeOf<BooleanLocalValue>());
Assert.That((result as BooleanLocalValue).Value, Is.True);
}

[Test]
public void CanConvertFalseToLocalValue()
{
LocalValue result = false;
Assert.That(result, Is.TypeOf<BooleanLocalValue>());
Assert.That((result as BooleanLocalValue).Value, Is.False);
}

[Test]
public void CanConvertNullIntToLocalValue()
{
int? arg = null;
LocalValue result = arg;
Assert.That(result, Is.TypeOf<NullLocalValue>());
}

[Test]
public void CanConvertZeroIntToLocalValue()
{
LocalValue result = 0;
Assert.That(result, Is.TypeOf<NumberLocalValue>());
Assert.That((result as NumberLocalValue).Value, Is.Zero);
}

[Test]
public void CanConvertNullDoubleToLocalValue()
{
double? arg = null;
LocalValue result = arg;
Assert.That(result, Is.TypeOf<NullLocalValue>());
}

[Test]
public void CanConvertZeroDoubleToLocalValue()
{
double arg = 0;
LocalValue result = arg;
Assert.That(result, Is.TypeOf<NumberLocalValue>());
Assert.That((result as NumberLocalValue).Value, Is.Zero);
}

[Test]
public void CanConvertNullStringToLocalValue()
{
string arg = null;
LocalValue result = arg;
Assert.That(result, Is.TypeOf<NullLocalValue>());
}

[Test]
public void CanConvertStringToLocalValue()
{
LocalValue result = "value";
Assert.That(result, Is.TypeOf<StringLocalValue>());
Assert.That((result as StringLocalValue).Value, Is.EqualTo("value"));
}
}
Loading