2020-03-16 17:53:56 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: UTF-8 -*-
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
import os
|
2019-12-25 22:00:10 +01:00
|
|
|
import tempfile
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2019-12-25 22:36:26 +01:00
|
|
|
from tests.shared import getEmptyCol
|
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def test_stats():
|
2014-06-03 10:38:47 +02:00
|
|
|
d = getEmptyCol()
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Front"] = "foo"
|
|
|
|
d.addNote(note)
|
|
|
|
c = note.cards()[0]
|
2012-12-21 08:51:59 +01:00
|
|
|
# card stats
|
|
|
|
assert d.cardStats(c)
|
|
|
|
d.reset()
|
|
|
|
c = d.sched.getCard()
|
|
|
|
d.sched.answerCard(c, 3)
|
|
|
|
d.sched.answerCard(c, 2)
|
|
|
|
assert d.cardStats(c)
|
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_graphs_empty():
|
2014-06-03 10:38:47 +02:00
|
|
|
d = getEmptyCol()
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.stats().report()
|
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_graphs():
|
2019-12-25 22:00:10 +01:00
|
|
|
dir = tempfile.gettempdir()
|
2020-04-06 01:39:14 +02:00
|
|
|
d = getEmptyCol()
|
2012-12-21 08:51:59 +01:00
|
|
|
g = d.stats()
|
|
|
|
rep = g.report()
|
2020-07-17 05:18:09 +02:00
|
|
|
with open(os.path.join(dir, "test.html"), "w", encoding="UTF-8") as note:
|
|
|
|
note.write(rep)
|
2012-12-21 08:51:59 +01:00
|
|
|
return
|