mirror of https://github.com/iSoron/uhabits.git
parent
c961045b63
commit
2d40fb0b82
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* 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.receivers;
|
||||
|
||||
import org.isoron.uhabits.*;
|
||||
import org.isoron.uhabits.models.*;
|
||||
import org.isoron.uhabits.notifications.*;
|
||||
import org.isoron.uhabits.preferences.*;
|
||||
import org.isoron.uhabits.utils.*;
|
||||
import org.junit.*;
|
||||
|
||||
import static org.mockito.Mockito.*;
|
||||
|
||||
public class ReminderControllerTest extends BaseUnitTest
|
||||
{
|
||||
|
||||
private ReminderController controller;
|
||||
|
||||
private ReminderScheduler reminderScheduler;
|
||||
|
||||
private NotificationTray notificationTray;
|
||||
|
||||
private Preferences preferences;
|
||||
|
||||
@Override
|
||||
public void setUp()
|
||||
{
|
||||
super.setUp();
|
||||
|
||||
reminderScheduler = mock(ReminderScheduler.class);
|
||||
notificationTray = mock(NotificationTray.class);
|
||||
preferences = mock(Preferences.class);
|
||||
|
||||
controller = new ReminderController(reminderScheduler,
|
||||
notificationTray, preferences);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnDismiss() throws Exception
|
||||
{
|
||||
verifyNoMoreInteractions(reminderScheduler);
|
||||
verifyNoMoreInteractions(notificationTray);
|
||||
verifyNoMoreInteractions(preferences);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnSnooze() throws Exception
|
||||
{
|
||||
Habit habit = mock(Habit.class);
|
||||
long now = timestamp(2015, 1, 1);
|
||||
DateUtils.setFixedLocalTime(now);
|
||||
when(preferences.getSnoozeInterval()).thenReturn(15L);
|
||||
|
||||
controller.onSnooze(habit);
|
||||
|
||||
verify(reminderScheduler).schedule(habit, now + 900000);
|
||||
verify(notificationTray).cancel(habit);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnShowReminder() throws Exception
|
||||
{
|
||||
Habit habit = mock(Habit.class);
|
||||
controller.onShowReminder(habit, 123, 456);
|
||||
verify(notificationTray).show(habit, 123, 456);
|
||||
verify(reminderScheduler).scheduleAll();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnBootCompleted() throws Exception
|
||||
{
|
||||
controller.onBootCompleted();
|
||||
verify(reminderScheduler).scheduleAll();
|
||||
}
|
||||
}
|
@ -0,0 +1,98 @@
|
||||
/*
|
||||
* 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.receivers;
|
||||
|
||||
import org.isoron.uhabits.*;
|
||||
import org.isoron.uhabits.commands.*;
|
||||
import org.isoron.uhabits.models.*;
|
||||
import org.isoron.uhabits.utils.*;
|
||||
import org.junit.*;
|
||||
|
||||
import static org.hamcrest.MatcherAssert.*;
|
||||
import static org.hamcrest.core.IsEqual.*;
|
||||
import static org.isoron.uhabits.models.Checkmark.*;
|
||||
import static org.mockito.Mockito.*;
|
||||
|
||||
public class WidgetControllerTest extends BaseUnitTest
|
||||
{
|
||||
private WidgetController controller;
|
||||
|
||||
private CommandRunner commandRunner;
|
||||
|
||||
private Habit habit;
|
||||
|
||||
private long today;
|
||||
|
||||
@Override
|
||||
public void setUp()
|
||||
{
|
||||
super.setUp();
|
||||
|
||||
today = DateUtils.getStartOfToday();
|
||||
habit = fixtures.createEmptyHabit();
|
||||
commandRunner = mock(CommandRunner.class);
|
||||
controller = new WidgetController(commandRunner);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnAddRepetition_whenChecked() throws Exception
|
||||
{
|
||||
habit.getRepetitions().toggleTimestamp(today);
|
||||
int todayValue = habit.getCheckmarks().getTodayValue();
|
||||
assertThat(todayValue, equalTo(CHECKED_EXPLICITLY));
|
||||
controller.onAddRepetition(habit, today);
|
||||
verifyZeroInteractions(commandRunner);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnAddRepetition_whenUnchecked() throws Exception
|
||||
{
|
||||
int todayValue = habit.getCheckmarks().getTodayValue();
|
||||
assertThat(todayValue, equalTo(UNCHECKED));
|
||||
controller.onAddRepetition(habit, today);
|
||||
verify(commandRunner).execute(any(), anyLong());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnRemoveRepetition_whenChecked() throws Exception
|
||||
{
|
||||
habit.getRepetitions().toggleTimestamp(today);
|
||||
int todayValue = habit.getCheckmarks().getTodayValue();
|
||||
assertThat(todayValue, equalTo(CHECKED_EXPLICITLY));
|
||||
controller.onRemoveRepetition(habit, today);
|
||||
verify(commandRunner).execute(any(), anyLong());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnRemoveRepetition_whenUnchecked() throws Exception
|
||||
{
|
||||
int todayValue = habit.getCheckmarks().getTodayValue();
|
||||
assertThat(todayValue, equalTo(UNCHECKED));
|
||||
controller.onRemoveRepetition(habit, today);
|
||||
verifyZeroInteractions(commandRunner);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnToggleRepetition() throws Exception
|
||||
{
|
||||
controller.onToggleRepetition(habit, today);
|
||||
verify(commandRunner).execute(any(), anyLong());
|
||||
}
|
||||
}
|
Loading…
Reference in new issue