mirror of https://github.com/iSoron/uhabits.git
Co-authored-by: Alinson S. Xavier <git@axavier.org>pull/629/head
parent
d9ff429c28
commit
1a05f7d85d
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
@ -1,109 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2016 Álinson Santos Xavier <isoron@gmail.com>
|
|
||||||
*
|
|
||||||
* This file is part of Loop Habit Tracker.
|
|
||||||
*
|
|
||||||
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by the
|
|
||||||
* Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
* option) any later version.
|
|
||||||
*
|
|
||||||
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
|
||||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
||||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
||||||
* more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along
|
|
||||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.isoron.uhabits.core.commands;
|
|
||||||
|
|
||||||
import androidx.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.core.models.*;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Command to toggle a repetition.
|
|
||||||
*/
|
|
||||||
public class ToggleRepetitionCommand extends Command
|
|
||||||
{
|
|
||||||
@NonNull
|
|
||||||
private HabitList list;
|
|
||||||
|
|
||||||
final Timestamp timestamp;
|
|
||||||
|
|
||||||
@NonNull
|
|
||||||
final Habit habit;
|
|
||||||
|
|
||||||
public ToggleRepetitionCommand(@NonNull HabitList list,
|
|
||||||
@NonNull Habit habit,
|
|
||||||
Timestamp timestamp)
|
|
||||||
{
|
|
||||||
super();
|
|
||||||
this.list = list;
|
|
||||||
this.timestamp = timestamp;
|
|
||||||
this.habit = habit;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute()
|
|
||||||
{
|
|
||||||
habit.getRepetitions().toggle(timestamp);
|
|
||||||
list.update(habit);
|
|
||||||
}
|
|
||||||
|
|
||||||
@NonNull
|
|
||||||
public Habit getHabit()
|
|
||||||
{
|
|
||||||
return habit;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@NonNull
|
|
||||||
public Record toRecord()
|
|
||||||
{
|
|
||||||
return new Record(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void undo()
|
|
||||||
{
|
|
||||||
execute();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class Record
|
|
||||||
{
|
|
||||||
@NonNull
|
|
||||||
public String id;
|
|
||||||
|
|
||||||
@NonNull
|
|
||||||
public String event = "Toggle";
|
|
||||||
|
|
||||||
public long habit;
|
|
||||||
|
|
||||||
public long repTimestamp;
|
|
||||||
|
|
||||||
public Record(@NonNull ToggleRepetitionCommand command)
|
|
||||||
{
|
|
||||||
id = command.getId();
|
|
||||||
Long habitId = command.habit.getId();
|
|
||||||
if (habitId == null) throw new RuntimeException("Habit not saved");
|
|
||||||
|
|
||||||
this.repTimestamp = command.timestamp.getUnixTime();
|
|
||||||
this.habit = habitId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ToggleRepetitionCommand toCommand(@NonNull HabitList habitList)
|
|
||||||
{
|
|
||||||
Habit h = habitList.getById(habit);
|
|
||||||
if (h == null) throw new HabitNotFoundException();
|
|
||||||
|
|
||||||
ToggleRepetitionCommand command;
|
|
||||||
command = new ToggleRepetitionCommand(
|
|
||||||
habitList, h, new Timestamp(repTimestamp));
|
|
||||||
command.setId(id);
|
|
||||||
return command;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,76 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2017 Álinson Santos Xavier <isoron@gmail.com>
|
|
||||||
*
|
|
||||||
* This file is part of Loop Habit Tracker.
|
|
||||||
*
|
|
||||||
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by the
|
|
||||||
* Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
* option) any later version.
|
|
||||||
*
|
|
||||||
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
|
||||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
||||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
||||||
* more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along
|
|
||||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.isoron.uhabits.core.commands;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.core.*;
|
|
||||||
import org.isoron.uhabits.core.models.*;
|
|
||||||
import org.isoron.uhabits.core.utils.*;
|
|
||||||
import org.junit.*;
|
|
||||||
|
|
||||||
import static org.hamcrest.MatcherAssert.assertThat;
|
|
||||||
import static org.hamcrest.Matchers.*;
|
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
public class ToggleRepetitionCommandTest extends BaseUnitTest
|
|
||||||
{
|
|
||||||
|
|
||||||
private ToggleRepetitionCommand command;
|
|
||||||
private Habit habit;
|
|
||||||
private Timestamp today;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@Before
|
|
||||||
public void setUp() throws Exception
|
|
||||||
{
|
|
||||||
super.setUp();
|
|
||||||
|
|
||||||
habit = fixtures.createShortHabit();
|
|
||||||
habitList.add(habit);
|
|
||||||
|
|
||||||
today = DateUtils.getToday();
|
|
||||||
command = new ToggleRepetitionCommand(habitList, habit, today);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testExecuteUndoRedo()
|
|
||||||
{
|
|
||||||
assertTrue(habit.getRepetitions().containsTimestamp(today));
|
|
||||||
|
|
||||||
command.execute();
|
|
||||||
assertFalse(habit.getRepetitions().containsTimestamp(today));
|
|
||||||
|
|
||||||
command.undo();
|
|
||||||
assertTrue(habit.getRepetitions().containsTimestamp(today));
|
|
||||||
|
|
||||||
command.execute();
|
|
||||||
assertFalse(habit.getRepetitions().containsTimestamp(today));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRecord()
|
|
||||||
{
|
|
||||||
ToggleRepetitionCommand.Record rec = command.toRecord();
|
|
||||||
ToggleRepetitionCommand other = rec.toCommand(habitList);
|
|
||||||
|
|
||||||
assertThat(command.getId(), equalTo(other.getId()));
|
|
||||||
assertThat(command.timestamp, equalTo(other.timestamp));
|
|
||||||
assertThat(command.habit, equalTo(other.habit));
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue