Skip to content

Commit

Permalink
fixup! [IMP] test_pos2023: добавили еще более реалистичный вариант те…
Browse files Browse the repository at this point in the history
…ста test_late_session_close
  • Loading branch information
em230418 committed Mar 9, 2024
1 parent c62c45c commit 9f614e3
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions test_pos2023/tests/test_session_close.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
class TestSessionClose(TestPoSCommon):
def setUp(self):
super(TestPoSCommon, self).setUp()
self.config1 = self._create_basic_config()
self.config2 = self._create_basic_config()
self.product1 = self.env["product.product"].create(
{
"type": "consu",
Expand All @@ -28,11 +26,13 @@ def setUp(self):

def test_late_session_close(self):
method_name = inspect.currentframe().f_code.co_name
config1 = self._create_basic_config()
config2 = self._create_basic_config()

# В первом POS открываем сессию
self.config = self.config1
self.config = config1
self.open_new_session()
self.session1 = self.pos_session
session1 = self.pos_session

# Оплачиваем наличкой один заказ
orders = []
Expand All @@ -48,7 +48,7 @@ def test_late_session_close(self):
# Не закрываем сессию в первом POS
# и открываем и закрываем много сессий на втором POS-е
# в каждой сессии также по одному заказу оплачиваем наличкой
self.config = self.config2
self.config = config2

for i in range(1000):
_logger.info("%s: running session %s" % (method_name, i))
Expand All @@ -62,17 +62,19 @@ def test_late_session_close(self):

# Ну а теперь попробуем закрывать самую первую сессию
_logger.info("closing very first session")
self.session1.action_pos_session_validate()
session1.action_pos_session_validate()

def test_1000_pos_configs(self):
method_name = inspect.currentframe().f_code.co_name
configs = [self._create_basic_config() for x in range(1000)]

for i, pos in enumerate(self.configs):
for i, pos in enumerate(configs):
# открываем очередную кассу
_logger.info("%s: running session %s" % (method_name, i))
self.config = pos
self.open_new_session()
self.sessions.append(self.pos_session)

# заказываем что-то
orders = []
orders.append(
self.create_ui_order_data(
Expand All @@ -83,8 +85,10 @@ def test_1000_pos_configs(self):
self.env["pos.order"].create_from_ui(orders)

if i == 0:
# первую сессию просто запоминаем
first_session = self.pos_session
else:
# остальные сессии закрываем
self.pos_session.action_pos_session_validate()

first_session.action_pos_session_validate()
first_session.action_pos_session_validate()

0 comments on commit 9f614e3

Please sign in to comment.