refactor: Make sure we only write W3C payload into create session command by mykola-mokhnach · Pull Request #1537 · appium/java-client · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
39 changes: 31 additions & 8 deletions src/main/java/io/appium/java_client/AppiumDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private Response createSession(Command command) throws IOException {
throw new SessionNotCreatedException("Session already exists");
}

ProtocolHandshake.Result result = new ProtocolHandshake().createSession(
ProtocolHandshake.Result result = new AppiumProtocolHandshake().createSession(
getClient().with((httpHandler) -> (req) -> {
req.setHeader(IDEMPOTENCY_KEY_HEADER, UUID.randomUUID().toString().toLowerCase());
return httpHandler.execute(req);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
* 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 io.appium.java_client.remote;

import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.internal.Require;
import org.openqa.selenium.remote.AcceptedW3CCapabilityKeys;
import org.openqa.selenium.remote.CommandPayload;

import java.util.AbstractMap;
import java.util.Map;

import static io.appium.java_client.internal.CapabilityHelpers.APPIUM_PREFIX;
import static org.openqa.selenium.remote.DriverCommand.NEW_SESSION;

public class AppiumNewSessionCommandPayload extends CommandPayload {
private static final AcceptedW3CCapabilityKeys ACCEPTED_W3C_PATTERNS = new AcceptedW3CCapabilityKeys();

/**
* Appends "appium:" prefix to all non-prefixed non-standard capabilities.
*
* @param possiblyInvalidCapabilities user-provided capabilities mapping.
* @return Fixed capabilities mapping.
*/
private static Map<String, Object> makeW3CSafe(Capabilities possiblyInvalidCapabilities) {
Require.nonNull("Capabilities", possiblyInvalidCapabilities);

return possiblyInvalidCapabilities.asMap().entrySet().stream()
.map((entry) -> ACCEPTED_W3C_PATTERNS.test(entry.getKey())
? entry
: new AbstractMap.SimpleEntry<>(
String.format("%s%s", APPIUM_PREFIX, entry.getKey()), entry.getValue()))
.collect(ImmutableMap.toImmutableMap(Map.Entry::getKey, Map.Entry::getValue));
Comment on lines +44 to +49

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return possiblyInvalidCapabilities.asMap().entrySet().stream()
.map((entry) -> ACCEPTED_W3C_PATTERNS.test(entry.getKey())
? entry
: new AbstractMap.SimpleEntry<>(
String.format("%s%s", APPIUM_PREFIX, entry.getKey()), entry.getValue()))
.collect(ImmutableMap.toImmutableMap(Map.Entry::getKey, Map.Entry::getValue));
return possiblyInvalidCapabilities.asMap().entrySet().stream()
.collect(ImmutableMap.toImmutableMap(
entry -> ACCEPTED_W3C_PATTERNS.test(entry.getKey()) ? entry.getKey() : APPIUM_PREFIX + entry.getKey(),
Map.Entry::getValue
));

?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it seems I'm too late

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

np, I could add it in the next PR

}

/**
* Overrides the default new session behavior to
* only handle W3C capabilities.
*
* @param capabilities User-provided capabilities.
*/
public AppiumNewSessionCommandPayload(Capabilities capabilities) {
super(NEW_SESSION, ImmutableMap.of(
"capabilities", ImmutableSet.of(makeW3CSafe(capabilities)),
"desiredCapabilities", capabilities
));
}
}