Skip to content

Commit 210012b

Browse files
committed
[dotnet] [bidi] Hide context from command options in contextual env
1 parent 1a3d451 commit 210012b

File tree

6 files changed

+55
-38
lines changed

6 files changed

+55
-38
lines changed

dotnet/src/webdriver/BiDi/Modules/BrowsingContext/BrowsingContext.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,12 @@ public Task HandleUserPromptAsync(HandleUserPromptOptions? options = null)
100100

101101
public Task<IReadOnlyList<BrowsingContextInfo>> GetTreeAsync(BrowsingContextGetTreeOptions? options = null)
102102
{
103-
options ??= new();
103+
GetTreeOptions getTreeOptions = new(options)
104+
{
105+
Root = this
106+
};
104107

105-
options.Root = this;
106-
107-
return _bidi.BrowsingContextModule.GetTreeAsync(options);
108+
return _bidi.BrowsingContextModule.GetTreeAsync(getTreeOptions);
108109
}
109110

110111
public Task<Subscription> OnNavigationStartedAsync(Func<NavigationInfo, Task> handler, SubscriptionOptions? options = null)

dotnet/src/webdriver/BiDi/Modules/BrowsingContext/BrowsingContextNetworkModule.cs

+15-12
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ public class BrowsingContextNetworkModule(BrowsingContext context, NetworkModule
88
{
99
public async Task<Intercept> InterceptRequestAsync(Func<BeforeRequestSentEventArgs, Task> handler, BrowsingContextAddInterceptOptions? interceptOptions = null, SubscriptionOptions? options = null)
1010
{
11-
interceptOptions ??= new();
11+
AddInterceptOptions addInterceptOptions = new(interceptOptions)
12+
{
13+
Contexts = [context]
14+
};
1215

13-
interceptOptions.Contexts = [context];
14-
15-
var intercept = await networkModule.AddInterceptAsync([InterceptPhase.BeforeRequestSent], interceptOptions).ConfigureAwait(false);
16+
var intercept = await networkModule.AddInterceptAsync([InterceptPhase.BeforeRequestSent], addInterceptOptions).ConfigureAwait(false);
1617

1718
await intercept.OnBeforeRequestSentAsync(handler, new BrowsingContextsSubscriptionOptions(options) { Contexts = [context] }).ConfigureAwait(false);
1819

@@ -21,11 +22,12 @@ public async Task<Intercept> InterceptRequestAsync(Func<BeforeRequestSentEventAr
2122

2223
public async Task<Intercept> InterceptResponseAsync(Func<ResponseStartedEventArgs, Task> handler, BrowsingContextAddInterceptOptions? interceptOptions = null, SubscriptionOptions? options = null)
2324
{
24-
interceptOptions ??= new();
25-
26-
interceptOptions.Contexts = [context];
25+
AddInterceptOptions addInterceptOptions = new(interceptOptions)
26+
{
27+
Contexts = [context]
28+
};
2729

28-
var intercept = await networkModule.AddInterceptAsync([InterceptPhase.ResponseStarted], interceptOptions).ConfigureAwait(false);
30+
var intercept = await networkModule.AddInterceptAsync([InterceptPhase.ResponseStarted], addInterceptOptions).ConfigureAwait(false);
2931

3032
await intercept.OnResponseStartedAsync(handler, new BrowsingContextsSubscriptionOptions(options) { Contexts = [context] }).ConfigureAwait(false);
3133

@@ -34,11 +36,12 @@ public async Task<Intercept> InterceptResponseAsync(Func<ResponseStartedEventArg
3436

3537
public async Task<Intercept> InterceptAuthenticationAsync(Func<AuthRequiredEventArgs, Task> handler, BrowsingContextAddInterceptOptions? interceptOptions = null, SubscriptionOptions? options = null)
3638
{
37-
interceptOptions ??= new();
38-
39-
interceptOptions.Contexts = [context];
39+
AddInterceptOptions addInterceptOptions = new(interceptOptions)
40+
{
41+
Contexts = [context]
42+
};
4043

41-
var intercept = await networkModule.AddInterceptAsync([InterceptPhase.AuthRequired], interceptOptions).ConfigureAwait(false);
44+
var intercept = await networkModule.AddInterceptAsync([InterceptPhase.AuthRequired], addInterceptOptions).ConfigureAwait(false);
4245

4346
await intercept.OnAuthRequiredAsync(handler, new BrowsingContextsSubscriptionOptions(options) { Contexts = [context] }).ConfigureAwait(false);
4447

dotnet/src/webdriver/BiDi/Modules/BrowsingContext/BrowsingContextScriptModule.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ public class BrowsingContextScriptModule(BrowsingContext context, ScriptModule s
88
{
99
public async Task<PreloadScript> AddPreloadScriptAsync(string functionDeclaration, BrowsingContextAddPreloadScriptOptions? options = null)
1010
{
11-
options ??= new();
12-
13-
options.Contexts = [context];
11+
AddPreloadScriptOptions addPreloadScriptOptions = new(options)
12+
{
13+
Contexts = [context]
14+
};
1415

15-
return await scriptModule.AddPreloadScriptAsync(functionDeclaration, options).ConfigureAwait(false);
16+
return await scriptModule.AddPreloadScriptAsync(functionDeclaration, addPreloadScriptOptions).ConfigureAwait(false);
1617
}
1718

1819
public async Task<IReadOnlyList<RealmInfo>> GetRealmsAsync(GetRealmsOptions? options = null)

dotnet/src/webdriver/BiDi/Modules/BrowsingContext/GetTreeCommand.cs

+9-6
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,21 @@ internal record GetTreeCommandParameters : CommandParameters
1414

1515
public record GetTreeOptions : CommandOptions
1616
{
17+
public GetTreeOptions() { }
18+
19+
internal GetTreeOptions(BrowsingContextGetTreeOptions? options)
20+
{
21+
MaxDepth = options?.MaxDepth;
22+
}
23+
1724
public long? MaxDepth { get; set; }
1825

1926
public BrowsingContext? Root { get; set; }
2027
}
2128

22-
public record BrowsingContextGetTreeOptions : GetTreeOptions
29+
public record BrowsingContextGetTreeOptions
2330
{
24-
internal new BrowsingContext? Root
25-
{
26-
get => base.Root;
27-
set => base.Root = value;
28-
}
31+
public long? MaxDepth { get; set; }
2932
}
3033

3134
public record GetTreeResult(IReadOnlyList<BrowsingContextInfo> Contexts);

dotnet/src/webdriver/BiDi/Modules/Network/AddInterceptCommand.cs

+9-6
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,21 @@ internal record AddInterceptCommandParameters(IEnumerable<InterceptPhase> Phases
1414

1515
public record AddInterceptOptions : CommandOptions
1616
{
17+
public AddInterceptOptions() { }
18+
19+
internal AddInterceptOptions(BrowsingContextAddInterceptOptions? options)
20+
{
21+
UrlPatterns = options?.UrlPatterns;
22+
}
23+
1724
public IEnumerable<BrowsingContext.BrowsingContext>? Contexts { get; set; }
1825

1926
public IEnumerable<UrlPattern>? UrlPatterns { get; set; }
2027
}
2128

22-
public record BrowsingContextAddInterceptOptions : AddInterceptOptions
29+
public record BrowsingContextAddInterceptOptions
2330
{
24-
internal new IEnumerable<BrowsingContext.BrowsingContext>? Contexts
25-
{
26-
get => base.Contexts;
27-
set => base.Contexts = value;
28-
}
31+
public IEnumerable<UrlPattern>? UrlPatterns { get; set; }
2932
}
3033

3134
public record AddInterceptResult(Intercept Intercept);

dotnet/src/webdriver/BiDi/Modules/Script/AddPreloadScriptCommand.cs

+12-6
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,26 @@ internal record AddPreloadScriptCommandParameters(string FunctionDeclaration) :
1616

1717
public record AddPreloadScriptOptions : CommandOptions
1818
{
19+
public AddPreloadScriptOptions() { }
20+
21+
internal AddPreloadScriptOptions(BrowsingContextAddPreloadScriptOptions? options)
22+
{
23+
Arguments = options?.Arguments;
24+
Sandbox = options?.Sandbox;
25+
}
26+
1927
public IEnumerable<ChannelValue>? Arguments { get; set; }
2028

2129
public IEnumerable<BrowsingContext.BrowsingContext>? Contexts { get; set; }
2230

2331
public string? Sandbox { get; set; }
2432
}
2533

26-
public record BrowsingContextAddPreloadScriptOptions : AddPreloadScriptOptions
34+
public record BrowsingContextAddPreloadScriptOptions
2735
{
28-
internal new IEnumerable<BrowsingContext.BrowsingContext>? Contexts
29-
{
30-
get => base.Contexts;
31-
set => base.Contexts = value;
32-
}
36+
public IEnumerable<ChannelValue>? Arguments { get; set; }
37+
38+
public string? Sandbox { get; set; }
3339
}
3440

3541
internal record AddPreloadScriptResult(PreloadScript Script);

0 commit comments

Comments
 (0)