-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Paul Harris <[email protected]>
- Loading branch information
Showing
2 changed files
with
129 additions
and
62 deletions.
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
...a/tech/pegasys/teku/beaconrestapi/v2/beacon/PostAttestationsV2ElectraIntegrationTest.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,78 @@ | ||
/* | ||
* 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.beaconrestapi.v2.beacon; | ||
|
||
import java.io.IOException; | ||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Optional; | ||
import okhttp3.Response; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import tech.pegasys.teku.beaconrestapi.handlers.v2.beacon.PostAttestationsV2; | ||
import tech.pegasys.teku.infrastructure.json.JsonUtil; | ||
import tech.pegasys.teku.infrastructure.json.types.SerializableTypeDefinition; | ||
import tech.pegasys.teku.spec.SpecMilestone; | ||
import tech.pegasys.teku.spec.TestSpecFactory; | ||
import tech.pegasys.teku.spec.datastructures.operations.Attestation; | ||
import tech.pegasys.teku.spec.datastructures.operations.SingleAttestation; | ||
import tech.pegasys.teku.spec.schemas.SchemaDefinitionsElectra; | ||
import tech.pegasys.teku.spec.util.DataStructureUtil; | ||
|
||
public class PostAttestationsV2ElectraIntegrationTest extends PostAttestationsV2IntegrationTest { | ||
protected SerializableTypeDefinition<List<SingleAttestation>> attestationsListTypeDef; | ||
|
||
@BeforeEach | ||
void setup() { | ||
spec = TestSpecFactory.createMinimalElectra(); | ||
specMilestone = SpecMilestone.ELECTRA; | ||
startRestAPIAtGenesis(specMilestone); | ||
dataStructureUtil = new DataStructureUtil(spec); | ||
attestationsListTypeDef = | ||
SerializableTypeDefinition.listOf( | ||
SchemaDefinitionsElectra.required(spec.getGenesisSchemaDefinitions()) | ||
.getSingleAttestationSchema() | ||
.getJsonTypeDefinition()); | ||
} | ||
|
||
@Override | ||
protected List<Attestation> getAttestationList(final int listSize) { | ||
final List<Attestation> attestations = new ArrayList<>(listSize); | ||
for (int i = 0; i < listSize; i++) { | ||
attestations.add(dataStructureUtil.randomSingleAttestation()); | ||
} | ||
return attestations; | ||
} | ||
|
||
@Override | ||
@SuppressWarnings("unchecked") | ||
protected Response postAttestations(final List<?> attestations, final String milestone) | ||
throws IOException { | ||
final SerializableTypeDefinition<List<SingleAttestation>> attestationsListTypeDef = | ||
SerializableTypeDefinition.listOf( | ||
SchemaDefinitionsElectra.required(spec.getGenesisSchemaDefinitions()) | ||
.getSingleAttestationSchema() | ||
.getJsonTypeDefinition()); | ||
if (milestone == null) { | ||
return post( | ||
PostAttestationsV2.ROUTE, | ||
JsonUtil.serialize((List<SingleAttestation>) attestations, attestationsListTypeDef)); | ||
} | ||
return post( | ||
PostAttestationsV2.ROUTE, | ||
JsonUtil.serialize((List<SingleAttestation>) attestations, attestationsListTypeDef), | ||
Collections.emptyMap(), | ||
Optional.of(milestone)); | ||
} | ||
} |
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