-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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] Implement Permissions extension module #15421
Draft
RenderMichael
wants to merge
2
commits into
SeleniumHQ:trunk
Choose a base branch
from
RenderMichael:permissions-extensions
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
dotnet/src/webdriver/BiDi/Extensions/Permissions/PermissionsBiDi.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// <copyright file="PermissionsBiDi.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 OpenQA.Selenium.BiDi.Communication; | ||
using System; | ||
using System.Threading.Tasks; | ||
|
||
namespace OpenQA.Selenium.BiDi.Extensions.Permissions; | ||
|
||
public class PermissionsBiDi : BiDi | ||
{ | ||
private readonly Lazy<PermissionsModule> _permissionsModule; | ||
|
||
public PermissionsModule Permissions => _permissionsModule.Value; | ||
|
||
private PermissionsBiDi(string url) | ||
: base(url) | ||
{ | ||
Broker.ProvideCustomSerializationContext(PermissionsModule.SerializerContext); | ||
_permissionsModule = new Lazy<PermissionsModule>(() => new PermissionsModule(Broker)); | ||
} | ||
|
||
public static async Task<PermissionsBiDi> ConnectAsync(string webSocketUrl) | ||
{ | ||
var bidi = new PermissionsBiDi(webSocketUrl); | ||
await bidi.Broker.ConnectAsync(); | ||
return bidi; | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
dotnet/src/webdriver/BiDi/Extensions/Permissions/PermissionsBiDiJsonSerializerContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// <copyright file="PermissionsBiDiJsonSerializerContext.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 System.Text.Json.Serialization; | ||
|
||
namespace OpenQA.Selenium.BiDi.Extensions.Permissions; | ||
|
||
[JsonSerializable(typeof(SetPermissionCommand), TypeInfoPropertyName = "Permissions_SetPermissionCommand")] | ||
internal partial class PermissionsBiDiJsonSerializerContext : JsonSerializerContext; |
44 changes: 44 additions & 0 deletions
44
dotnet/src/webdriver/BiDi/Extensions/Permissions/PermissionsExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// <copyright file="PermissionsExtensions.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 System; | ||
using System.Threading.Tasks; | ||
|
||
namespace OpenQA.Selenium.BiDi.Extensions.Permissions; | ||
|
||
public static class PermissionsExtensions | ||
{ | ||
public static async Task<PermissionsBiDi> AsBiDiPermissionsAsync(this IWebDriver webDriver) | ||
{ | ||
if (webDriver is null) throw new ArgumentNullException(nameof(webDriver)); | ||
|
||
string? webSocketUrl = null; | ||
|
||
if (webDriver is IHasCapabilities hasCapabilities) | ||
{ | ||
webSocketUrl = hasCapabilities.Capabilities.GetCapability("webSocketUrl")?.ToString(); | ||
} | ||
|
||
if (webSocketUrl is null) throw new BiDiException("The driver is not compatible with bidirectional protocol or \"webSocketUrl\" not enabled in driver options."); | ||
|
||
var bidi = await PermissionsBiDi.ConnectAsync(webSocketUrl).ConfigureAwait(false); | ||
|
||
return bidi; | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
dotnet/src/webdriver/BiDi/Extensions/Permissions/PermissionsModule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// <copyright file="PermissionsModule.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 OpenQA.Selenium.BiDi.Communication; | ||
using OpenQA.Selenium.BiDi.Modules; | ||
using OpenQA.Selenium.BiDi.Modules.Browser; | ||
using System.Text.Json.Serialization; | ||
using System.Threading.Tasks; | ||
|
||
namespace OpenQA.Selenium.BiDi.Extensions.Permissions; | ||
|
||
public class PermissionsModule(Broker broker) : Module(broker) | ||
{ | ||
public static JsonSerializerContext SerializerContext => PermissionsBiDiJsonSerializerContext.Default; | ||
|
||
public async Task SetPermissionAsync(string permissionName, PermissionState state, string origin, UserContext? userContext, SetPermissionOptions? options = null) | ||
{ | ||
var @params = new SetPermissionCommandParameters(new PermissionDescriptor(permissionName), state, origin, userContext); | ||
|
||
await Broker.ExecuteCommandAsync(new SetPermissionCommand(@params), options).ConfigureAwait(false); | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
dotnet/src/webdriver/BiDi/Extensions/Permissions/SetPermissionCommand.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// <copyright file="SetPermissionCommand.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 OpenQA.Selenium.BiDi.Communication; | ||
using OpenQA.Selenium.BiDi.Modules.Browser; | ||
|
||
namespace OpenQA.Selenium.BiDi.Extensions.Permissions; | ||
|
||
internal class SetPermissionCommand(SetPermissionCommandParameters @params) | ||
: Command<SetPermissionCommandParameters>(@params, "permissions.setPermission"); | ||
|
||
public record SetPermissionOptions : CommandOptions; | ||
|
||
internal record SetPermissionCommandParameters(PermissionDescriptor Descriptor, PermissionState State, string Origin, UserContext? UserContext) : CommandParameters; | ||
|
||
internal record PermissionDescriptor(string Name); | ||
|
||
public enum PermissionState | ||
{ | ||
Granted, | ||
Denied, | ||
Prompt | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// <copyright file="PermissionsTests.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.Extensions.Permissions; | ||
using OpenQA.Selenium.BiDi.Modules.BrowsingContext; | ||
using OpenQA.Selenium.BiDi.Modules.Script; | ||
using OpenQA.Selenium.Environment; | ||
using System; | ||
using System.Threading.Tasks; | ||
|
||
namespace OpenQA.Selenium.BiDi.Permissions | ||
{ | ||
internal class PermissionsTests : BiDiTestFixture | ||
{ | ||
private new PermissionsBiDi bidi => (PermissionsBiDi)base.bidi; | ||
|
||
protected override async Task<BiDi> CreateBiDi(IWebDriver driver) | ||
{ | ||
return await driver.AsBiDiPermissionsAsync(); | ||
} | ||
|
||
[Test] | ||
public async Task SettingPermissionsTest() | ||
{ | ||
var userContext = await bidi.Browser.CreateUserContextAsync(); | ||
var window = await bidi.BrowsingContext.CreateAsync(ContextType.Window, new() | ||
{ | ||
ReferenceContext = context, | ||
UserContext = userContext.UserContext, | ||
Background = true | ||
}); | ||
|
||
var newPage = EnvironmentManager.Instance.UrlBuilder.CreateInlinePage(new InlinePage() | ||
.WithBody("<div>new page</div>")); | ||
|
||
await window.NavigateAsync(newPage); | ||
|
||
var before = await window.Script.CallFunctionAsync(""" | ||
async () => (await navigator.permissions.query({ name: "geolocation" })).state | ||
""", awaitPromise: true, new() { UserActivation = true, }); | ||
|
||
Assert.That(before.Result, Is.EqualTo(new RemoteValue.String("prompt"))); | ||
|
||
await bidi.Permissions.SetPermissionAsync("geolocation", PermissionState.Denied, newPage, userContext.UserContext); | ||
|
||
var after = await window.Script.CallFunctionAsync(""" | ||
async () => (await navigator.permissions.query({ name: "geolocation" })).state | ||
""", awaitPromise: true, new() { UserActivation = true }); | ||
|
||
Assert.That(after.Result, Is.EqualTo(new RemoteValue.String("denied"))); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should not derive from
BiDi
.