-
-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Chrome for Testing JSON endpoint for version discovering as of ch…
…romedriver 115
- Loading branch information
1 parent
e9ac99c
commit 0d49671
Showing
7 changed files
with
233 additions
and
28 deletions.
There are no files selected for viewing
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
49 changes: 49 additions & 0 deletions
49
src/main/java/io/github/bonigarcia/wdm/online/GoodVersions.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,49 @@ | ||
/* | ||
* (C) Copyright 2023 Boni Garcia (https://bonigarcia.github.io/) | ||
* | ||
* Licensed 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 io.github.bonigarcia.wdm.online; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* POJO to parse the Chrome for Testing (CfT) JSON endpoints | ||
* (https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json). | ||
* | ||
* @author Boni Garcia | ||
* @since 5.4.0 | ||
*/ | ||
public class GoodVersions { | ||
|
||
public String timestamp; | ||
public List<Versions> versions; | ||
|
||
public class Versions { | ||
public String version; | ||
public String revision; | ||
public Downloads downloads; | ||
} | ||
|
||
public class Downloads { | ||
public List<PlatformUrl> chrome; | ||
public List<PlatformUrl> chromedriver; | ||
} | ||
|
||
public class PlatformUrl { | ||
public String platform; | ||
public String url; | ||
} | ||
|
||
} |
56 changes: 56 additions & 0 deletions
56
src/main/java/io/github/bonigarcia/wdm/online/LastGoodVersions.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,56 @@ | ||
/* | ||
* (C) Copyright 2023 Boni Garcia (https://bonigarcia.github.io/) | ||
* | ||
* Licensed 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 io.github.bonigarcia.wdm.online; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
import io.github.bonigarcia.wdm.online.GoodVersions.Downloads; | ||
|
||
/** | ||
* POJO to parse the Chrome for Testing (CfT) JSON endpoints | ||
* (https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json). | ||
* | ||
* @author Boni Garcia | ||
* @since 5.4.0 | ||
*/ | ||
public class LastGoodVersions { | ||
|
||
public String timestamp; | ||
public Channels channels; | ||
|
||
public class Channels { | ||
@SerializedName("Stable") | ||
public Channel stable; | ||
|
||
@SerializedName("Beta") | ||
public Channel beta; | ||
|
||
@SerializedName("Dev") | ||
public Channel dev; | ||
|
||
@SerializedName("Canary") | ||
public Channel canary; | ||
} | ||
|
||
public class Channel { | ||
public String channel; | ||
public String version; | ||
public String revision; | ||
public Downloads downloads; | ||
} | ||
|
||
} |
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,52 @@ | ||
/* | ||
* (C) Copyright 2023 Boni Garcia (https://bonigarcia.github.io/) | ||
* | ||
* Licensed 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 io.github.bonigarcia.wdm.online; | ||
|
||
import static java.lang.invoke.MethodHandles.lookup; | ||
import static org.slf4j.LoggerFactory.getLogger; | ||
|
||
import java.io.BufferedReader; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.io.InputStreamReader; | ||
import java.net.URL; | ||
|
||
import org.apache.hc.client5.http.classic.methods.HttpGet; | ||
import org.slf4j.Logger; | ||
|
||
import com.google.gson.GsonBuilder; | ||
|
||
/** | ||
* JSON parser for online endpoints. | ||
* | ||
* @author Boni Garcia | ||
* @since 5.4.0 | ||
*/ | ||
public class Parser { | ||
|
||
static final Logger log = getLogger(lookup().lookupClass()); | ||
|
||
public static <T> T parseJson(HttpClient client, String url, Class<T> klass) | ||
throws IOException { | ||
HttpGet get = client.createHttpGet(new URL(url)); | ||
InputStream content = client.execute(get).getEntity().getContent(); | ||
try (BufferedReader reader = new BufferedReader( | ||
new InputStreamReader(content))) { | ||
return new GsonBuilder().create().fromJson(reader, klass); | ||
} | ||
} | ||
} |
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