-
Notifications
You must be signed in to change notification settings - Fork 64
[Tests][Exchange] Add polymarket tests #1314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,182 @@ | ||
| # Drakkar-Software OctoBot-Trading | ||
| # Copyright (c) Drakkar-Software, All rights reserved. | ||
| # | ||
| # This library is free software; you can redistribute it and/or | ||
| # modify it under the terms of the GNU Lesser General Public | ||
| # License as published by the Free Software Foundation; either | ||
| # version 3.0 of the License, or (at your option) any later version. | ||
| # | ||
| # This library is distributed in the hope that it will be useful, | ||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| # Lesser General Public License for more details. | ||
| # | ||
| # You should have received a copy of the GNU Lesser General Public | ||
| # License along with this library. | ||
| import pytest | ||
|
|
||
| from octobot_commons.enums import TimeFrames, PriceIndexes | ||
| from octobot_trading.enums import ExchangeConstantsMarketStatusColumns as Ecmsc, \ | ||
| ExchangeConstantsOrderBookInfoColumns as Ecobic, ExchangeConstantsOrderColumns as Ecoc, \ | ||
| ExchangeConstantsTickersColumns as Ectc | ||
| from tests_additional.real_exchanges.real_exchange_tester import RealExchangeTester | ||
| import octobot_trading.enums as trading_enums | ||
| # required to catch async loop context exceptions | ||
| from tests import event_loop | ||
|
|
||
| try: | ||
| import tentacles.Trading.Exchange.polymarket.ccxt.polymarket_async | ||
| except ImportError: | ||
| pytest.skip( | ||
| reason=( | ||
| "Polymarket tentacle is not installed, skipping TestPolymarketRealExchangeTester" | ||
| ) | ||
| ) | ||
|
|
||
| # All test coroutines will be treated as marked. | ||
| pytestmark = pytest.mark.asyncio | ||
|
|
||
|
|
||
| class TestPolymarketRealExchangeTester(RealExchangeTester): | ||
| EXCHANGE_NAME = "polymarket" | ||
| SYMBOL = "will-bitcoin-replace-sha-256-before-2027/USDC" | ||
| SYMBOL_2 = "will-the-us-confirm-that-aliens-exist-before-2027/USDC" | ||
| SYMBOL_3 = "10pt0-or-above-earthquake-before-2027/USDC" | ||
| TIME_FRAME = TimeFrames.ONE_MINUTE | ||
| MARKET_STATUS_TYPE = trading_enums.ExchangeTypes.OPTION.value | ||
|
|
||
| async def test_time_frames(self): | ||
| time_frames = await self.time_frames() | ||
| assert all(time_frame in time_frames for time_frame in ( | ||
| TimeFrames.ONE_MINUTE.value, | ||
| TimeFrames.ONE_HOUR.value, | ||
| TimeFrames.SIX_HOURS.value, | ||
| TimeFrames.ONE_DAY.value, | ||
| TimeFrames.ONE_WEEK.value, | ||
| )) | ||
|
|
||
| async def test_active_symbols(self): | ||
| await self.inner_test_active_symbols(18412, 18412) | ||
|
|
||
| async def test_get_market_status(self): | ||
| for market_status in await self.get_market_statuses(): | ||
| self.ensure_required_market_status_values(market_status) | ||
| self.check_market_status_limits(market_status, has_price_limits=True) | ||
|
|
||
| async def test_get_symbol_prices(self): | ||
| # without limit | ||
| symbol_prices = await self.get_symbol_prices() | ||
| assert len(symbol_prices) >= 1000 | ||
| # check candles order (oldest first) | ||
| self.ensure_elements_order(symbol_prices, PriceIndexes.IND_PRICE_TIME.value) | ||
| # check last candle is the current candle | ||
| assert symbol_prices[-1][PriceIndexes.IND_PRICE_TIME.value] >= self.get_time() - self.get_allowed_time_delta() | ||
|
|
||
| # try with candles limit (used in candled updater) | ||
| symbol_prices = await self.get_symbol_prices(limit=200) | ||
| assert len(symbol_prices) == 200 | ||
| # check candles order (oldest first) | ||
| self.ensure_elements_order(symbol_prices, PriceIndexes.IND_PRICE_TIME.value) | ||
| # check last candle is the current candle | ||
| assert symbol_prices[-1][PriceIndexes.IND_PRICE_TIME.value] >= self.get_time() - self.get_allowed_time_delta() | ||
|
|
||
| async def test_get_historical_symbol_prices(self): | ||
| # try with since and limit (used in data collector) | ||
| for limit in (50, None): | ||
| symbol_prices = await self.get_symbol_prices(since=self.CANDLE_SINCE, limit=limit) | ||
| if limit: | ||
| assert len(symbol_prices) == limit | ||
| else: | ||
| assert len(symbol_prices) > 5 | ||
| # check candles order (oldest first) | ||
| self.ensure_elements_order(symbol_prices, PriceIndexes.IND_PRICE_TIME.value) | ||
| # check that fetched candles are historical candles | ||
| max_candle_time = self.get_time_after_time_frames(self.CANDLE_SINCE_SEC, len(symbol_prices)) | ||
| assert max_candle_time <= self.get_time() | ||
| with pytest.raises(AssertionError): # not supported | ||
| for candle in symbol_prices: | ||
| assert self.CANDLE_SINCE_SEC <= candle[PriceIndexes.IND_PRICE_TIME.value] <= max_candle_time | ||
|
|
||
| async def test_get_historical_ohlcv(self): | ||
| await super().test_get_historical_ohlcv() | ||
|
|
||
| async def test_get_kline_price(self): | ||
| kline_price = await self.get_kline_price() | ||
| assert len(kline_price) == 1 | ||
| assert len(kline_price[0]) == 6 | ||
| kline_start_time = kline_price[0][PriceIndexes.IND_PRICE_TIME.value] | ||
| # assert kline is the current candle | ||
| assert kline_start_time >= self.get_time() - self.get_allowed_time_delta() | ||
|
|
||
| async def test_get_order_book(self): | ||
| order_book = await self.get_order_book() | ||
| assert 0 < order_book[Ecobic.TIMESTAMP.value] < self._get_ref_order_book_timestamp() | ||
| assert len(order_book[Ecobic.ASKS.value]) >= 5 | ||
| assert len(order_book[Ecobic.ASKS.value][0]) == 2 | ||
| assert len(order_book[Ecobic.BIDS.value]) >= 5 | ||
| assert len(order_book[Ecobic.BIDS.value][0]) == 2 | ||
|
|
||
| async def test_get_order_books(self): | ||
| await self.inner_test_get_order_books( | ||
| True, | ||
| 1000, # asked symbols | ||
| 100, # up to 100 orders | ||
| 0, # from 0 orders | ||
| False, | ||
| None, | ||
| 0, | ||
| False | ||
| ) | ||
|
|
||
| async def test_get_recent_trades(self): | ||
| recent_trades = await self.get_recent_trades() | ||
| assert len(recent_trades) == 50 | ||
| # check trades order (oldest first) | ||
| self.ensure_elements_order(recent_trades, Ecoc.TIMESTAMP.value) | ||
|
|
||
| async def test_get_price_ticker(self): | ||
| ticker = await self.get_price_ticker() | ||
| self._check_ticker(ticker, self.SYMBOL, check_content=True) | ||
|
|
||
| async def test_get_all_currencies_price_ticker(self): | ||
| tickers = await self.get_all_currencies_price_ticker() | ||
| for symbol, ticker in tickers.items(): | ||
| self._check_ticker(ticker, symbol) | ||
|
|
||
| @staticmethod | ||
| def _check_ticker(ticker, symbol, check_content=False): | ||
| assert ticker[Ectc.SYMBOL.value] == symbol | ||
| assert all(key in ticker for key in ( | ||
| Ectc.HIGH.value, | ||
| Ectc.LOW.value, | ||
| Ectc.BID.value, | ||
| Ectc.BID_VOLUME.value, | ||
| Ectc.ASK.value, | ||
| Ectc.ASK_VOLUME.value, | ||
| Ectc.OPEN.value, | ||
| Ectc.CLOSE.value, | ||
| Ectc.LAST.value, | ||
| Ectc.PREVIOUS_CLOSE.value | ||
| )) | ||
| if check_content: | ||
| assert ticker[Ectc.HIGH.value] is None | ||
| assert ticker[Ectc.LOW.value] is None | ||
| assert ticker[Ectc.BID.value] | ||
| assert ticker[Ectc.BID_VOLUME.value] is None | ||
| assert ticker[Ectc.ASK.value] | ||
| assert ticker[Ectc.ASK_VOLUME.value] is None | ||
| assert ticker[Ectc.OPEN.value] is None | ||
| assert ticker[Ectc.CLOSE.value] | ||
| assert ticker[Ectc.LAST.value] | ||
| assert ticker[Ectc.PREVIOUS_CLOSE.value] is None | ||
| assert ticker[Ectc.BASE_VOLUME.value] | ||
| assert ticker[Ectc.TIMESTAMP.value] | ||
| RealExchangeTester.check_ticker_typing( | ||
| ticker, | ||
| check_open=False, | ||
| check_high=False, | ||
| check_low=False, | ||
| check_close=True, | ||
| check_base_volume=True, | ||
| check_timestamp=True | ||
| ) | ||
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍