-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add missing automation logic and filter more solcover
- Loading branch information
Showing
3 changed files
with
84 additions
and
0 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
60 changes: 60 additions & 0 deletions
60
contracts/src/v0.8/automation/testhelpers/UpkeepAutoFunder.sol
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,60 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
import {AutomationCompatible} from "../AutomationCompatible.sol"; | ||
import {LinkTokenInterface} from "../../shared/interfaces/LinkTokenInterface.sol"; | ||
import {ConfirmedOwner} from "../../shared/access/ConfirmedOwner.sol"; | ||
import {AutomationRegistryBaseInterface} from "../interfaces/v2_0/AutomationRegistryInterface2_0.sol"; | ||
|
||
contract UpkeepAutoFunder is AutomationCompatible, ConfirmedOwner { | ||
bool public s_isEligible; | ||
bool public s_shouldCancel; | ||
uint256 public s_upkeepId; | ||
uint96 public s_autoFundLink; | ||
LinkTokenInterface public immutable LINK; | ||
AutomationRegistryBaseInterface public immutable s_keeperRegistry; | ||
|
||
constructor(address linkAddress, address registryAddress) ConfirmedOwner(msg.sender) { | ||
LINK = LinkTokenInterface(linkAddress); | ||
s_keeperRegistry = AutomationRegistryBaseInterface(registryAddress); | ||
|
||
s_isEligible = false; | ||
s_shouldCancel = false; | ||
s_upkeepId = 0; | ||
s_autoFundLink = 0; | ||
} | ||
|
||
function setShouldCancel(bool value) external onlyOwner { | ||
s_shouldCancel = value; | ||
} | ||
|
||
function setIsEligible(bool value) external onlyOwner { | ||
s_isEligible = value; | ||
} | ||
|
||
function setAutoFundLink(uint96 value) external onlyOwner { | ||
s_autoFundLink = value; | ||
} | ||
|
||
function setUpkeepId(uint256 value) external onlyOwner { | ||
s_upkeepId = value; | ||
} | ||
|
||
function checkUpkeep( | ||
bytes calldata data | ||
) external override cannotExecute returns (bool callable, bytes calldata executedata) { | ||
return (s_isEligible, data); | ||
} | ||
|
||
function performUpkeep(bytes calldata data) external override { | ||
require(s_isEligible, "Upkeep should be eligible"); | ||
s_isEligible = false; // Allow upkeep only once until it is set again | ||
|
||
// Topup upkeep so it can be called again | ||
LINK.transferAndCall(address(s_keeperRegistry), s_autoFundLink, abi.encode(s_upkeepId)); | ||
|
||
if (s_shouldCancel) { | ||
s_keeperRegistry.cancelUpkeep(s_upkeepId); | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
contracts/src/v0.8/automation/testhelpers/UpkeepReverter.sol
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,17 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
import {AutomationCompatible} from "../AutomationCompatible.sol"; | ||
|
||
contract UpkeepReverter is AutomationCompatible { | ||
function checkUpkeep( | ||
bytes calldata data | ||
) public view override cannotExecute returns (bool callable, bytes calldata executedata) { | ||
require(false, "!working"); | ||
return (true, data); | ||
} | ||
|
||
function performUpkeep(bytes calldata) external pure override { | ||
require(false, "!working"); | ||
} | ||
} |