mirror of https://github.com/hyperledger/besu
add sync condition for privacy tests (#6479)
* add sync condition for privacy tests Signed-off-by: George Tebrean <george@web3labs.com> * headers Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com> * revert configs Signed-off-by: George Tebrean <george@web3labs.com> --------- Signed-off-by: George Tebrean <george@web3labs.com> Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com> Co-authored-by: George Tebrean <george@web3labs.com>pull/6504/head
parent
497faef833
commit
1537e961ad
@ -0,0 +1,40 @@ |
|||||||
|
/* |
||||||
|
* Copyright Hyperledger Besu Contributors. |
||||||
|
* |
||||||
|
* 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. |
||||||
|
* |
||||||
|
* SPDX-License-Identifier: Apache-2.0 |
||||||
|
*/ |
||||||
|
package org.hyperledger.besu.tests.acceptance.dsl.condition.priv; |
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
|
||||||
|
import org.hyperledger.besu.tests.acceptance.dsl.WaitUtils; |
||||||
|
import org.hyperledger.besu.tests.acceptance.dsl.privacy.PrivacyNode; |
||||||
|
import org.hyperledger.besu.tests.acceptance.dsl.privacy.condition.PrivateCondition; |
||||||
|
import org.hyperledger.besu.tests.acceptance.dsl.transaction.privacy.PrivSyncingTransactions; |
||||||
|
|
||||||
|
public class PrivateSyncingStatusCondition implements PrivateCondition { |
||||||
|
|
||||||
|
private final PrivSyncingTransactions transaction; |
||||||
|
private final boolean syncingMiningStatus; |
||||||
|
|
||||||
|
public PrivateSyncingStatusCondition( |
||||||
|
final PrivSyncingTransactions transaction, final boolean syncingStatus) { |
||||||
|
this.transaction = transaction; |
||||||
|
this.syncingMiningStatus = syncingStatus; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void verify(final PrivacyNode node) { |
||||||
|
WaitUtils.waitFor( |
||||||
|
10, () -> assertThat(node.execute(transaction)).isEqualTo(syncingMiningStatus)); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,40 @@ |
|||||||
|
/* |
||||||
|
* Copyright Hyperledger Besu Contributors. |
||||||
|
* |
||||||
|
* 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. |
||||||
|
* |
||||||
|
* SPDX-License-Identifier: Apache-2.0 |
||||||
|
*/ |
||||||
|
package org.hyperledger.besu.tests.acceptance.dsl.transaction.privacy; |
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
|
||||||
|
import org.hyperledger.besu.tests.acceptance.dsl.transaction.NodeRequests; |
||||||
|
import org.hyperledger.besu.tests.acceptance.dsl.transaction.Transaction; |
||||||
|
|
||||||
|
import java.io.IOException; |
||||||
|
|
||||||
|
import org.web3j.protocol.core.methods.response.EthSyncing; |
||||||
|
|
||||||
|
public class PrivSyncingTransactions implements Transaction<Boolean> { |
||||||
|
|
||||||
|
PrivSyncingTransactions() {} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Boolean execute(final NodeRequests node) { |
||||||
|
try { |
||||||
|
EthSyncing response = node.eth().ethSyncing().send(); |
||||||
|
assertThat(response).isNotNull(); |
||||||
|
return response.isSyncing(); |
||||||
|
} catch (final IOException e) { |
||||||
|
throw new RuntimeException(e); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue