-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: mainsail compatibility and dependency upgrade (#165)
- Loading branch information
1 parent
c9cf27f
commit 9157c20
Showing
18 changed files
with
260 additions
and
218 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,65 +6,65 @@ on: | |
- "master" | ||
- "develop" | ||
pull_request: | ||
types: [ ready_for_review, synchronize, opened ] | ||
types: [ready_for_review, synchronize, opened] | ||
|
||
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Merge Conflict finder | ||
uses: olivernybroe/[email protected] | ||
- name: Merge Conflict finder | ||
uses: olivernybroe/[email protected] | ||
|
||
- name: Use Java Version 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'adopt' | ||
java-version: 8 | ||
cache: 'gradle' | ||
- name: Use Java Version 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: "adopt" | ||
java-version: 8 | ||
cache: "gradle" | ||
|
||
- name: Format code | ||
run: gradle format | ||
- name: Format code | ||
run: gradle format | ||
|
||
- name: Commit fixed code | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: "style: resolve style guide violations" | ||
branch: ${{ github.head_ref }} | ||
- name: Commit fixed code | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: "style: resolve style guide violations" | ||
branch: ${{ github.head_ref }} | ||
|
||
unit: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# test against the latest update of each major Java version, as well as specific updates of LTS versions: | ||
java: [ 8, 11, 15, 16, 17 ] | ||
java: [8, 11, 15, 16, 17, 18, 19, 20, 21, 22] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Merge Conflict finder | ||
uses: olivernybroe/[email protected] | ||
- name: Merge Conflict finder | ||
uses: olivernybroe/[email protected] | ||
|
||
- name: Use Java Version ${{ matrix.java }} | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'zulu' | ||
java-version: ${{ matrix.java }} | ||
cache: 'gradle' | ||
- name: Use Java Version ${{ matrix.java }} | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: "zulu" | ||
java-version: ${{ matrix.java }} | ||
cache: "gradle" | ||
|
||
- name: Install | ||
run: gradle dependencies | ||
- name: Install | ||
run: gradle dependencies | ||
|
||
- name: Test | ||
run: gradle test && gradle jacocoTestReport | ||
- name: Test | ||
run: gradle test && gradle jacocoTestReport | ||
|
||
- name: Codecov | ||
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} | ||
- name: Codecov | ||
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} |
30 changes: 30 additions & 0 deletions
30
src/integration/java/org/arkecosystem/client/api/ApiNodesTest.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,30 @@ | ||
package org.arkecosystem.client.api; | ||
|
||
import org.arkecosystem.client.BaseClientTest; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
import java.util.Map; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.hasEntry; | ||
import static org.hamcrest.Matchers.hasKey; | ||
|
||
@SuppressWarnings("unchecked") | ||
public class ApiNodesIntegrationTest extends BaseClientTest { | ||
|
||
@Test | ||
void all() throws IOException { | ||
Map<String, Object> actual = connection.api().apiNodes.all(); | ||
assertThat(actual, hasKey("data")); | ||
assertThat(actual, hasKey("meta")); | ||
} | ||
|
||
@Test | ||
void allWithParams() throws IOException { | ||
Map<String, Object> actual = | ||
connection.api().apiNodes.param("page", 1).param("limit", 100).all(); | ||
assertThat(actual, hasKey("data")); | ||
assertThat(actual, hasKey("meta")); | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/integration/java/org/arkecosystem/client/api/CommitsTest.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,20 @@ | ||
package org.arkecosystem.client.api; | ||
|
||
import org.arkecosystem.client.BaseClientTest; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
import java.util.Map; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.hasKey; | ||
|
||
@SuppressWarnings("unchecked") | ||
public class CommitsIntegrationTest extends BaseClientTest { | ||
|
||
@Test | ||
void show() throws IOException { | ||
Map<String, Object> actual = connection.api().commits.show(123456); | ||
assertThat(actual, hasKey("data")); | ||
} | ||
} |
55 changes: 0 additions & 55 deletions
55
src/integration/java/org/arkecosystem/client/api/LocksTest.java
This file was deleted.
Oops, something went wrong.
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
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,26 @@ | ||
package org.arkecosystem.client.api; | ||
|
||
import java.io.IOException; | ||
import java.util.LinkedHashMap; | ||
import java.util.Map; | ||
import org.arkecosystem.client.http.Client; | ||
|
||
public class ApiNodes implements SupportsParams<ApiNodes> { | ||
private final Client client; | ||
|
||
private final Map<String, Object> params = new LinkedHashMap<>(); | ||
|
||
public ApiNodes(Client client) { | ||
this.client = client; | ||
} | ||
|
||
@Override | ||
public ApiNodes param(String name, Object value) { | ||
params.put(name, value); | ||
return this; | ||
} | ||
|
||
public Map<String, Object> all() throws IOException { | ||
return this.client.get("api-nodes", params); | ||
} | ||
} |
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,17 @@ | ||
package org.arkecosystem.client.api; | ||
|
||
import java.io.IOException; | ||
import java.util.Map; | ||
import org.arkecosystem.client.http.Client; | ||
|
||
public class Commits { | ||
private final Client client; | ||
|
||
public Commits(Client client) { | ||
this.client = client; | ||
} | ||
|
||
public Map<String, Object> show(int height) throws IOException { | ||
return this.client.get("commits/" + height); | ||
} | ||
} |
Oops, something went wrong.