2012-12-21 08:51:59 +01:00
|
|
|
# coding: utf-8
|
2019-12-24 10:36:04 +01:00
|
|
|
import time
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2019-12-25 22:36:26 +01:00
|
|
|
from anki.consts import MODEL_CLOZE
|
2020-05-23 08:19:48 +02:00
|
|
|
from anki.rsbackend import NotFoundError
|
2020-05-14 07:24:29 +02:00
|
|
|
from anki.utils import isWin, stripHTML
|
2019-12-25 22:36:26 +01:00
|
|
|
from tests.shared import getEmptyCol
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_modelDelete():
|
2014-06-03 10:38:47 +02:00
|
|
|
deck = getEmptyCol()
|
2020-07-17 05:18:09 +02:00
|
|
|
note = deck.newNote()
|
|
|
|
note["Front"] = "1"
|
|
|
|
note["Back"] = "2"
|
|
|
|
deck.addNote(note)
|
2012-12-21 08:51:59 +01:00
|
|
|
assert deck.cardCount() == 1
|
|
|
|
deck.models.rem(deck.models.current())
|
|
|
|
assert deck.cardCount() == 0
|
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_modelCopy():
|
2014-06-03 10:38:47 +02:00
|
|
|
deck = getEmptyCol()
|
2012-12-21 08:51:59 +01:00
|
|
|
m = deck.models.current()
|
|
|
|
m2 = deck.models.copy(m)
|
2019-12-25 05:18:34 +01:00
|
|
|
assert m2["name"] == "Basic copy"
|
|
|
|
assert m2["id"] != m["id"]
|
|
|
|
assert len(m2["flds"]) == 2
|
|
|
|
assert len(m["flds"]) == 2
|
|
|
|
assert len(m2["flds"]) == len(m["flds"])
|
|
|
|
assert len(m["tmpls"]) == 1
|
|
|
|
assert len(m2["tmpls"]) == 1
|
2012-12-21 08:51:59 +01:00
|
|
|
assert deck.models.scmhash(m) == deck.models.scmhash(m2)
|
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_fields():
|
2014-06-03 10:38:47 +02:00
|
|
|
d = getEmptyCol()
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Front"] = "1"
|
|
|
|
note["Back"] = "2"
|
|
|
|
d.addNote(note)
|
2012-12-21 08:51:59 +01:00
|
|
|
m = d.models.current()
|
|
|
|
# make sure renaming a field updates the templates
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.renameField(m, m["flds"][0], "NewFront")
|
|
|
|
assert "{{NewFront}}" in m["tmpls"][0]["qfmt"]
|
2012-12-21 08:51:59 +01:00
|
|
|
h = d.models.scmhash(m)
|
|
|
|
# add a field
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.models.newField("foo")
|
|
|
|
d.models.addField(m, note)
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0]).fields == ["1", "2", ""]
|
|
|
|
assert d.models.scmhash(m) != h
|
|
|
|
# rename it
|
2020-07-17 05:18:09 +02:00
|
|
|
note = m["flds"][2]
|
|
|
|
d.models.renameField(m, note, "bar")
|
2019-12-25 05:18:34 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0])["bar"] == ""
|
2012-12-21 08:51:59 +01:00
|
|
|
# delete back
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.remField(m, m["flds"][1])
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0]).fields == ["1", ""]
|
|
|
|
# move 0 -> 1
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.moveField(m, m["flds"][0], 1)
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0]).fields == ["", "1"]
|
|
|
|
# move 1 -> 0
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.moveField(m, m["flds"][1], 0)
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0]).fields == ["1", ""]
|
|
|
|
# add another and put in middle
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.models.newField("baz")
|
|
|
|
d.models.addField(m, note)
|
|
|
|
note = d.getNote(d.models.nids(m)[0])
|
|
|
|
note["baz"] = "2"
|
|
|
|
note.flush()
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0]).fields == ["1", "", "2"]
|
|
|
|
# move 2 -> 1
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.moveField(m, m["flds"][2], 1)
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0]).fields == ["1", "2", ""]
|
|
|
|
# move 0 -> 2
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.moveField(m, m["flds"][0], 2)
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0]).fields == ["2", "", "1"]
|
|
|
|
# move 0 -> 1
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.moveField(m, m["flds"][0], 1)
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.getNote(d.models.nids(m)[0]).fields == ["", "2", "1"]
|
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_templates():
|
2014-06-03 10:38:47 +02:00
|
|
|
d = getEmptyCol()
|
2019-12-25 05:18:34 +01:00
|
|
|
m = d.models.current()
|
|
|
|
mm = d.models
|
2012-12-21 08:51:59 +01:00
|
|
|
t = mm.newTemplate("Reverse")
|
2019-12-25 05:18:34 +01:00
|
|
|
t["qfmt"] = "{{Back}}"
|
|
|
|
t["afmt"] = "{{Front}}"
|
2012-12-21 08:51:59 +01:00
|
|
|
mm.addTemplate(m, t)
|
|
|
|
mm.save(m)
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Front"] = "1"
|
|
|
|
note["Back"] = "2"
|
|
|
|
d.addNote(note)
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.cardCount() == 2
|
2020-07-17 05:18:09 +02:00
|
|
|
(c, c2) = note.cards()
|
2012-12-21 08:51:59 +01:00
|
|
|
# first card should have first ord
|
|
|
|
assert c.ord == 0
|
|
|
|
assert c2.ord == 1
|
|
|
|
# switch templates
|
|
|
|
d.models.moveTemplate(m, c.template(), 1)
|
2019-12-25 05:18:34 +01:00
|
|
|
c.load()
|
|
|
|
c2.load()
|
2012-12-21 08:51:59 +01:00
|
|
|
assert c.ord == 1
|
|
|
|
assert c2.ord == 0
|
|
|
|
# removing a template should delete its cards
|
2020-04-25 12:13:46 +02:00
|
|
|
d.models.remTemplate(m, m["tmpls"][0])
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.cardCount() == 1
|
|
|
|
# and should have updated the other cards' ordinals
|
2020-07-17 05:18:09 +02:00
|
|
|
c = note.cards()[0]
|
2012-12-21 08:51:59 +01:00
|
|
|
assert c.ord == 0
|
|
|
|
assert stripHTML(c.q()) == "1"
|
|
|
|
# it shouldn't be possible to orphan notes by removing templates
|
2019-11-27 08:09:30 +01:00
|
|
|
t = mm.newTemplate("template name")
|
2012-12-21 08:51:59 +01:00
|
|
|
mm.addTemplate(m, t)
|
2020-04-25 12:13:46 +02:00
|
|
|
d.models.remTemplate(m, m["tmpls"][0])
|
|
|
|
assert (
|
|
|
|
d.db.scalar("select count() from cards where nid not in (select id from notes)")
|
|
|
|
== 0
|
|
|
|
)
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2014-02-18 18:11:31 +01:00
|
|
|
def test_cloze_ordinals():
|
2014-06-03 10:38:47 +02:00
|
|
|
d = getEmptyCol()
|
2014-02-18 18:11:31 +01:00
|
|
|
d.models.setCurrent(d.models.byName("Cloze"))
|
2019-12-25 05:18:34 +01:00
|
|
|
m = d.models.current()
|
|
|
|
mm = d.models
|
|
|
|
|
|
|
|
# We replace the default Cloze template
|
2014-02-18 18:11:31 +01:00
|
|
|
t = mm.newTemplate("ChainedCloze")
|
2019-12-25 05:18:34 +01:00
|
|
|
t["qfmt"] = "{{text:cloze:Text}}"
|
|
|
|
t["afmt"] = "{{text:cloze:Text}}"
|
2014-02-18 18:11:31 +01:00
|
|
|
mm.addTemplate(m, t)
|
|
|
|
mm.save(m)
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.remTemplate(m, m["tmpls"][0])
|
|
|
|
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Text"] = "{{c1::firstQ::firstA}}{{c2::secondQ::secondA}}"
|
|
|
|
d.addNote(note)
|
2014-02-18 18:11:31 +01:00
|
|
|
assert d.cardCount() == 2
|
2020-07-17 05:18:09 +02:00
|
|
|
(c, c2) = note.cards()
|
2014-02-18 18:11:31 +01:00
|
|
|
# first card should have first ord
|
|
|
|
assert c.ord == 0
|
|
|
|
assert c2.ord == 1
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2014-02-18 18:11:31 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_text():
|
2014-06-03 10:38:47 +02:00
|
|
|
d = getEmptyCol()
|
2012-12-21 08:51:59 +01:00
|
|
|
m = d.models.current()
|
2019-12-25 05:18:34 +01:00
|
|
|
m["tmpls"][0]["qfmt"] = "{{text:Front}}"
|
2012-12-21 08:51:59 +01:00
|
|
|
d.models.save(m)
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Front"] = "hello<b>world"
|
|
|
|
d.addNote(note)
|
|
|
|
assert "helloworld" in note.cards()[0].q()
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_cloze():
|
2014-06-03 10:38:47 +02:00
|
|
|
d = getEmptyCol()
|
2012-12-21 08:51:59 +01:00
|
|
|
d.models.setCurrent(d.models.byName("Cloze"))
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
assert note.model()["name"] == "Cloze"
|
2012-12-21 08:51:59 +01:00
|
|
|
# a cloze model with no clozes is not empty
|
2020-07-17 05:18:09 +02:00
|
|
|
note["Text"] = "nothing"
|
|
|
|
assert d.addNote(note)
|
2012-12-21 08:51:59 +01:00
|
|
|
# try with one cloze
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Text"] = "hello {{c1::world}}"
|
|
|
|
assert d.addNote(note) == 1
|
|
|
|
assert "hello <span class=cloze>[...]</span>" in note.cards()[0].q()
|
|
|
|
assert "hello <span class=cloze>world</span>" in note.cards()[0].a()
|
2012-12-21 08:51:59 +01:00
|
|
|
# and with a comment
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Text"] = "hello {{c1::world::typical}}"
|
|
|
|
assert d.addNote(note) == 1
|
|
|
|
assert "<span class=cloze>[typical]</span>" in note.cards()[0].q()
|
|
|
|
assert "<span class=cloze>world</span>" in note.cards()[0].a()
|
2012-12-21 08:51:59 +01:00
|
|
|
# and with 2 clozes
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Text"] = "hello {{c1::world}} {{c2::bar}}"
|
|
|
|
assert d.addNote(note) == 2
|
|
|
|
(c1, c2) = note.cards()
|
2012-12-21 08:51:59 +01:00
|
|
|
assert "<span class=cloze>[...]</span> bar" in c1.q()
|
|
|
|
assert "<span class=cloze>world</span> bar" in c1.a()
|
|
|
|
assert "world <span class=cloze>[...]</span>" in c2.q()
|
|
|
|
assert "world <span class=cloze>bar</span>" in c2.a()
|
|
|
|
# if there are multiple answers for a single cloze, they are given in a
|
|
|
|
# list
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Text"] = "a {{c1::b}} {{c1::c}}"
|
|
|
|
assert d.addNote(note) == 1
|
|
|
|
assert "<span class=cloze>b</span> <span class=cloze>c</span>" in (
|
|
|
|
note.cards()[0].a()
|
|
|
|
)
|
2012-12-21 08:51:59 +01:00
|
|
|
# if we add another cloze, a card should be generated
|
|
|
|
cnt = d.cardCount()
|
2020-07-17 05:18:09 +02:00
|
|
|
note["Text"] = "{{c2::hello}} {{c1::foo}}"
|
|
|
|
note.flush()
|
2012-12-21 08:51:59 +01:00
|
|
|
assert d.cardCount() == cnt + 1
|
|
|
|
# 0 or negative indices are not supported
|
2020-07-17 05:18:09 +02:00
|
|
|
note["Text"] += "{{c0::zero}} {{c-1:foo}}"
|
|
|
|
note.flush()
|
|
|
|
assert len(note.cards()) == 2
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2017-09-12 05:53:08 +02:00
|
|
|
def test_cloze_mathjax():
|
|
|
|
d = getEmptyCol()
|
|
|
|
d.models.setCurrent(d.models.byName("Cloze"))
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note[
|
2019-12-25 05:18:34 +01:00
|
|
|
"Text"
|
|
|
|
] = r"{{c1::ok}} \(2^2\) {{c2::not ok}} \(2^{{c3::2}}\) \(x^3\) {{c4::blah}} {{c5::text with \(x^2\) jax}}"
|
2020-07-17 05:18:09 +02:00
|
|
|
assert d.addNote(note)
|
|
|
|
assert len(note.cards()) == 5
|
|
|
|
assert "class=cloze" in note.cards()[0].q()
|
|
|
|
assert "class=cloze" in note.cards()[1].q()
|
|
|
|
assert "class=cloze" not in note.cards()[2].q()
|
|
|
|
assert "class=cloze" in note.cards()[3].q()
|
|
|
|
assert "class=cloze" in note.cards()[4].q()
|
2017-09-12 05:53:08 +02:00
|
|
|
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Text"] = r"\(a\) {{c1::b}} \[ {{c1::c}} \]"
|
|
|
|
assert d.addNote(note)
|
|
|
|
assert len(note.cards()) == 1
|
2020-01-03 06:21:36 +01:00
|
|
|
assert (
|
2020-07-17 05:18:09 +02:00
|
|
|
note.cards()[0]
|
|
|
|
.q()
|
|
|
|
.endswith(r"\(a\) <span class=cloze>[...]</span> \[ [...] \]")
|
2020-01-03 06:21:36 +01:00
|
|
|
)
|
2019-12-22 04:28:29 +01:00
|
|
|
|
|
|
|
|
2020-01-08 22:56:22 +01:00
|
|
|
def test_typecloze():
|
|
|
|
d = getEmptyCol()
|
|
|
|
m = d.models.byName("Cloze")
|
|
|
|
d.models.setCurrent(m)
|
2020-02-14 10:19:40 +01:00
|
|
|
m["tmpls"][0]["qfmt"] = "{{cloze:Text}}{{type:cloze:Text}}"
|
2020-01-08 22:56:22 +01:00
|
|
|
d.models.save(m)
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
|
|
|
note["Text"] = "hello {{c1::world}}"
|
|
|
|
d.addNote(note)
|
|
|
|
assert "[[type:cloze:Text]]" in note.cards()[0].q()
|
2020-01-08 22:56:22 +01:00
|
|
|
|
|
|
|
|
2014-02-18 18:11:31 +01:00
|
|
|
def test_chained_mods():
|
2014-06-03 10:38:47 +02:00
|
|
|
d = getEmptyCol()
|
2014-02-18 18:11:31 +01:00
|
|
|
d.models.setCurrent(d.models.byName("Cloze"))
|
2019-12-25 05:18:34 +01:00
|
|
|
m = d.models.current()
|
|
|
|
mm = d.models
|
|
|
|
|
|
|
|
# We replace the default Cloze template
|
2014-02-18 18:11:31 +01:00
|
|
|
t = mm.newTemplate("ChainedCloze")
|
2019-12-25 05:18:34 +01:00
|
|
|
t["qfmt"] = "{{cloze:text:Text}}"
|
|
|
|
t["afmt"] = "{{cloze:text:Text}}"
|
2014-02-18 18:11:31 +01:00
|
|
|
mm.addTemplate(m, t)
|
|
|
|
mm.save(m)
|
2019-12-25 05:18:34 +01:00
|
|
|
d.models.remTemplate(m, m["tmpls"][0])
|
|
|
|
|
2020-07-17 05:18:09 +02:00
|
|
|
note = d.newNote()
|
2019-12-25 05:18:34 +01:00
|
|
|
q1 = '<span style="color:red">phrase</span>'
|
|
|
|
a1 = "<b>sentence</b>"
|
|
|
|
q2 = '<span style="color:red">en chaine</span>'
|
|
|
|
a2 = "<i>chained</i>"
|
2020-07-17 05:18:09 +02:00
|
|
|
note["Text"] = "This {{c1::%s::%s}} demonstrates {{c1::%s::%s}} clozes." % (
|
2019-12-25 05:18:34 +01:00
|
|
|
q1,
|
|
|
|
a1,
|
|
|
|
q2,
|
|
|
|
a2,
|
|
|
|
)
|
2020-07-17 05:18:09 +02:00
|
|
|
assert d.addNote(note) == 1
|
2019-12-25 05:18:34 +01:00
|
|
|
assert (
|
|
|
|
"This <span class=cloze>[sentence]</span> demonstrates <span class=cloze>[chained]</span> clozes."
|
2020-07-17 05:18:09 +02:00
|
|
|
in note.cards()[0].q()
|
2019-12-25 05:18:34 +01:00
|
|
|
)
|
|
|
|
assert (
|
|
|
|
"This <span class=cloze>phrase</span> demonstrates <span class=cloze>en chaine</span> clozes."
|
2020-07-17 05:18:09 +02:00
|
|
|
in note.cards()[0].a()
|
2019-12-25 05:18:34 +01:00
|
|
|
)
|
|
|
|
|
2014-02-18 18:11:31 +01:00
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
def test_modelChange():
|
2014-06-03 10:38:47 +02:00
|
|
|
deck = getEmptyCol()
|
2012-12-21 08:51:59 +01:00
|
|
|
cloze = deck.models.byName("Cloze")
|
|
|
|
# enable second template and add a note
|
2019-12-25 05:18:34 +01:00
|
|
|
m = deck.models.current()
|
|
|
|
mm = deck.models
|
2012-12-21 08:51:59 +01:00
|
|
|
t = mm.newTemplate("Reverse")
|
2019-12-25 05:18:34 +01:00
|
|
|
t["qfmt"] = "{{Back}}"
|
|
|
|
t["afmt"] = "{{Front}}"
|
2012-12-21 08:51:59 +01:00
|
|
|
mm.addTemplate(m, t)
|
|
|
|
mm.save(m)
|
2020-04-25 12:13:46 +02:00
|
|
|
basic = m
|
2020-07-17 05:18:09 +02:00
|
|
|
note = deck.newNote()
|
|
|
|
note["Front"] = "note"
|
|
|
|
note["Back"] = "b123"
|
|
|
|
deck.addNote(note)
|
2012-12-21 08:51:59 +01:00
|
|
|
# switch fields
|
|
|
|
map = {0: 1, 1: 0}
|
2020-07-17 05:18:09 +02:00
|
|
|
deck.models.change(basic, [note.id], basic, map, None)
|
|
|
|
note.load()
|
|
|
|
assert note["Front"] == "b123"
|
|
|
|
assert note["Back"] == "note"
|
2012-12-21 08:51:59 +01:00
|
|
|
# switch cards
|
2020-07-17 05:18:09 +02:00
|
|
|
c0 = note.cards()[0]
|
|
|
|
c1 = note.cards()[1]
|
2012-12-21 08:51:59 +01:00
|
|
|
assert "b123" in c0.q()
|
2020-07-17 05:18:09 +02:00
|
|
|
assert "note" in c1.q()
|
2012-12-21 08:51:59 +01:00
|
|
|
assert c0.ord == 0
|
|
|
|
assert c1.ord == 1
|
2020-07-17 05:18:09 +02:00
|
|
|
deck.models.change(basic, [note.id], basic, None, map)
|
|
|
|
note.load()
|
2019-12-25 05:18:34 +01:00
|
|
|
c0.load()
|
|
|
|
c1.load()
|
2020-07-17 05:18:09 +02:00
|
|
|
assert "note" in c0.q()
|
2012-12-21 08:51:59 +01:00
|
|
|
assert "b123" in c1.q()
|
|
|
|
assert c0.ord == 1
|
|
|
|
assert c1.ord == 0
|
|
|
|
# .cards() returns cards in order
|
2020-07-17 05:18:09 +02:00
|
|
|
assert note.cards()[0].id == c1.id
|
2012-12-21 08:51:59 +01:00
|
|
|
# delete first card
|
|
|
|
map = {0: None, 1: 1}
|
2019-12-24 10:36:04 +01:00
|
|
|
if isWin:
|
|
|
|
# The low precision timer on Windows reveals a race condition
|
|
|
|
time.sleep(0.05)
|
2020-07-17 05:18:09 +02:00
|
|
|
deck.models.change(basic, [note.id], basic, None, map)
|
|
|
|
note.load()
|
2012-12-21 08:51:59 +01:00
|
|
|
c0.load()
|
|
|
|
# the card was deleted
|
|
|
|
try:
|
|
|
|
c1.load()
|
|
|
|
assert 0
|
2020-05-23 08:19:48 +02:00
|
|
|
except NotFoundError:
|
2012-12-21 08:51:59 +01:00
|
|
|
pass
|
|
|
|
# but we have two cards, as a new one was generated
|
2020-07-17 05:18:09 +02:00
|
|
|
assert len(note.cards()) == 2
|
2012-12-21 08:51:59 +01:00
|
|
|
# an unmapped field becomes blank
|
2020-07-17 05:18:09 +02:00
|
|
|
assert note["Front"] == "b123"
|
|
|
|
assert note["Back"] == "note"
|
|
|
|
deck.models.change(basic, [note.id], basic, map, None)
|
|
|
|
note.load()
|
|
|
|
assert note["Front"] == ""
|
|
|
|
assert note["Back"] == "note"
|
2012-12-21 08:51:59 +01:00
|
|
|
# another note to try model conversion
|
2020-07-17 05:18:09 +02:00
|
|
|
note = deck.newNote()
|
|
|
|
note["Front"] = "f2"
|
|
|
|
note["Back"] = "b2"
|
|
|
|
deck.addNote(note)
|
2020-04-25 12:13:46 +02:00
|
|
|
counts = deck.models.all_use_counts()
|
|
|
|
assert next(c.use_count for c in counts if c.name == "Basic") == 2
|
|
|
|
assert next(c.use_count for c in counts if c.name == "Cloze") == 0
|
2012-12-21 08:51:59 +01:00
|
|
|
map = {0: 0, 1: 1}
|
2020-07-17 05:18:09 +02:00
|
|
|
deck.models.change(basic, [note.id], cloze, map, map)
|
|
|
|
note.load()
|
|
|
|
assert note["Text"] == "f2"
|
|
|
|
assert len(note.cards()) == 2
|
2012-12-21 08:51:59 +01:00
|
|
|
# back the other way, with deletion of second ord
|
2019-12-25 05:18:34 +01:00
|
|
|
deck.models.remTemplate(basic, basic["tmpls"][1])
|
2020-07-17 05:18:09 +02:00
|
|
|
assert deck.db.scalar("select count() from cards where nid = ?", note.id) == 2
|
2020-01-03 04:40:50 +01:00
|
|
|
map = {0: 0}
|
2020-07-17 05:18:09 +02:00
|
|
|
deck.models.change(cloze, [note.id], basic, map, map)
|
|
|
|
assert deck.db.scalar("select count() from cards where nid = ?", note.id) == 1
|
2012-12-21 08:51:59 +01:00
|
|
|
|
2019-12-25 05:18:34 +01:00
|
|
|
|
2019-12-15 19:40:38 +01:00
|
|
|
def test_req():
|
|
|
|
def reqSize(model):
|
2019-12-25 05:18:34 +01:00
|
|
|
if model["type"] == MODEL_CLOZE:
|
2019-12-15 19:40:38 +01:00
|
|
|
return
|
2019-12-25 05:18:34 +01:00
|
|
|
assert len(model["tmpls"]) == len(model["req"])
|
2019-12-15 19:40:38 +01:00
|
|
|
|
|
|
|
d = getEmptyCol()
|
|
|
|
mm = d.models
|
|
|
|
basic = mm.byName("Basic")
|
2019-12-25 05:18:34 +01:00
|
|
|
assert "req" in basic
|
2019-12-15 19:40:38 +01:00
|
|
|
reqSize(basic)
|
2019-12-25 05:18:34 +01:00
|
|
|
r = basic["req"][0]
|
2019-12-24 03:43:42 +01:00
|
|
|
assert r[0] == 0
|
|
|
|
assert r[1] in ("any", "all")
|
|
|
|
assert r[2] == [0]
|
2019-12-15 19:40:38 +01:00
|
|
|
opt = mm.byName("Basic (optional reversed card)")
|
|
|
|
reqSize(opt)
|
2019-12-25 05:18:34 +01:00
|
|
|
r = opt["req"][0]
|
2019-12-24 03:43:42 +01:00
|
|
|
assert r[1] in ("any", "all")
|
|
|
|
assert r[2] == [0]
|
2019-12-25 05:18:34 +01:00
|
|
|
assert opt["req"][1] == [1, "all", [1, 2]]
|
|
|
|
# testing any
|
|
|
|
opt["tmpls"][1]["qfmt"] = "{{Back}}{{Add Reverse}}"
|
2019-12-15 19:40:38 +01:00
|
|
|
mm.save(opt, templates=True)
|
2019-12-25 05:18:34 +01:00
|
|
|
assert opt["req"][1] == [1, "any", [1, 2]]
|
|
|
|
# testing None
|
2020-01-23 08:32:17 +01:00
|
|
|
opt["tmpls"][1]["qfmt"] = "{{^Add Reverse}}{{/Add Reverse}}"
|
2019-12-15 19:40:38 +01:00
|
|
|
mm.save(opt, templates=True)
|
2019-12-25 05:18:34 +01:00
|
|
|
assert opt["req"][1] == [1, "none", []]
|
2019-12-24 01:23:21 +01:00
|
|
|
|
2019-12-25 04:01:19 +01:00
|
|
|
opt = mm.byName("Basic (type in the answer)")
|
|
|
|
reqSize(opt)
|
2019-12-25 05:18:34 +01:00
|
|
|
r = opt["req"][0]
|
2019-12-25 04:01:19 +01:00
|
|
|
assert r[1] in ("any", "all")
|
2020-04-29 13:29:16 +02:00
|
|
|
assert r[2] == [0, 1]
|