-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move current and previous epoch attestations to phase0 specific schem…
…a. (#3849)
- Loading branch information
Showing
11 changed files
with
212 additions
and
23 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
38 changes: 38 additions & 0 deletions
38
...java/tech/pegasys/teku/spec/logic/versions/phase0/helpers/BeaconStateAccessorsPhase0.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,38 @@ | ||
/* | ||
* Copyright 2021 ConsenSys AG. | ||
* | ||
* 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.spec.logic.versions.phase0.helpers; | ||
|
||
import tech.pegasys.teku.spec.config.SpecConfig; | ||
import tech.pegasys.teku.spec.datastructures.state.beaconstate.BeaconState; | ||
import tech.pegasys.teku.spec.datastructures.state.beaconstate.versions.phase0.BeaconStatePhase0; | ||
import tech.pegasys.teku.spec.logic.common.helpers.BeaconStateAccessors; | ||
import tech.pegasys.teku.spec.logic.common.helpers.MiscHelpers; | ||
import tech.pegasys.teku.spec.logic.common.helpers.Predicates; | ||
|
||
public class BeaconStateAccessorsPhase0 extends BeaconStateAccessors { | ||
public BeaconStateAccessorsPhase0( | ||
final SpecConfig config, final Predicates predicates, final MiscHelpers miscHelpers) { | ||
super(config, predicates, miscHelpers); | ||
} | ||
|
||
// Custom accessors | ||
@Override | ||
public int getPreviousEpochAttestationCapacity(final BeaconState genericState) { | ||
final BeaconStatePhase0 state = BeaconStatePhase0.required(genericState); | ||
final int absoluteMax = | ||
Math.toIntExact( | ||
state.getBeaconStateSchema().getPreviousEpochAttestationsSchema().getMaxLength()); | ||
return absoluteMax - state.getPrevious_epoch_attestations().size(); | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
...est/java/tech/pegasys/teku/spec/logic/versions/phase0/BeaconStateAccessorsPhase0Test.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,58 @@ | ||
/* | ||
* Copyright 2021 ConsenSys AG. | ||
* | ||
* 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.spec.logic.versions.phase0; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import tech.pegasys.teku.spec.Spec; | ||
import tech.pegasys.teku.spec.TestSpecFactory; | ||
import tech.pegasys.teku.spec.config.SpecConfig; | ||
import tech.pegasys.teku.spec.datastructures.state.beaconstate.BeaconState; | ||
import tech.pegasys.teku.spec.logic.common.helpers.BeaconStateAccessors; | ||
import tech.pegasys.teku.spec.util.DataStructureUtil; | ||
|
||
public class BeaconStateAccessorsPhase0Test { | ||
private final Spec spec = TestSpecFactory.createMinimalPhase0(); | ||
private final SpecConfig config = spec.getGenesisSpecConfig(); | ||
private final DataStructureUtil dataStructureUtil = new DataStructureUtil(spec); | ||
private final BeaconStateAccessors stateAccessors = spec.getGenesisSpec().beaconStateAccessors(); | ||
|
||
@Test | ||
public void getPreviousEpochAttestationCapacity_intermediateValue() { | ||
final int maxAttestations = config.getMaxAttestations() * config.getSlotsPerEpoch(); | ||
final int existingAttCount = maxAttestations / 2; | ||
final BeaconState state = dataStructureUtil.stateBuilderPhase0(5, existingAttCount).build(); | ||
|
||
assertThat(stateAccessors.getPreviousEpochAttestationCapacity(state)) | ||
.isEqualTo(maxAttestations - existingAttCount); | ||
} | ||
|
||
@Test | ||
public void getPreviousEpochAttestationCapacity_zero() { | ||
final int maxAttestations = config.getMaxAttestations() * config.getSlotsPerEpoch(); | ||
final BeaconState state = dataStructureUtil.stateBuilderPhase0(5, maxAttestations).build(); | ||
|
||
assertThat(stateAccessors.getPreviousEpochAttestationCapacity(state)).isEqualTo(0); | ||
} | ||
|
||
@Test | ||
public void getPreviousEpochAttestationCapacity_max() { | ||
final int maxAttestations = config.getMaxAttestations() * config.getSlotsPerEpoch(); | ||
final BeaconState state = dataStructureUtil.stateBuilderPhase0(5, 0).build(); | ||
|
||
assertThat(stateAccessors.getPreviousEpochAttestationCapacity(state)) | ||
.isEqualTo(maxAttestations); | ||
} | ||
} |
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