Commit 95322131 authored by Ivan Tyagov's avatar Ivan Tyagov

To avoid random test failures due to test execution we make start date one day...

To avoid random test failures due to test execution we make start date one day before. This commit only fixes test.
parent 514d57d3
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.ERP5Type.tests.utils import createZODBPythonScript from Products.ERP5Type.tests.utils import createZODBPythonScript
from wendelin.bigarray.array_zodb import ZBigArray from wendelin.bigarray.array_zodb import ZBigArray
from DateTime import DateTime
from zExceptions import NotFound from zExceptions import NotFound
import msgpack import msgpack
import numpy as np import numpy as np
...@@ -66,6 +67,8 @@ class Test(ERP5TypeTestCase): ...@@ -66,6 +67,8 @@ class Test(ERP5TypeTestCase):
self.portal.portal_ingestion_policies.IngestionPolicyTool_addIngestionPolicy( \ self.portal.portal_ingestion_policies.IngestionPolicyTool_addIngestionPolicy( \
reference = reference, \ reference = reference, \
batch_mode = 1) batch_mode = 1)
# to avoid random test failures due to test execution we make start date one day before
data_supply.setStartDate(DateTime() - 1)
self.tic() self.tic()
return ingestion_policy, data_supply, data_stream, data_array return ingestion_policy, data_supply, data_stream, data_array
...@@ -100,8 +103,6 @@ class Test(ERP5TypeTestCase): ...@@ -100,8 +103,6 @@ class Test(ERP5TypeTestCase):
ingestion_policy, _, data_stream, data_array = \ ingestion_policy, _, data_stream, data_array = \
self.stepSetupIngestion(reference) self.stepSetupIngestion(reference)
self.tic()
# simulate fluentd by setting proper values in REQUEST # simulate fluentd by setting proper values in REQUEST
request.method = 'POST' request.method = 'POST'
data_chunk = msgpack.packb([0, real_data], use_bin_type=True) data_chunk = msgpack.packb([0, real_data], use_bin_type=True)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment