本文整理汇总了Python中doajtest.fixtures.ApplicationFixtureFactory.make_application_spread方法的典型用法代码示例。如果您正苦于以下问题:Python ApplicationFixtureFactory.make_application_spread方法的具体用法?Python ApplicationFixtureFactory.make_application_spread怎么用?Python ApplicationFixtureFactory.make_application_spread使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类doajtest.fixtures.ApplicationFixtureFactory
的用法示例。
在下文中一共展示了ApplicationFixtureFactory.make_application_spread方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_03_apps_by_country
# 需要导入模块: from doajtest.fixtures import ApplicationFixtureFactory [as 别名]
# 或者: from doajtest.fixtures.ApplicationFixtureFactory import make_application_spread [as 别名]
def test_03_apps_by_country(self):
apps = ApplicationFixtureFactory.make_application_spread(APPLICATION_YEAR_OUTPUT, "year")
for a in apps:
a.save()
time.sleep(2)
outfiles = reporting.content_reports("1970-01-01T00:00:00Z", dates.now(), TMP_DIR)
assert len(outfiles) == 1
assert os.path.exists(outfiles[0])
table = []
with codecs.open(outfiles[0], "rb", "utf-8") as f:
reader = clcsv.UnicodeReader(f)
for row in reader:
table.append(row)
expected = self._as_output(APPLICATION_YEAR_OUTPUT)
assert table == expected
示例2: test_04_background
# 需要导入模块: from doajtest.fixtures import ApplicationFixtureFactory [as 别名]
# 或者: from doajtest.fixtures.ApplicationFixtureFactory import make_application_spread [as 别名]
def test_04_background(self):
provs = ProvenanceFixtureFactory.make_action_spread(MONTH_EDIT_OUTPUT, "edit", "month")
for p in provs:
p.save()
apps = ApplicationFixtureFactory.make_application_spread(APPLICATION_YEAR_OUTPUT, "year")
for a in apps:
a.save()
time.sleep(2)
job = reporting.ReportingBackgroundTask.prepare("system", outdir=TMP_DIR, from_date="1970-01-01T00:00:00Z", to_date=dates.now())
reporting.ReportingBackgroundTask.submit(job)
time.sleep(2)
job = models.BackgroundJob.pull(job.id)
prov_outfiles = job.reference["reporting__provenance_outfiles"]
cont_outfiles = job.reference["reporting__content_outfiles"]
assert len(prov_outfiles) == 4
assert len(cont_outfiles) == 1