mirror of https://github.com/iSoron/uhabits.git
parent
df0cf57984
commit
fa4944700c
@ -1,83 +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.activities.habits.show;
|
||||
|
||||
import android.view.*;
|
||||
|
||||
import org.isoron.androidbase.*;
|
||||
import org.isoron.uhabits.*;
|
||||
import org.isoron.uhabits.models.*;
|
||||
import org.isoron.uhabits.tasks.*;
|
||||
import org.junit.*;
|
||||
|
||||
import static org.mockito.Matchers.any;
|
||||
import static org.mockito.Mockito.*;
|
||||
|
||||
public class ShowHabitsMenuTest extends BaseAndroidTest
|
||||
{
|
||||
private ShowHabitActivity activity;
|
||||
|
||||
private ShowHabitScreen screen;
|
||||
|
||||
private ShowHabitsMenu menu;
|
||||
|
||||
private Habit habit;
|
||||
|
||||
private ExportCSVTaskFactory exportCSVFactory;
|
||||
|
||||
private TaskRunner taskRunner;
|
||||
|
||||
private BaseSystem system;
|
||||
|
||||
@Override
|
||||
public void setUp()
|
||||
{
|
||||
super.setUp();
|
||||
activity = mock(ShowHabitActivity.class);
|
||||
system = mock(BaseSystem.class);
|
||||
screen = mock(ShowHabitScreen.class);
|
||||
habit = mock(Habit.class);
|
||||
exportCSVFactory = mock(ExportCSVTaskFactory.class);
|
||||
taskRunner = mock(TaskRunner.class);
|
||||
menu = new ShowHabitsMenu(activity, system, screen, habit,
|
||||
exportCSVFactory, taskRunner);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnDownloadHabit()
|
||||
{
|
||||
onItemSelected(R.id.export);
|
||||
verify(taskRunner).execute(any());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnEditHabit()
|
||||
{
|
||||
onItemSelected(R.id.action_edit_habit);
|
||||
verify(screen).showEditHabitDialog();
|
||||
}
|
||||
|
||||
protected void onItemSelected(int actionId)
|
||||
{
|
||||
MenuItem item = mock(MenuItem.class);
|
||||
when(item.getItemId()).thenReturn(actionId);
|
||||
menu.onItemSelected(item);
|
||||
}
|
||||
}
|
@ -0,0 +1,73 @@
|
||||
/*
|
||||
* 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.activities.about;
|
||||
|
||||
import android.support.annotation.*;
|
||||
import android.widget.*;
|
||||
|
||||
import org.isoron.androidbase.activities.*;
|
||||
import org.isoron.uhabits.intents.*;
|
||||
import org.isoron.uhabits.ui.about.*;
|
||||
|
||||
import javax.inject.*;
|
||||
|
||||
public class AboutScreen extends BaseScreen implements AboutBehavior.Screen
|
||||
{
|
||||
@NonNull
|
||||
private final IntentFactory intents;
|
||||
|
||||
@Inject
|
||||
public AboutScreen(@NonNull BaseActivity activity,
|
||||
@NonNull IntentFactory intents)
|
||||
{
|
||||
super(activity);
|
||||
this.intents = intents;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void showMessage(AboutBehavior.Message message)
|
||||
{
|
||||
Toast.makeText(activity, "OK", Toast.LENGTH_LONG).show();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void showRateAppWebsite()
|
||||
{
|
||||
activity.startActivity(intents.rateApp(activity));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void showSendFeedbackScreen()
|
||||
{
|
||||
activity.startActivity(intents.sendFeedback(activity));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void showSourceCodeWebsite()
|
||||
{
|
||||
activity.startActivity(intents.viewSourceCode(activity));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void showTranslationWebsite()
|
||||
{
|
||||
activity.startActivity(intents.helpTranslate(activity));
|
||||
}
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
/*
|
||||
* 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.preferences;
|
||||
|
||||
public interface Preferences
|
||||
{
|
||||
|
||||
void setDeveloper(boolean isDeveloper);
|
||||
}
|
@ -0,0 +1,90 @@
|
||||
/*
|
||||
* 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.ui.about;
|
||||
|
||||
import android.support.annotation.*;
|
||||
|
||||
import org.isoron.uhabits.preferences.*;
|
||||
|
||||
public class AboutBehavior
|
||||
{
|
||||
private int developerCountdown = 5;
|
||||
|
||||
@NonNull
|
||||
private Preferences prefs;
|
||||
|
||||
@NonNull
|
||||
private Screen screen;
|
||||
|
||||
public AboutBehavior(@NonNull Preferences prefs, @NonNull Screen screen)
|
||||
{
|
||||
this.prefs = prefs;
|
||||
this.screen = screen;
|
||||
}
|
||||
|
||||
public void onPressDeveloperCountdown()
|
||||
{
|
||||
developerCountdown--;
|
||||
if (developerCountdown <= 0)
|
||||
{
|
||||
prefs.setDeveloper(true);
|
||||
screen.showMessage(Message.YOU_ARE_NOW_A_DEVELOPER);
|
||||
}
|
||||
}
|
||||
|
||||
public void onRateApp()
|
||||
{
|
||||
screen.showRateAppWebsite();
|
||||
}
|
||||
|
||||
public void onSendFeedback()
|
||||
{
|
||||
screen.showSendFeedbackScreen();
|
||||
}
|
||||
|
||||
public void onTranslateApp()
|
||||
{
|
||||
screen.showTranslationWebsite();
|
||||
}
|
||||
|
||||
public void onViewSourceCode()
|
||||
{
|
||||
screen.showSourceCodeWebsite();
|
||||
}
|
||||
|
||||
public enum Message
|
||||
{
|
||||
YOU_ARE_NOW_A_DEVELOPER
|
||||
}
|
||||
|
||||
public interface Screen
|
||||
{
|
||||
void showMessage(Message message);
|
||||
|
||||
void showRateAppWebsite();
|
||||
|
||||
void showSendFeedbackScreen();
|
||||
|
||||
void showSourceCodeWebsite();
|
||||
|
||||
void showTranslationWebsite();
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* 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.ui.habits.show;
|
||||
|
||||
import android.support.annotation.*;
|
||||
|
||||
import org.isoron.uhabits.commands.*;
|
||||
import org.isoron.uhabits.models.*;
|
||||
|
||||
import javax.inject.*;
|
||||
|
||||
public class ShowHabitBehavior
|
||||
{
|
||||
@NonNull
|
||||
private final Habit habit;
|
||||
|
||||
@NonNull
|
||||
private final CommandRunner commandRunner;
|
||||
|
||||
@NonNull
|
||||
private Screen screen;
|
||||
|
||||
@Inject
|
||||
public ShowHabitBehavior(@NonNull CommandRunner commandRunner,
|
||||
@NonNull Habit habit,
|
||||
@NonNull Screen screen)
|
||||
{
|
||||
this.habit = habit;
|
||||
this.commandRunner = commandRunner;
|
||||
this.screen = screen;
|
||||
}
|
||||
|
||||
public void onEditHistory()
|
||||
{
|
||||
screen.showEditHistoryScreen();
|
||||
}
|
||||
|
||||
public void onToggleCheckmark(long timestamp)
|
||||
{
|
||||
commandRunner.execute(new ToggleRepetitionCommand(habit, timestamp),
|
||||
null);
|
||||
}
|
||||
|
||||
public interface Screen
|
||||
{
|
||||
void showEditHistoryScreen();
|
||||
}
|
||||
}
|
@ -0,0 +1,98 @@
|
||||
/*
|
||||
* 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.ui.habits.show;
|
||||
|
||||
import android.support.annotation.*;
|
||||
|
||||
import org.isoron.uhabits.models.*;
|
||||
import org.isoron.uhabits.tasks.*;
|
||||
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
||||
import javax.inject.*;
|
||||
|
||||
public class ShowHabitMenuBehavior
|
||||
{
|
||||
private HabitList habitList;
|
||||
|
||||
@NonNull
|
||||
private final Habit habit;
|
||||
|
||||
@NonNull
|
||||
private final TaskRunner taskRunner;
|
||||
|
||||
@NonNull
|
||||
private Screen screen;
|
||||
|
||||
@NonNull
|
||||
private System system;
|
||||
|
||||
@Inject
|
||||
public ShowHabitMenuBehavior(@NonNull HabitList habitList,
|
||||
@NonNull Habit habit,
|
||||
@NonNull TaskRunner taskRunner,
|
||||
@NonNull Screen screen,
|
||||
@NonNull System system)
|
||||
{
|
||||
this.habitList = habitList;
|
||||
this.habit = habit;
|
||||
this.taskRunner = taskRunner;
|
||||
this.screen = screen;
|
||||
this.system = system;
|
||||
}
|
||||
|
||||
public void onEditHabit()
|
||||
{
|
||||
screen.showEditHabitScreen(habit);
|
||||
}
|
||||
|
||||
public void onExportCSV()
|
||||
{
|
||||
List<Habit> selected = Collections.singletonList(habit);
|
||||
File outputDir = system.getCSVOutputDir();
|
||||
|
||||
taskRunner.execute(
|
||||
new ExportCSVTask(habitList, selected, outputDir, filename ->
|
||||
{
|
||||
if (filename != null) screen.showSendFileScreen(filename);
|
||||
else screen.showMessage(Message.COULD_NOT_EXPORT);
|
||||
}));
|
||||
}
|
||||
|
||||
public enum Message
|
||||
{
|
||||
COULD_NOT_EXPORT
|
||||
}
|
||||
|
||||
public interface Screen
|
||||
{
|
||||
void showEditHabitScreen(@NonNull Habit habit);
|
||||
|
||||
void showMessage(Message m);
|
||||
|
||||
void showSendFileScreen(String filename);
|
||||
}
|
||||
|
||||
public interface System
|
||||
{
|
||||
File getCSVOutputDir();
|
||||
}
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* 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.ui.habits.show;
|
||||
|
||||
import org.isoron.uhabits.*;
|
||||
import org.isoron.uhabits.models.*;
|
||||
import org.junit.*;
|
||||
|
||||
import java.io.*;
|
||||
|
||||
import static java.nio.file.Files.*;
|
||||
import static org.apache.commons.io.FileUtils.*;
|
||||
import static org.hamcrest.CoreMatchers.equalTo;
|
||||
import static org.junit.Assert.assertThat;
|
||||
import static org.mockito.Mockito.*;
|
||||
|
||||
public class ShowHabitMenuBehaviorTest extends BaseUnitTest
|
||||
{
|
||||
private ShowHabitMenuBehavior.System system;
|
||||
|
||||
private ShowHabitMenuBehavior.Screen screen;
|
||||
|
||||
private Habit habit;
|
||||
|
||||
private ShowHabitMenuBehavior menu;
|
||||
|
||||
@Override
|
||||
public void setUp()
|
||||
{
|
||||
super.setUp();
|
||||
system = mock(ShowHabitMenuBehavior.System.class);
|
||||
screen = mock(ShowHabitMenuBehavior.Screen.class);
|
||||
|
||||
habit = fixtures.createShortHabit();
|
||||
menu = new ShowHabitMenuBehavior(habitList, habit, taskRunner, screen,
|
||||
system);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnEditHabit()
|
||||
{
|
||||
menu.onEditHabit();
|
||||
verify(screen).showEditHabitScreen(habit);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnExport() throws Exception
|
||||
{
|
||||
File outputDir = createTempDirectory("CSV").toFile();
|
||||
when(system.getCSVOutputDir()).thenReturn(outputDir);
|
||||
menu.onExportCSV();
|
||||
assertThat(listFiles(outputDir, null, false).size(), equalTo(1));
|
||||
deleteDirectory(outputDir);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue