From 96199c008c5a1d5c6386f8ab81bc82b8435bef3c Mon Sep 17 00:00:00 2001 From: Jack Nelson Date: Thu, 7 Jul 2022 16:42:18 -0400 Subject: [PATCH] speed up pool rpc tests (#12279) * Optimize test_pool_rpc.py * make code readable --- tests/pools/test_pool_rpc.py | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/tests/pools/test_pool_rpc.py b/tests/pools/test_pool_rpc.py index 9c022ea20cca2..7029f9a0c307b 100644 --- a/tests/pools/test_pool_rpc.py +++ b/tests/pools/test_pool_rpc.py @@ -66,10 +66,9 @@ class TemporaryPoolPlot: async def __aenter__(self): self._tmpdir = tempfile.TemporaryDirectory() - dirname = self._tmpdir.__enter__() - tmp_path: Path = Path(dirname) + tmp_path: Path = Path(self._tmpdir.name) self.bt.add_plot_directory(tmp_path) - plot_id: bytes32 = await self.bt.new_plot(self.p2_singleton_puzzle_hash, Path(dirname), tmp_dir=tmp_path) + plot_id: bytes32 = await self.bt.new_plot(self.p2_singleton_puzzle_hash, tmp_path, tmp_dir=tmp_path) assert plot_id is not None await self.bt.refresh_plots() self.plot_id = plot_id @@ -77,7 +76,7 @@ class TemporaryPoolPlot: async def __aexit__(self, exc_type, exc_value, exc_traceback): await self.bt.delete_plot(self.plot_id) - self._tmpdir.__exit__(None, None, None) + self._tmpdir.cleanup() async def wallet_is_synced(wallet_node: WalletNode, full_node_api) -> bool: @@ -125,9 +124,10 @@ async def one_wallet_node_and_rpc(bt, self_hostname) -> AsyncGenerator[Tuple[Wal @pytest_asyncio.fixture(scope="function") -async def setup(two_wallet_nodes, bt, self_hostname): +async def setup(two_wallet_nodes, self_hostname): rmtree(get_pool_plot_dir(), ignore_errors=True) full_nodes, wallets = two_wallet_nodes + bt = full_nodes[0].bt wallet_node_0, wallet_server_0 = wallets[0] wallet_node_1, wallet_server_1 = wallets[1] our_ph_record = await wallet_node_0.wallet_state_manager.get_unused_derivation_record(1, False, True) @@ -432,9 +432,10 @@ class TestPoolWalletRpc: @pytest.mark.asyncio @pytest.mark.parametrize("trusted_and_fee", [(True, FEE_AMOUNT), (False, 0)]) - async def test_absorb_self(self, one_wallet_node_and_rpc, trusted_and_fee, bt, self_hostname): + async def test_absorb_self(self, one_wallet_node_and_rpc, trusted_and_fee, self_hostname): trusted, fee = trusted_and_fee client, wallet_node_0, full_node_api = one_wallet_node_and_rpc + bt = full_node_api.bt if trusted: wallet_node_0.config["trusted_peers"] = { full_node_api.full_node.server.node_id.hex(): full_node_api.full_node.server.node_id.hex() @@ -545,9 +546,10 @@ class TestPoolWalletRpc: @pytest.mark.asyncio @pytest.mark.parametrize("trusted_and_fee", [(True, FEE_AMOUNT * 2)]) - async def test_absorb_self_multiple_coins(self, one_wallet_node_and_rpc, trusted_and_fee, bt, self_hostname): + async def test_absorb_self_multiple_coins(self, one_wallet_node_and_rpc, trusted_and_fee, self_hostname): trusted, fee = trusted_and_fee client, wallet_node_0, full_node_api = one_wallet_node_and_rpc + bt = full_node_api.bt if trusted: wallet_node_0.config["trusted_peers"] = { full_node_api.full_node.server.node_id.hex(): full_node_api.full_node.server.node_id.hex() @@ -634,9 +636,10 @@ class TestPoolWalletRpc: @pytest.mark.asyncio @pytest.mark.parametrize("trusted_and_fee", [(True, FEE_AMOUNT), (False, 0)]) - async def test_absorb_pooling(self, one_wallet_node_and_rpc, trusted_and_fee, bt, self_hostname): + async def test_absorb_pooling(self, one_wallet_node_and_rpc, trusted_and_fee, self_hostname): trusted, fee = trusted_and_fee client, wallet_node_0, full_node_api = one_wallet_node_and_rpc + bt = full_node_api.bt if trusted: wallet_node_0.config["trusted_peers"] = { full_node_api.full_node.server.node_id.hex(): full_node_api.full_node.server.node_id.hex() @@ -1127,7 +1130,7 @@ class TestPoolWalletRpc: @pytest.mark.asyncio @pytest.mark.parametrize("trusted_and_fee", [(True, FEE_AMOUNT), (False, 0)]) - async def test_change_pools_reorg(self, setup, trusted_and_fee, bt, self_hostname): + async def test_change_pools_reorg(self, setup, trusted_and_fee, self_hostname): """This tests Pool A -> escaping -> reorg -> escaping -> Pool B""" trusted, fee = trusted_and_fee full_nodes, wallet_nodes, receive_address, client, rpc_cleanup = setup