-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor create aggregate attestation request (#8496)
* refactor create aggregate attestation request * refactor
- Loading branch information
1 parent
f5150b1
commit 7455d50
Showing
17 changed files
with
180 additions
and
70 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
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
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
84 changes: 84 additions & 0 deletions
84
...pegasys/teku/validator/remote/typedef/handlers/CreateAggregateAttestationRequestTest.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,84 @@ | ||
/* | ||
* 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 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.ATTESTATION_DATA_ROOT; | ||
import static tech.pegasys.teku.infrastructure.http.RestApiConstants.SLOT; | ||
|
||
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.infrastructure.unsigned.UInt64; | ||
import tech.pegasys.teku.spec.SpecMilestone; | ||
import tech.pegasys.teku.spec.TestSpecContext; | ||
import tech.pegasys.teku.spec.datastructures.operations.Attestation; | ||
import tech.pegasys.teku.spec.networks.Eth2Network; | ||
import tech.pegasys.teku.validator.remote.apiclient.ValidatorApiMethod; | ||
import tech.pegasys.teku.validator.remote.typedef.AbstractTypeDefRequestTestBase; | ||
|
||
@TestSpecContext(milestone = SpecMilestone.PHASE0, network = Eth2Network.MINIMAL) | ||
public class CreateAggregateAttestationRequestTest extends AbstractTypeDefRequestTestBase { | ||
|
||
private CreateAggregateAttestationRequest createAggregateAttestationRequest; | ||
private final UInt64 slot = UInt64.ONE; | ||
|
||
@BeforeEach | ||
void setupRequest() { | ||
createAggregateAttestationRequest = | ||
new CreateAggregateAttestationRequest(mockWebServer.url("/"), okHttpClient, slot, spec); | ||
} | ||
|
||
@TestTemplate | ||
public void getAggregateAttestation_makesExpectedRequest() throws Exception { | ||
final Bytes32 attestationHashTreeRoot = dataStructureUtil.randomBytes32(); | ||
|
||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_NO_CONTENT)); | ||
|
||
createAggregateAttestationRequest.createAggregate(attestationHashTreeRoot); | ||
|
||
final RecordedRequest request = mockWebServer.takeRequest(); | ||
assertThat(request.getMethod()).isEqualTo("GET"); | ||
assertThat(request.getPath()) | ||
.contains(ValidatorApiMethod.GET_AGGREGATE.getPath(Collections.emptyMap())); | ||
assertThat(request.getRequestUrl().queryParameter(SLOT)).isEqualTo(slot.toString()); | ||
assertThat(request.getRequestUrl().queryParameter(ATTESTATION_DATA_ROOT)) | ||
.isEqualTo(attestationHashTreeRoot.toHexString()); | ||
} | ||
|
||
@TestTemplate | ||
public void shouldGetAggregateAttestation() { | ||
final Attestation attestation = dataStructureUtil.randomAttestation(); | ||
final CreateAggregateAttestationRequest.GetAggregateAttestationResponse | ||
getAggregateAttestationResponse = | ||
new CreateAggregateAttestationRequest.GetAggregateAttestationResponse(attestation); | ||
final String mockResponse = | ||
readResource( | ||
"responses/create_aggregate_attestation_responses/createAggregateAttestationResponse.json"); | ||
|
||
mockWebServer.enqueue(new MockResponse().setResponseCode(SC_OK).setBody(mockResponse)); | ||
|
||
final Optional<Attestation> maybeAttestation = | ||
createAggregateAttestationRequest.createAggregate(attestation.hashTreeRoot()); | ||
|
||
assertThat(maybeAttestation).isPresent(); | ||
assertThat(maybeAttestation.get()).isEqualTo(getAggregateAttestationResponse.getData()); | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
.../responses/create_aggregate_attestation_responses/createAggregateAttestationResponse.json
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,19 @@ | ||
{ | ||
"data": { | ||
"aggregation_bits": "0x4a9278690f62e1a353f1abf2b9701e13e8cdf4d9ac6b032ba43b05b25f713540ce24f3192819e752fb091217ff34b68e934a06d316b6060696f8f24749574c4b3ac2e4ccb6914c434b09a81fff523e12acbe299fcdad715593298d72ca70e1ffc743ad7ce89587fbb4b4c57db7856b7082db70ebddcbebe264f886236df2dd51539e10d4dcd5950e6cea7c993d3e999a5589a4c71669ffb1390987e43a8c4790a70275364f96cbee34b0b5a9d1b3da4322ad12e07c81c6e6430d2528f19bb1727c3f63f414885bd97505283b0bb6773712096d5feb67c43d67f2fbf17bf796ed5080aece6b968d532d985ad2553daf31ad4022aa49d7a92ada719c9f93ab4b6f01", | ||
"data": { | ||
"slot": "4665021361504678828", | ||
"index": "4669978815449698508", | ||
"beacon_block_root": "0x103ac9406cdc59b89027eb1c9e97f607dd5fdccfa8fb2da4eaeea9d25032add9", | ||
"source": { | ||
"epoch": "542502839", | ||
"root": "0x8200a6402ca295554fb9562193cc71d60272d63beeaf2201fdf53e846e77f919" | ||
}, | ||
"target": { | ||
"epoch": "542887588", | ||
"root": "0x5cbeb140ec0ad7cb653388caecba483cf66bd817821ed18ca1f3b7f3b9b58a04" | ||
} | ||
}, | ||
"signature": "0xae401f767ab1917f925fe299ad51a57d52f7cc80deb1cc20fa2b3aa983e4e4d23056d79f01f3c97e29c8905da17e70e30c2a3f6bdd83dbc4ddf530e02e8f4d7ba22260e12e5f5fe7875b48e79660615b275597e87b2d33e076664b3da1737852" | ||
} | ||
} |
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
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
Oops, something went wrong.