-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into preset-order-match-spec
- Loading branch information
Showing
18 changed files
with
1,257 additions
and
20 deletions.
There are no files selected for viewing
286 changes: 276 additions & 10 deletions
286
...est/java/tech/pegasys/teku/validator/remote/typedef/OkHttpValidatorTypeDefClientTest.java
Large diffs are not rendered by default.
Oops, something went wrong.
133 changes: 133 additions & 0 deletions
133
...ys/teku/validator/remote/typedef/handlers/CreateSyncCommitteeContributionRequestTest.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,133 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2024 | ||
* | ||
* 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 tech.pegasys.teku.validator.remote.typedef.handlers; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.assertj.core.api.Assertions.assertThatThrownBy; | ||
import static org.assertj.core.api.Assumptions.assumeThat; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_BAD_REQUEST; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_INTERNAL_SERVER_ERROR; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_NOT_FOUND; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_NO_CONTENT; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_OK; | ||
import static tech.pegasys.teku.infrastructure.http.RestApiConstants.BEACON_BLOCK_ROOT; | ||
import static tech.pegasys.teku.infrastructure.http.RestApiConstants.SLOT; | ||
import static tech.pegasys.teku.infrastructure.http.RestApiConstants.SUBCOMMITTEE_INDEX; | ||
import static tech.pegasys.teku.infrastructure.json.JsonUtil.serialize; | ||
import static tech.pegasys.teku.spec.SpecMilestone.PHASE0; | ||
|
||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import java.util.Collections; | ||
import java.util.Optional; | ||
import okhttp3.mockwebserver.MockResponse; | ||
import okhttp3.mockwebserver.RecordedRequest; | ||
import org.apache.tuweni.bytes.Bytes32; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.TestTemplate; | ||
import tech.pegasys.teku.api.exceptions.RemoteServiceNotAvailableException; | ||
import tech.pegasys.teku.infrastructure.unsigned.UInt64; | ||
import tech.pegasys.teku.spec.TestSpecContext; | ||
import tech.pegasys.teku.spec.datastructures.operations.versions.altair.SyncCommitteeContribution; | ||
import tech.pegasys.teku.spec.networks.Eth2Network; | ||
import tech.pegasys.teku.validator.remote.apiclient.ValidatorApiMethod; | ||
import tech.pegasys.teku.validator.remote.typedef.AbstractTypeDefRequestTestBase; | ||
|
||
@TestSpecContext(allMilestones = true, network = Eth2Network.MINIMAL) | ||
public class CreateSyncCommitteeContributionRequestTest extends AbstractTypeDefRequestTestBase { | ||
|
||
private CreateSyncCommitteeContributionRequest request; | ||
private UInt64 slot; | ||
private int subcommitteeIndex; | ||
private Bytes32 root; | ||
|
||
@BeforeEach | ||
public void setup() { | ||
request = | ||
new CreateSyncCommitteeContributionRequest(mockWebServer.url("/"), okHttpClient, spec); | ||
slot = dataStructureUtil.randomSlot(); | ||
subcommitteeIndex = dataStructureUtil.randomPositiveInt(); | ||
root = dataStructureUtil.randomBytes32(); | ||
} | ||
|
||
@TestTemplate | ||
public void createSyncCommitteeContribution_noRequestAtPhase0() { | ||
assumeThat(specMilestone).isLessThanOrEqualTo(PHASE0); | ||
request.submit(slot, subcommitteeIndex, root); | ||
assertThat(mockWebServer.getRequestCount()).isZero(); | ||
} | ||
|
||
@TestTemplate | ||
public void createSyncCommitteeContribution_makesExpectedRequest() throws Exception { | ||
assumeThat(specMilestone).isGreaterThan(PHASE0); | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_NO_CONTENT)); | ||
request.submit(slot, subcommitteeIndex, root); | ||
final RecordedRequest request = mockWebServer.takeRequest(); | ||
assertThat(request.getMethod()).isEqualTo("GET"); | ||
assertThat(request.getPath()) | ||
.contains( | ||
ValidatorApiMethod.GET_SYNC_COMMITTEE_CONTRIBUTION.getPath(Collections.emptyMap())); | ||
assertThat(request.getRequestUrl().queryParameter(SLOT)).isEqualTo(slot.toString()); | ||
assertThat(request.getRequestUrl().queryParameter(SUBCOMMITTEE_INDEX)) | ||
.isEqualTo(String.valueOf(subcommitteeIndex)); | ||
assertThat(request.getRequestUrl().queryParameter(BEACON_BLOCK_ROOT)) | ||
.isEqualTo(String.valueOf(root.toHexString())); | ||
} | ||
|
||
@TestTemplate | ||
public void shouldGetSyncCommitteeContribution() throws JsonProcessingException { | ||
assumeThat(specMilestone).isGreaterThan(PHASE0); | ||
final SyncCommitteeContribution response = dataStructureUtil.randomSyncCommitteeContribution(); | ||
final String jsonResponse = | ||
serialize( | ||
response, | ||
spec.getGenesisSchemaDefinitions() | ||
.toVersionAltair() | ||
.orElseThrow() | ||
.getSyncCommitteeContributionSchema() | ||
.getJsonTypeDefinition()); | ||
|
||
mockWebServer.enqueue( | ||
new MockResponse() | ||
.setResponseCode(SC_OK) | ||
.setBody(String.format("{\"data\":%s}", jsonResponse))); | ||
|
||
final Optional<SyncCommitteeContribution> maybeSyncCommitteeContribution = | ||
request.submit(slot, subcommitteeIndex, root); | ||
assertThat(maybeSyncCommitteeContribution).isPresent(); | ||
assertThat(maybeSyncCommitteeContribution.get()).isEqualTo(response); | ||
} | ||
|
||
@TestTemplate | ||
void handle400() { | ||
assumeThat(specMilestone).isGreaterThan(PHASE0); | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_BAD_REQUEST)); | ||
assertThatThrownBy(() -> request.submit(slot, subcommitteeIndex, root)) | ||
.isInstanceOf(IllegalArgumentException.class); | ||
} | ||
|
||
@TestTemplate | ||
void handle404() { | ||
assumeThat(specMilestone).isGreaterThan(PHASE0); | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_NOT_FOUND)); | ||
assertThat(request.submit(slot, subcommitteeIndex, root)).isEmpty(); | ||
} | ||
|
||
@TestTemplate | ||
void handle500() { | ||
assumeThat(specMilestone).isGreaterThan(PHASE0); | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_INTERNAL_SERVER_ERROR)); | ||
assertThatThrownBy(() -> request.submit(slot, subcommitteeIndex, root)) | ||
.isInstanceOf(RemoteServiceNotAvailableException.class); | ||
} | ||
} |
133 changes: 133 additions & 0 deletions
133
...va/tech/pegasys/teku/validator/remote/typedef/handlers/GetStateValidatorsRequestTest.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,133 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2024 | ||
* | ||
* 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 tech.pegasys.teku.validator.remote.typedef.handlers; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.assertj.core.api.Assertions.assertThatThrownBy; | ||
import static org.assertj.core.api.Assumptions.assumeThat; | ||
import static tech.pegasys.teku.ethereum.json.types.beacon.StateValidatorDataBuilder.STATE_VALIDATORS_RESPONSE_TYPE; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_BAD_REQUEST; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_INTERNAL_SERVER_ERROR; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_NOT_FOUND; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_NO_CONTENT; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_OK; | ||
import static tech.pegasys.teku.infrastructure.http.RestApiConstants.PARAM_ID; | ||
import static tech.pegasys.teku.infrastructure.json.JsonUtil.serialize; | ||
import static tech.pegasys.teku.spec.SpecMilestone.PHASE0; | ||
import static tech.pegasys.teku.spec.config.SpecConfig.FAR_FUTURE_EPOCH; | ||
|
||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Optional; | ||
import okhttp3.mockwebserver.MockResponse; | ||
import okhttp3.mockwebserver.RecordedRequest; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.TestTemplate; | ||
import tech.pegasys.teku.api.exceptions.RemoteServiceNotAvailableException; | ||
import tech.pegasys.teku.api.response.v1.beacon.ValidatorStatus; | ||
import tech.pegasys.teku.ethereum.json.types.beacon.StateValidatorData; | ||
import tech.pegasys.teku.infrastructure.unsigned.UInt64; | ||
import tech.pegasys.teku.spec.TestSpecContext; | ||
import tech.pegasys.teku.spec.datastructures.metadata.ObjectAndMetaData; | ||
import tech.pegasys.teku.spec.datastructures.state.Validator; | ||
import tech.pegasys.teku.spec.networks.Eth2Network; | ||
import tech.pegasys.teku.validator.remote.apiclient.ValidatorApiMethod; | ||
import tech.pegasys.teku.validator.remote.typedef.AbstractTypeDefRequestTestBase; | ||
|
||
@TestSpecContext(allMilestones = true, network = Eth2Network.MINIMAL) | ||
public class GetStateValidatorsRequestTest extends AbstractTypeDefRequestTestBase { | ||
|
||
private GetStateValidatorsRequest request; | ||
private List<String> validatorIds; | ||
|
||
@BeforeEach | ||
public void setup() { | ||
request = new GetStateValidatorsRequest(mockWebServer.url("/"), okHttpClient); | ||
validatorIds = | ||
List.of( | ||
dataStructureUtil.randomPublicKey().toHexString(), | ||
dataStructureUtil.randomPublicKey().toHexString()); | ||
} | ||
|
||
@TestTemplate | ||
public void getStateValidatorsRequest_makesExpectedRequest() throws Exception { | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_NO_CONTENT)); | ||
request.submit(validatorIds); | ||
final RecordedRequest request = mockWebServer.takeRequest(); | ||
assertThat(request.getMethod()).isEqualTo("GET"); | ||
assertThat(request.getPath()) | ||
.contains(ValidatorApiMethod.GET_VALIDATORS.getPath(Collections.emptyMap())); | ||
assertThat(request.getRequestUrl().queryParameter(PARAM_ID)) | ||
.isEqualTo(String.join(",", validatorIds)); | ||
} | ||
|
||
@TestTemplate | ||
public void shouldGetStateValidatorsData() throws JsonProcessingException { | ||
final List<StateValidatorData> expected = | ||
List.of(generateStateValidatorData(), generateStateValidatorData()); | ||
final ObjectAndMetaData<List<StateValidatorData>> response = | ||
new ObjectAndMetaData<>(expected, specMilestone, false, true, false); | ||
|
||
final String body = serialize(response, STATE_VALIDATORS_RESPONSE_TYPE); | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_OK).setBody(body)); | ||
|
||
final Optional<ObjectAndMetaData<List<StateValidatorData>>> maybeStateValidatorsData = | ||
request.submit(validatorIds); | ||
assertThat(maybeStateValidatorsData).isPresent(); | ||
assertThat(maybeStateValidatorsData.get().getData()).isEqualTo(expected); | ||
} | ||
|
||
@TestTemplate | ||
void handle400() { | ||
assumeThat(specMilestone).isGreaterThan(PHASE0); | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_BAD_REQUEST)); | ||
assertThatThrownBy(() -> request.submit(validatorIds)) | ||
.isInstanceOf(IllegalArgumentException.class); | ||
} | ||
|
||
@TestTemplate | ||
void handle404() { | ||
assumeThat(specMilestone).isGreaterThan(PHASE0); | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_NOT_FOUND)); | ||
assertThat(request.submit(validatorIds)).isEmpty(); | ||
} | ||
|
||
@TestTemplate | ||
void handle500() { | ||
assumeThat(specMilestone).isGreaterThan(PHASE0); | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_INTERNAL_SERVER_ERROR)); | ||
assertThatThrownBy(() -> request.submit(validatorIds)) | ||
.isInstanceOf(RemoteServiceNotAvailableException.class); | ||
} | ||
|
||
private StateValidatorData generateStateValidatorData() { | ||
final long index = dataStructureUtil.randomLong(); | ||
final Validator validator = | ||
new Validator( | ||
dataStructureUtil.randomPublicKey(), | ||
dataStructureUtil.randomBytes32(), | ||
dataStructureUtil.randomUInt64(), | ||
false, | ||
UInt64.ZERO, | ||
UInt64.ZERO, | ||
FAR_FUTURE_EPOCH, | ||
FAR_FUTURE_EPOCH); | ||
return new StateValidatorData( | ||
UInt64.valueOf(index), | ||
dataStructureUtil.randomUInt64(), | ||
ValidatorStatus.active_ongoing, | ||
validator); | ||
} | ||
} |
91 changes: 91 additions & 0 deletions
91
...va/tech/pegasys/teku/validator/remote/typedef/handlers/PostAttesterDutiesRequestTest.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,91 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2024 | ||
* | ||
* 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 tech.pegasys.teku.validator.remote.typedef.handlers; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.assertj.core.api.Assertions.assertThatThrownBy; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_BAD_REQUEST; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_INTERNAL_SERVER_ERROR; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_NOT_FOUND; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_NO_CONTENT; | ||
import static tech.pegasys.teku.infrastructure.json.types.CoreTypes.INTEGER_TYPE; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
import okhttp3.mockwebserver.MockResponse; | ||
import okhttp3.mockwebserver.RecordedRequest; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.TestTemplate; | ||
import tech.pegasys.teku.api.exceptions.RemoteServiceNotAvailableException; | ||
import tech.pegasys.teku.infrastructure.http.RestApiConstants; | ||
import tech.pegasys.teku.infrastructure.json.JsonUtil; | ||
import tech.pegasys.teku.infrastructure.json.types.DeserializableTypeDefinition; | ||
import tech.pegasys.teku.infrastructure.unsigned.UInt64; | ||
import tech.pegasys.teku.spec.TestSpecContext; | ||
import tech.pegasys.teku.spec.networks.Eth2Network; | ||
import tech.pegasys.teku.validator.remote.apiclient.ValidatorApiMethod; | ||
import tech.pegasys.teku.validator.remote.typedef.AbstractTypeDefRequestTestBase; | ||
|
||
@TestSpecContext(allMilestones = true, network = Eth2Network.MINIMAL) | ||
public class PostAttesterDutiesRequestTest extends AbstractTypeDefRequestTestBase { | ||
|
||
private PostAttesterDutiesRequest request; | ||
private UInt64 epoch; | ||
private List<Integer> validatorIndices; | ||
|
||
@BeforeEach | ||
public void setup() { | ||
request = new PostAttesterDutiesRequest(mockWebServer.url("/"), okHttpClient); | ||
epoch = dataStructureUtil.randomEpoch(); | ||
validatorIndices = | ||
List.of( | ||
dataStructureUtil.randomValidatorIndex().intValue(), | ||
dataStructureUtil.randomValidatorIndex().intValue()); | ||
} | ||
|
||
@TestTemplate | ||
public void postAttesterDuties_makesExpectedRequest() throws Exception { | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_NO_CONTENT)); | ||
request.submit(epoch, validatorIndices); | ||
final RecordedRequest request = mockWebServer.takeRequest(); | ||
assertThat(request.getMethod()).isEqualTo("POST"); | ||
assertThat(request.getPath()) | ||
.contains( | ||
ValidatorApiMethod.GET_ATTESTATION_DUTIES.getPath( | ||
Map.of(RestApiConstants.EPOCH, epoch.toString()))); | ||
final String requestBody = | ||
JsonUtil.serialize(validatorIndices, DeserializableTypeDefinition.listOf(INTEGER_TYPE)); | ||
assertThat(request.getBody().readUtf8()).isEqualTo(requestBody); | ||
} | ||
|
||
@TestTemplate | ||
void handle400() { | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_BAD_REQUEST)); | ||
assertThatThrownBy(() -> request.submit(epoch, validatorIndices)) | ||
.isInstanceOf(IllegalArgumentException.class); | ||
} | ||
|
||
@TestTemplate | ||
void handle404() { | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_NOT_FOUND)); | ||
assertThat(request.submit(epoch, validatorIndices)).isEmpty(); | ||
} | ||
|
||
@TestTemplate | ||
void handle500() { | ||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_INTERNAL_SERVER_ERROR)); | ||
assertThatThrownBy(() -> request.submit(epoch, validatorIndices)) | ||
.isInstanceOf(RemoteServiceNotAvailableException.class); | ||
} | ||
} |
Oops, something went wrong.