use of com.ichi2.anki.CardBrowser.Column.CARD in project AnkiChinaAndroid by ankichinateam.
the class SchedTest method test_norelearnV1.
@Test
public void test_norelearnV1() throws Exception {
Collection col = getColV1();
// add a note
Note note = col.newNote();
note.setItem("Front", "one");
col.addNote(note);
Card c = note.cards().get(0);
c.setType(CARD_TYPE_REV);
c.setQueue(QUEUE_TYPE_REV);
c.setDue(0);
c.setFactor(STARTING_FACTOR);
c.setReps(3);
c.setLapses(1);
c.setIvl(100);
c.startTimer();
c.flush();
col.reset();
col.getSched().answerCard(c, 1);
col.getSched()._cardConf(c).getJSONObject("lapse").put("delays", new JSONArray(new double[] {}));
col.getSched().answerCard(c, 1);
}
use of com.ichi2.anki.CardBrowser.Column.CARD in project AnkiChinaAndroid by ankichinateam.
the class SchedTest method test_learn_dayV1.
@Test
public void test_learn_dayV1() throws Exception {
Collection col = getColV1();
// add a note
Note note = col.newNote();
note.setItem("Front", "one");
col.addNote(note);
col.reset();
Card c = col.getSched().getCard();
DeckConfig conf = col.getSched()._cardConf(c);
conf.getJSONObject("new").put("delays", new JSONArray(new double[] { 1, 10, 1440, 2880 }));
col.getDecks().save(conf);
// pass it
col.getSched().answerCard(c, 2);
// two reps to graduate, 1 more today
assertEquals(3, c.getLeft() % 1000);
assertEquals(1, c.getLeft() / 1000);
assertArrayEquals(new int[] { 0, 1, 0 }, col.getSched().counts());
c = col.getSched().getCard();
assertEquals(SECONDS_PER_DAY, col.getSched().nextIvl(c, 2));
// answering it will place it in queue 3
col.getSched().answerCard(c, 2);
assertEquals(col.getSched().getToday() + 1, c.getDue());
assertEquals(QUEUE_TYPE_DAY_LEARN_RELEARN, c.getQueue());
assertNull(col.getSched().getCard());
// for testing, move it back a day
c.setDue(c.getDue() - 1);
c.flush();
col.reset();
assertArrayEquals(new int[] { 0, 1, 0 }, col.getSched().counts());
c = col.getSched().getCard();
// nextIvl should work
assertEquals(SECONDS_PER_DAY * 2, col.getSched().nextIvl(c, 2));
// if we fail it, it should be back in the correct queue
col.getSched().answerCard(c, 1);
assertEquals(QUEUE_TYPE_LRN, c.getQueue());
col.undo();
col.reset();
c = col.getSched().getCard();
col.getSched().answerCard(c, 2);
// simulate the passing of another two days
c.setDue(c.getDue() - 2);
c.flush();
col.reset();
// the last pass should graduate it into a review card
assertEquals(SECONDS_PER_DAY, col.getSched().nextIvl(c, 2));
col.getSched().answerCard(c, 2);
assertEquals(CARD_TYPE_REV, c.getType());
assertEquals(QUEUE_TYPE_REV, c.getQueue());
// if the lapse step is tomorrow, failing it should handle the counts
// correctly
c.setDue(0);
c.flush();
col.reset();
assertArrayEquals(new int[] { 0, 0, 1 }, col.getSched().counts());
conf = col.getSched()._cardConf(c);
conf.getJSONObject("lapse").put("delays", new JSONArray(new double[] { 1440 }));
col.getDecks().save(conf);
c = col.getSched().getCard();
col.getSched().answerCard(c, 1);
assertEquals(CARD_TYPE_RELEARNING, c.getQueue());
assertArrayEquals(new int[] { 0, 0, 0 }, col.getSched().counts());
}
use of com.ichi2.anki.CardBrowser.Column.CARD in project AnkiChinaAndroid by ankichinateam.
the class SchedTest method test_cram_rem.
@Test
public void test_cram_rem() throws Exception {
Collection col = getColV1();
Note note = col.newNote();
note.setItem("Front", "one");
col.addNote(note);
long oldDue = note.cards().get(0).getDue();
long did = col.getDecks().newDyn("Cram");
col.getSched().rebuildDyn(did);
col.reset();
Card c = col.getSched().getCard();
col.getSched().answerCard(c, 2);
// answering the card will put it in the learning queue
assertEquals(QUEUE_TYPE_LRN, c.getQueue());
assertEquals(CARD_TYPE_LRN, c.getType());
assertNotEquals(c.getDue(), oldDue);
// if we terminate cramming prematurely it should be set back to new
col.getSched().emptyDyn(did);
c.load();
assertEquals(QUEUE_TYPE_NEW, c.getQueue());
assertEquals(CARD_TYPE_NEW, c.getType());
assertEquals(oldDue, c.getDue());
}
use of com.ichi2.anki.CardBrowser.Column.CARD in project AnkiChinaAndroid by ankichinateam.
the class SchedTest method test_timingV1.
@Test
public void test_timingV1() throws Exception {
Collection col = getColV1();
// add a few review cards, due today
for (int i = 0; i < 5; i++) {
Note note = col.newNote();
note.setItem("Front", "num" + i);
col.addNote(note);
Card c = note.cards().get(0);
c.setType(CARD_TYPE_REV);
c.setQueue(QUEUE_TYPE_REV);
c.setDue(0);
c.flush();
}
// fail the first one
col.reset();
Card c = col.getSched().getCard();
// set a a fail delay of 4 seconds
DeckConfig conf = col.getSched()._cardConf(c);
conf.getJSONObject("lapse").getJSONArray("delays").put(0, 1 / 15.0);
col.getDecks().save(conf);
col.getSched().answerCard(c, 1);
// the next card should be another review
c = col.getSched().getCard();
assertEquals(QUEUE_TYPE_REV, c.getQueue());
/* TODO time
// but if we wait for a few seconds, the failed card should come back
orig_time = time.time;
def adjusted_time():
return orig_time() + 5;
time.time = adjusted_time;
c = col.getSched().getCard();
assertEquals(QUEUE_TYPE_LRN, c.getQueue());
time.time = orig_time;
*/
}
use of com.ichi2.anki.CardBrowser.Column.CARD in project AnkiChinaAndroid by ankichinateam.
the class SchedTest method test_nextIvlV1.
@Test
public void test_nextIvlV1() throws Exception {
Collection col = getColV1();
Note note = col.newNote();
note.setItem("Front", "one");
note.setItem("Back", "two");
col.addNote(note);
col.reset();
DeckConfig conf = col.getDecks().confForDid(1);
conf.getJSONObject("new").put("delays", new JSONArray(new double[] { 0.5, 3, 10 }));
conf.getJSONObject("lapse").put("delays", new JSONArray(new double[] { 1, 5, 9 }));
col.getDecks().save(conf);
Card c = col.getSched().getCard();
// new cards
// //////////////////////////////////////////////////////////////////////////////////////////////////
assertEquals(30, col.getSched().nextIvl(c, 1));
assertEquals(180, col.getSched().nextIvl(c, 2));
assertEquals(4 * SECONDS_PER_DAY, col.getSched().nextIvl(c, 3));
col.getSched().answerCard(c, 1);
// cards in learning
// //////////////////////////////////////////////////////////////////////////////////////////////////
assertEquals(30, col.getSched().nextIvl(c, 1));
assertEquals(180, col.getSched().nextIvl(c, 2));
assertEquals(4 * SECONDS_PER_DAY, col.getSched().nextIvl(c, 3));
col.getSched().answerCard(c, 2);
assertEquals(30, col.getSched().nextIvl(c, 1));
assertEquals(600, col.getSched().nextIvl(c, 2));
assertEquals(4 * SECONDS_PER_DAY, col.getSched().nextIvl(c, 3));
col.getSched().answerCard(c, 2);
// normal graduation is tomorrow
assertEquals(1 * SECONDS_PER_DAY, col.getSched().nextIvl(c, 2));
assertEquals(4 * SECONDS_PER_DAY, col.getSched().nextIvl(c, 3));
// lapsed cards
// //////////////////////////////////////////////////////////////////////////////////////////////////
c.setType(CARD_TYPE_REV);
c.setIvl(100);
c.setFactor(STARTING_FACTOR);
assertEquals(60, col.getSched().nextIvl(c, 1));
assertEquals(100 * SECONDS_PER_DAY, col.getSched().nextIvl(c, 2));
assertEquals(100 * SECONDS_PER_DAY, col.getSched().nextIvl(c, 3));
// review cards
// //////////////////////////////////////////////////////////////////////////////////////////////////
c.setQueue(QUEUE_TYPE_REV);
c.setIvl(100);
c.setFactor(STARTING_FACTOR);
// failing it should put it at 60s
assertEquals(60, col.getSched().nextIvl(c, 1));
// or 1 day if relearn is false
conf.getJSONObject("lapse").put("delays", new JSONArray(new double[] {}));
col.getDecks().save(conf);
assertEquals(1 * SECONDS_PER_DAY, col.getSched().nextIvl(c, 1));
// (* 100 1.2 SECONDS_PER_DAY)10368000.0
assertEquals(10368000, col.getSched().nextIvl(c, 2));
// (* 100 2.5 SECONDS_PER_DAY)21600000.0
assertEquals(21600000, col.getSched().nextIvl(c, 3));
// (* 100 2.5 1.3 SECONDS_PER_DAY)28080000.0
assertEquals(28080000, col.getSched().nextIvl(c, 4));
assertThat(without_unicode_isolation(col.getSched().nextIvlStr(getTargetContext(), c, 4)), is("10.8 mo"));
}
Aggregations