mirror of https://github.com/iSoron/uhabits.git
parent
39cec6f11d
commit
457c58a660
@ -1,80 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2016-2021 Álinson Santos Xavier <git@axavier.org>
|
|
||||||
*
|
|
||||||
* 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.list.views;
|
|
||||||
|
|
||||||
import androidx.test.filters.*;
|
|
||||||
import androidx.test.runner.*;
|
|
||||||
|
|
||||||
import androidx.test.ext.junit.runners.AndroidJUnit4;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
|
||||||
import org.isoron.uhabits.core.preferences.*;
|
|
||||||
import org.isoron.uhabits.core.utils.*;
|
|
||||||
import org.junit.*;
|
|
||||||
import org.junit.runner.*;
|
|
||||||
|
|
||||||
import static org.mockito.Mockito.*;
|
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
|
||||||
@MediumTest
|
|
||||||
public class HeaderViewTest extends BaseViewTest
|
|
||||||
{
|
|
||||||
public static final String PATH = "habits/list/HeaderView/";
|
|
||||||
|
|
||||||
private HeaderView view;
|
|
||||||
|
|
||||||
private Preferences prefs;
|
|
||||||
|
|
||||||
private MidnightTimer midnightTimer;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@Before
|
|
||||||
public void setUp()
|
|
||||||
{
|
|
||||||
super.setUp();
|
|
||||||
prefs = mock(Preferences.class);
|
|
||||||
midnightTimer = mock(MidnightTimer.class);
|
|
||||||
view = new HeaderView(targetContext, prefs, midnightTimer);
|
|
||||||
view.setButtonCount(5);
|
|
||||||
measureView(view, dpToPixels(600), dpToPixels(48));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRender() throws Exception
|
|
||||||
{
|
|
||||||
when(prefs.isCheckmarkSequenceReversed()).thenReturn(false);
|
|
||||||
|
|
||||||
assertRenders(view, PATH + "render.png");
|
|
||||||
|
|
||||||
verify(prefs).isCheckmarkSequenceReversed();
|
|
||||||
verifyNoMoreInteractions(prefs);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRender_reverse() throws Exception
|
|
||||||
{
|
|
||||||
when(prefs.isCheckmarkSequenceReversed()).thenReturn(true);
|
|
||||||
|
|
||||||
assertRenders(view, PATH + "render_reverse.png");
|
|
||||||
|
|
||||||
verify(prefs).isCheckmarkSequenceReversed();
|
|
||||||
verifyNoMoreInteractions(prefs);
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,68 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016-2021 Álinson Santos Xavier <git@axavier.org>
|
||||||
|
*
|
||||||
|
* 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.list.views
|
||||||
|
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import androidx.test.filters.MediumTest
|
||||||
|
import com.nhaarman.mockitokotlin2.doReturn
|
||||||
|
import com.nhaarman.mockitokotlin2.mock
|
||||||
|
import com.nhaarman.mockitokotlin2.whenever
|
||||||
|
import org.isoron.uhabits.BaseViewTest
|
||||||
|
import org.junit.Before
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
import org.mockito.Mockito
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
@MediumTest
|
||||||
|
class HeaderViewTest : BaseViewTest() {
|
||||||
|
private var view: HeaderView? = null
|
||||||
|
|
||||||
|
@Before
|
||||||
|
override fun setUp() {
|
||||||
|
super.setUp()
|
||||||
|
prefs = mock()
|
||||||
|
view = HeaderView(targetContext, prefs, mock())
|
||||||
|
view!!.buttonCount = 5
|
||||||
|
measureView(view, dpToPixels(600), dpToPixels(48))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testRender() {
|
||||||
|
Mockito.`when`(prefs.isCheckmarkSequenceReversed).thenReturn(false)
|
||||||
|
assertRenders(view, PATH + "render.png")
|
||||||
|
Mockito.verify(prefs).isCheckmarkSequenceReversed
|
||||||
|
Mockito.verifyNoMoreInteractions(prefs)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testRender_reverse() {
|
||||||
|
doReturn(true).whenever(prefs).isCheckmarkSequenceReversed
|
||||||
|
// Mockito.`when`(prefs.isCheckmarkSequenceReversed).thenReturn(true)
|
||||||
|
assertRenders(view, PATH + "render_reverse.png")
|
||||||
|
Mockito.verify(prefs).isCheckmarkSequenceReversed
|
||||||
|
Mockito.verifyNoMoreInteractions(prefs)
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val PATH = "habits/list/HeaderView/"
|
||||||
|
}
|
||||||
|
}
|
@ -1,80 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2016-2021 Álinson Santos Xavier <git@axavier.org>
|
|
||||||
*
|
|
||||||
* 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.list.views;
|
|
||||||
|
|
||||||
import androidx.test.filters.*;
|
|
||||||
import androidx.test.runner.*;
|
|
||||||
|
|
||||||
import androidx.test.ext.junit.runners.AndroidJUnit4;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
|
||||||
import org.isoron.uhabits.core.ui.screens.habits.list.*;
|
|
||||||
import org.junit.*;
|
|
||||||
import org.junit.runner.*;
|
|
||||||
|
|
||||||
import static org.hamcrest.CoreMatchers.*;
|
|
||||||
import static org.hamcrest.MatcherAssert.*;
|
|
||||||
import static org.mockito.Mockito.*;
|
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
|
||||||
@MediumTest
|
|
||||||
public class HintViewTest extends BaseViewTest
|
|
||||||
{
|
|
||||||
public static final String PATH = "habits/list/HintView/";
|
|
||||||
|
|
||||||
private HintView view;
|
|
||||||
|
|
||||||
private HintList list;
|
|
||||||
|
|
||||||
@Before
|
|
||||||
@Override
|
|
||||||
public void setUp()
|
|
||||||
{
|
|
||||||
super.setUp();
|
|
||||||
|
|
||||||
list = mock(HintList.class);
|
|
||||||
view = new HintView(targetContext, list);
|
|
||||||
measureView(view, 400, 200);
|
|
||||||
|
|
||||||
String text =
|
|
||||||
"Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
|
|
||||||
|
|
||||||
when(list.shouldShow()).thenReturn(true);
|
|
||||||
when(list.pop()).thenReturn(text);
|
|
||||||
|
|
||||||
view.showNext();
|
|
||||||
skipAnimation(view);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRender() throws Exception
|
|
||||||
{
|
|
||||||
assertRenders(view, PATH + "render.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testClick() throws Exception
|
|
||||||
{
|
|
||||||
assertThat(view.getAlpha(), equalTo(1f));
|
|
||||||
view.performClick();
|
|
||||||
skipAnimation(view);
|
|
||||||
assertThat(view.getAlpha(), equalTo(0f));
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,72 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016-2021 Álinson Santos Xavier <git@axavier.org>
|
||||||
|
*
|
||||||
|
* 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.list.views
|
||||||
|
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import androidx.test.filters.MediumTest
|
||||||
|
import com.nhaarman.mockitokotlin2.doReturn
|
||||||
|
import com.nhaarman.mockitokotlin2.mock
|
||||||
|
import com.nhaarman.mockitokotlin2.whenever
|
||||||
|
import org.hamcrest.CoreMatchers
|
||||||
|
import org.hamcrest.MatcherAssert
|
||||||
|
import org.isoron.uhabits.BaseViewTest
|
||||||
|
import org.isoron.uhabits.core.ui.screens.habits.list.HintList
|
||||||
|
import org.junit.Before
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
@MediumTest
|
||||||
|
class HintViewTest : BaseViewTest() {
|
||||||
|
private lateinit var view: HintView
|
||||||
|
private lateinit var list: HintList
|
||||||
|
@Before
|
||||||
|
override fun setUp() {
|
||||||
|
super.setUp()
|
||||||
|
list = mock()
|
||||||
|
view = HintView(targetContext, list)
|
||||||
|
measureView(view, 400f, 200f)
|
||||||
|
val text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
||||||
|
doReturn(true).whenever(list).shouldShow()
|
||||||
|
doReturn(text).whenever(list).pop()
|
||||||
|
// Mockito.`when`(list.shouldShow()).thenReturn(true)
|
||||||
|
// Mockito.`when`(list.pop()).thenReturn(text)
|
||||||
|
view.showNext()
|
||||||
|
skipAnimation(view)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testRender() {
|
||||||
|
assertRenders(view, PATH + "render.png")
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testClick() {
|
||||||
|
MatcherAssert.assertThat(view.alpha, CoreMatchers.equalTo(1f))
|
||||||
|
view.performClick()
|
||||||
|
skipAnimation(view)
|
||||||
|
MatcherAssert.assertThat(view.alpha, CoreMatchers.equalTo(0f))
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val PATH = "habits/list/HintView/"
|
||||||
|
}
|
||||||
|
}
|
@ -1,198 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2016-2021 Álinson Santos Xavier <git@axavier.org>
|
|
||||||
*
|
|
||||||
* 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.database;
|
|
||||||
|
|
||||||
import org.apache.commons.lang3.builder.*;
|
|
||||||
import org.isoron.uhabits.core.*;
|
|
||||||
import org.junit.*;
|
|
||||||
|
|
||||||
import static org.hamcrest.MatcherAssert.assertThat;
|
|
||||||
import static org.hamcrest.core.IsEqual.equalTo;
|
|
||||||
import static org.junit.Assert.assertNotNull;
|
|
||||||
import static org.junit.Assert.assertNull;
|
|
||||||
|
|
||||||
|
|
||||||
public class RepositoryTest extends BaseUnitTest
|
|
||||||
{
|
|
||||||
private Repository<ThingRecord> repository;
|
|
||||||
|
|
||||||
private Database db;
|
|
||||||
|
|
||||||
@Before
|
|
||||||
@Override
|
|
||||||
public void setUp() throws Exception
|
|
||||||
{
|
|
||||||
super.setUp();
|
|
||||||
this.db = BaseUnitTest.Companion.buildMemoryDatabase();
|
|
||||||
repository = new Repository<>(ThingRecord.class, db);
|
|
||||||
|
|
||||||
db.execute("drop table if exists tests");
|
|
||||||
db.execute("create table tests(" +
|
|
||||||
"id integer not null primary key autoincrement, " +
|
|
||||||
"color_number integer not null, score float not null, " +
|
|
||||||
"name string)");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testFind() throws Exception
|
|
||||||
{
|
|
||||||
db.execute("insert into tests(id, color_number, name, score) " +
|
|
||||||
"values (10, 20, 'hello', 8.0)");
|
|
||||||
|
|
||||||
ThingRecord record = repository.find(10L);
|
|
||||||
|
|
||||||
assertNotNull(record);
|
|
||||||
assertThat(record.id, equalTo(10L));
|
|
||||||
assertThat(record.color, equalTo(20));
|
|
||||||
assertThat(record.name, equalTo("hello"));
|
|
||||||
assertThat(record.score, equalTo(8.0));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testSave_withId() throws Exception
|
|
||||||
{
|
|
||||||
ThingRecord record = new ThingRecord();
|
|
||||||
record.id = 50L;
|
|
||||||
record.color = 10;
|
|
||||||
record.name = "hello";
|
|
||||||
record.score = 5.0;
|
|
||||||
repository.save(record);
|
|
||||||
assertThat(record, equalTo(repository.find(50L)));
|
|
||||||
|
|
||||||
record.name = "world";
|
|
||||||
record.score = 128.0;
|
|
||||||
repository.save(record);
|
|
||||||
assertThat(record, equalTo(repository.find(50L)));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testSave_withNull() throws Exception
|
|
||||||
{
|
|
||||||
ThingRecord record = new ThingRecord();
|
|
||||||
record.color = 50;
|
|
||||||
record.name = null;
|
|
||||||
record.score = 12.0;
|
|
||||||
repository.save(record);
|
|
||||||
|
|
||||||
ThingRecord retrieved = repository.find(record.id);
|
|
||||||
assertNotNull(retrieved);
|
|
||||||
assertNull(retrieved.name);
|
|
||||||
assertThat(record, equalTo(retrieved));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testSave_withoutId() throws Exception
|
|
||||||
{
|
|
||||||
ThingRecord r1 = new ThingRecord();
|
|
||||||
r1.color = 10;
|
|
||||||
r1.name = "hello";
|
|
||||||
r1.score = 16.0;
|
|
||||||
repository.save(r1);
|
|
||||||
|
|
||||||
ThingRecord r2 = new ThingRecord();
|
|
||||||
r2.color = 20;
|
|
||||||
r2.name = "world";
|
|
||||||
r2.score = 2.0;
|
|
||||||
repository.save(r2);
|
|
||||||
|
|
||||||
assertThat(r1.id, equalTo(1L));
|
|
||||||
assertThat(r2.id, equalTo(2L));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRemove() throws Exception
|
|
||||||
{
|
|
||||||
ThingRecord rec1 = new ThingRecord();
|
|
||||||
rec1.color = 10;
|
|
||||||
rec1.name = "hello";
|
|
||||||
rec1.score = 16.0;
|
|
||||||
repository.save(rec1);
|
|
||||||
|
|
||||||
ThingRecord rec2 = new ThingRecord();
|
|
||||||
rec2.color = 20;
|
|
||||||
rec2.name = "world";
|
|
||||||
rec2.score = 32.0;
|
|
||||||
repository.save(rec2);
|
|
||||||
|
|
||||||
long id = rec1.id;
|
|
||||||
assertThat(rec1, equalTo(repository.find(id)));
|
|
||||||
assertThat(rec2, equalTo(repository.find(rec2.id)));
|
|
||||||
|
|
||||||
repository.remove(rec1);
|
|
||||||
assertThat(rec1.id, equalTo(null));
|
|
||||||
assertNull(repository.find(id));
|
|
||||||
assertThat(rec2, equalTo(repository.find(rec2.id)));
|
|
||||||
|
|
||||||
repository.remove(rec1); // should have no effect
|
|
||||||
assertNull(repository.find(id));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Table(name = "tests")
|
|
||||||
class ThingRecord
|
|
||||||
{
|
|
||||||
@Column
|
|
||||||
public Long id;
|
|
||||||
|
|
||||||
@Column
|
|
||||||
public String name;
|
|
||||||
|
|
||||||
@Column(name = "color_number")
|
|
||||||
public Integer color;
|
|
||||||
|
|
||||||
@Column
|
|
||||||
public Double score;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object o)
|
|
||||||
{
|
|
||||||
if (this == o) return true;
|
|
||||||
|
|
||||||
if (o == null || getClass() != o.getClass()) return false;
|
|
||||||
|
|
||||||
ThingRecord record = (ThingRecord) o;
|
|
||||||
|
|
||||||
return new EqualsBuilder()
|
|
||||||
.append(id, record.id)
|
|
||||||
.append(name, record.name)
|
|
||||||
.append(color, record.color)
|
|
||||||
.isEquals();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode()
|
|
||||||
{
|
|
||||||
return new HashCodeBuilder(17, 37)
|
|
||||||
.append(id)
|
|
||||||
.append(name)
|
|
||||||
.append(color)
|
|
||||||
.toHashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString()
|
|
||||||
{
|
|
||||||
return new ToStringBuilder(this)
|
|
||||||
.append("id", id)
|
|
||||||
.append("name", name)
|
|
||||||
.append("color", color)
|
|
||||||
.toString();
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,156 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016-2021 Álinson Santos Xavier <git@axavier.org>
|
||||||
|
*
|
||||||
|
* 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.database
|
||||||
|
|
||||||
|
import org.hamcrest.MatcherAssert
|
||||||
|
import org.hamcrest.core.IsEqual
|
||||||
|
import org.isoron.uhabits.core.BaseUnitTest
|
||||||
|
import org.junit.Assert
|
||||||
|
import org.junit.Before
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
class RepositoryTest : BaseUnitTest() {
|
||||||
|
private var repository: Repository<ThingRecord>? = null
|
||||||
|
private var db: Database? = null
|
||||||
|
@Before
|
||||||
|
@Throws(Exception::class)
|
||||||
|
override fun setUp() {
|
||||||
|
super.setUp()
|
||||||
|
db = buildMemoryDatabase()
|
||||||
|
repository = Repository(ThingRecord::class.java, db!!)
|
||||||
|
db!!.execute("drop table if exists tests")
|
||||||
|
db!!.execute(
|
||||||
|
"create table tests(" +
|
||||||
|
"id integer not null primary key autoincrement, " +
|
||||||
|
"color_number integer not null, score float not null, " +
|
||||||
|
"name string)"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testFind() {
|
||||||
|
db!!.execute(
|
||||||
|
"insert into tests(id, color_number, name, score) " +
|
||||||
|
"values (10, 20, 'hello', 8.0)"
|
||||||
|
)
|
||||||
|
val record = repository!!.find(10L)
|
||||||
|
Assert.assertNotNull(record)
|
||||||
|
MatcherAssert.assertThat(record!!.id, IsEqual.equalTo(10L))
|
||||||
|
MatcherAssert.assertThat(record.color, IsEqual.equalTo(20))
|
||||||
|
MatcherAssert.assertThat(record.name, IsEqual.equalTo("hello"))
|
||||||
|
MatcherAssert.assertThat(record.score, IsEqual.equalTo(8.0))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testSave_withId() {
|
||||||
|
val record = ThingRecord()
|
||||||
|
record.id = 50L
|
||||||
|
record.color = 10
|
||||||
|
record.name = "hello"
|
||||||
|
record.score = 5.0
|
||||||
|
repository!!.save(record)
|
||||||
|
MatcherAssert.assertThat(
|
||||||
|
record,
|
||||||
|
IsEqual.equalTo(
|
||||||
|
repository!!.find(50L)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
record.name = "world"
|
||||||
|
record.score = 128.0
|
||||||
|
repository!!.save(record)
|
||||||
|
MatcherAssert.assertThat(
|
||||||
|
record,
|
||||||
|
IsEqual.equalTo(
|
||||||
|
repository!!.find(50L)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testSave_withNull() {
|
||||||
|
val record = ThingRecord()
|
||||||
|
record.color = 50
|
||||||
|
record.name = null
|
||||||
|
record.score = 12.0
|
||||||
|
repository!!.save(record)
|
||||||
|
val retrieved = repository!!.find(record.id!!)
|
||||||
|
Assert.assertNotNull(retrieved)
|
||||||
|
Assert.assertNull(retrieved!!.name)
|
||||||
|
MatcherAssert.assertThat(record, IsEqual.equalTo(retrieved))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testSave_withoutId() {
|
||||||
|
val r1 = ThingRecord()
|
||||||
|
r1.color = 10
|
||||||
|
r1.name = "hello"
|
||||||
|
r1.score = 16.0
|
||||||
|
repository!!.save(r1)
|
||||||
|
val r2 = ThingRecord()
|
||||||
|
r2.color = 20
|
||||||
|
r2.name = "world"
|
||||||
|
r2.score = 2.0
|
||||||
|
repository!!.save(r2)
|
||||||
|
MatcherAssert.assertThat(r1.id, IsEqual.equalTo(1L))
|
||||||
|
MatcherAssert.assertThat(r2.id, IsEqual.equalTo(2L))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(Exception::class)
|
||||||
|
fun testRemove() {
|
||||||
|
val rec1 = ThingRecord()
|
||||||
|
rec1.color = 10
|
||||||
|
rec1.name = "hello"
|
||||||
|
rec1.score = 16.0
|
||||||
|
repository!!.save(rec1)
|
||||||
|
val rec2 = ThingRecord()
|
||||||
|
rec2.color = 20
|
||||||
|
rec2.name = "world"
|
||||||
|
rec2.score = 32.0
|
||||||
|
repository!!.save(rec2)
|
||||||
|
val id = rec1.id!!
|
||||||
|
MatcherAssert.assertThat(
|
||||||
|
rec1,
|
||||||
|
IsEqual.equalTo(
|
||||||
|
repository!!.find(id)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
MatcherAssert.assertThat(
|
||||||
|
rec2,
|
||||||
|
IsEqual.equalTo(
|
||||||
|
repository!!.find(rec2.id!!)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
repository!!.remove(rec1)
|
||||||
|
MatcherAssert.assertThat(rec1.id, IsEqual.equalTo(null))
|
||||||
|
Assert.assertNull(repository!!.find(id))
|
||||||
|
MatcherAssert.assertThat(
|
||||||
|
rec2,
|
||||||
|
IsEqual.equalTo(
|
||||||
|
repository!!.find(rec2.id!!)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
repository!!.remove(rec1) // should have no effect
|
||||||
|
Assert.assertNull(repository!!.find(id))
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,46 @@
|
|||||||
|
package org.isoron.uhabits.core.database
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.builder.EqualsBuilder
|
||||||
|
import org.apache.commons.lang3.builder.HashCodeBuilder
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder
|
||||||
|
|
||||||
|
@Table(name = "tests")
|
||||||
|
open class ThingRecord {
|
||||||
|
@field:Column
|
||||||
|
open var id: Long? = null
|
||||||
|
|
||||||
|
@field:Column
|
||||||
|
open var name: String? = null
|
||||||
|
|
||||||
|
@field:Column(name = "color_number")
|
||||||
|
open var color: Int? = null
|
||||||
|
|
||||||
|
@field:Column
|
||||||
|
open var score: Double? = null
|
||||||
|
override fun equals(other: Any?): Boolean {
|
||||||
|
if (this === other) return true
|
||||||
|
if (other == null || javaClass != other.javaClass) return false
|
||||||
|
val record = other as ThingRecord
|
||||||
|
return EqualsBuilder()
|
||||||
|
.append(id, record.id)
|
||||||
|
.append(name, record.name)
|
||||||
|
.append(color, record.color)
|
||||||
|
.isEquals
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hashCode(): Int {
|
||||||
|
return HashCodeBuilder(17, 37)
|
||||||
|
.append(id)
|
||||||
|
.append(name)
|
||||||
|
.append(color)
|
||||||
|
.toHashCode()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun toString(): String {
|
||||||
|
return ToStringBuilder(this)
|
||||||
|
.append("id", id)
|
||||||
|
.append("name", name)
|
||||||
|
.append("color", color)
|
||||||
|
.toString()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue