-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow Chromium permissions functionality to be augmented by RemoteWeb…
…Driver
- Loading branch information
1 parent
89d4403
commit 37a3b75
Showing
5 changed files
with
134 additions
and
6 deletions.
There are no files selected for viewing
71 changes: 71 additions & 0 deletions
71
java/src/org/openqa/selenium/chromium/AddHasPermissions.java
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,71 @@ | ||
// 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. | ||
|
||
package org.openqa.selenium.chromium; | ||
|
||
import com.google.auto.service.AutoService; | ||
import com.google.common.collect.ImmutableMap; | ||
import org.openqa.selenium.Capabilities; | ||
import org.openqa.selenium.internal.Require; | ||
import org.openqa.selenium.remote.AdditionalHttpCommands; | ||
import org.openqa.selenium.remote.AugmenterProvider; | ||
import org.openqa.selenium.remote.CommandInfo; | ||
import org.openqa.selenium.remote.ExecuteMethod; | ||
import org.openqa.selenium.remote.http.HttpMethod; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.Map; | ||
import java.util.function.Predicate; | ||
|
||
import static org.openqa.selenium.remote.BrowserType.CHROME; | ||
import static org.openqa.selenium.remote.BrowserType.EDGE; | ||
|
||
@AutoService({AdditionalHttpCommands.class, AugmenterProvider.class}) | ||
public class AddHasPermissions implements AugmenterProvider<HasPermissions>, AdditionalHttpCommands { | ||
|
||
public static final String SET_PERMISSION = "setPermission"; | ||
|
||
private static final Map<String, CommandInfo> COMMANDS = ImmutableMap.of( | ||
SET_PERMISSION, new CommandInfo("/session/:sessionId/permissions", HttpMethod.POST)); | ||
|
||
@Override | ||
public Map<String, CommandInfo> getAdditionalCommands() { | ||
return COMMANDS; | ||
} | ||
|
||
@Override public Predicate<Capabilities> isApplicable() { | ||
String[] validBrowsers = new String[] { EDGE, CHROME, "msedge" }; | ||
return caps -> new ArrayList<>(Arrays.asList(validBrowsers)).contains(caps.getBrowserName()); | ||
} | ||
|
||
@Override public Class<HasPermissions> getDescribedInterface() { | ||
return HasPermissions.class; | ||
} | ||
|
||
@Override public HasPermissions getImplementation(Capabilities capabilities, ExecuteMethod executeMethod) { | ||
return new HasPermissions() { | ||
@Override | ||
public void setPermission(String name, String value) { | ||
Require.nonNull("Permission name", name); | ||
Require.nonNull("Permission value", value); | ||
|
||
executeMethod.execute(SET_PERMISSION, ImmutableMap.of("descriptor", ImmutableMap.of("name", name), "state", value)); | ||
} | ||
}; | ||
} | ||
} |
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
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,33 @@ | ||
// 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. | ||
|
||
package org.openqa.selenium.chromium; | ||
|
||
import org.openqa.selenium.Beta; | ||
|
||
import java.util.Map; | ||
|
||
@Beta | ||
public interface HasPermissions { | ||
|
||
/** | ||
* | ||
* @param name what permission to set. | ||
* @param value what to set the permission to. | ||
*/ | ||
public void setPermission(String name, String value); | ||
} |
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