generated from ApeWorX/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62fc71e
commit afc700b
Showing
5 changed files
with
100 additions
and
101 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
from pathlib import Path | ||
|
||
import pytest | ||
from ape.api import EcosystemAPI, NetworkAPI, TransactionAPI | ||
from ape.api.config import PluginConfig | ||
from requests import HTTPError, Response | ||
from web3 import Web3 | ||
|
||
from ape_alchemy.providers import AlchemyEthereumProvider | ||
|
||
FEATURE_NOT_AVAILABLE_BECAUSE_OF_TIER_RESPONSE = ( | ||
"trace_transaction is not available on the Free tier - " | ||
"upgrade to Growth or Enterprise for access. See available methods at " | ||
"https://docs.alchemy.com/alchemy/documentation/apis" | ||
) | ||
FEATURE_NOT_AVAILABLE_BECAUSE_OF_NETWORK_RESPONSE = ( | ||
"trace_transaction is not available on the ETH_RINKEBY. " | ||
"For more information see our docs: " | ||
"https://docs.alchemy.com/alchemy/documentation/apis/ethereum" | ||
) | ||
|
||
|
||
@pytest.fixture | ||
def missing_token(mocker): | ||
mock = mocker.patch("os.environ.get") | ||
mock.return_value = None | ||
return mock | ||
|
||
|
||
@pytest.fixture | ||
def token(mocker): | ||
mock = mocker.patch("os.environ.get") | ||
mock.return_value = "TEST_TOKEN" | ||
return mock | ||
|
||
|
||
@pytest.fixture | ||
def mock_network(mocker): | ||
mock = mocker.MagicMock(spec=NetworkAPI) | ||
mock.name = "MOCK_NETWORK" | ||
mock.ecosystem = mocker.MagicMock(spec=EcosystemAPI) | ||
mock.ecosystem.name = "ethereum" | ||
return mock | ||
|
||
|
||
@pytest.fixture | ||
def mock_config(mocker): | ||
return mocker.MagicMock(spec=PluginConfig) | ||
|
||
|
||
@pytest.fixture | ||
def mock_web3(mocker): | ||
mock = mocker.MagicMock(spec=Web3) | ||
mock.eth = mocker.MagicMock() | ||
mock.manager = mocker.MagicMock() | ||
return mock | ||
|
||
|
||
@pytest.fixture | ||
def mock_transaction(mocker): | ||
return mocker.MagicMock(spec=TransactionAPI) | ||
|
||
|
||
@pytest.fixture | ||
def txn_hash(): | ||
return "0x55d07ce5e3f4f5742f3318cf328d700e43ee8cdb46000f2ac731a9379fca8ea7" | ||
|
||
|
||
@pytest.fixture( | ||
params=( | ||
FEATURE_NOT_AVAILABLE_BECAUSE_OF_TIER_RESPONSE, | ||
FEATURE_NOT_AVAILABLE_BECAUSE_OF_NETWORK_RESPONSE, | ||
) | ||
) | ||
def feature_not_available_http_error(mocker, request): | ||
response = mocker.MagicMock(spec=Response) | ||
response.fixture_param = request.param # For assertions | ||
response.json.return_value = {"error": {"message": request.param}} | ||
error = HTTPError(response=response) | ||
return error | ||
|
||
|
||
@pytest.fixture | ||
def alchemy_provider(mock_network, mock_config) -> AlchemyEthereumProvider: | ||
return AlchemyEthereumProvider( | ||
name="alchemy", | ||
network=mock_network, | ||
config=mock_config, | ||
request_header={}, | ||
data_folder=Path("."), | ||
provider_settings={}, | ||
) |
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