tests added

This commit is contained in:
Sergey Solovyev
2013-07-11 16:31:46 +04:00
parent 1abaed2bab
commit 1aee47049d
7 changed files with 188 additions and 142 deletions

View File

@@ -22,12 +22,9 @@
package org.solovyev.android.calculator.wizard;
import android.app.Activity;
import android.preference.PreferenceManager;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.view.Display;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
@@ -37,16 +34,23 @@ import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;
import org.solovyev.android.calculator.CalculatorPreferences;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.*;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import static org.solovyev.android.calculator.CalculatorApplication.getPreferences;
import static org.solovyev.android.calculator.CalculatorPreferences.Gui.Layout.main_calculator;
import static org.solovyev.android.calculator.CalculatorPreferences.Gui.Layout.main_calculator_mobile;
import static org.solovyev.android.calculator.CalculatorPreferences.OnscreenCalculator.showAppIcon;
import static org.solovyev.android.calculator.wizard.CalculatorLayout.big_buttons;
import static org.solovyev.android.calculator.wizard.CalculatorLayout.optimized;
import static org.solovyev.android.calculator.wizard.CalculatorMode.engineer;
import static org.solovyev.android.calculator.wizard.CalculatorMode.simple;
import static org.solovyev.android.calculator.wizard.ChooseLayoutWizardStep.LAYOUT;
import static org.solovyev.android.calculator.wizard.ChooseModeWizardStep.MODE;
import static org.solovyev.android.calculator.wizard.OnScreenCalculatorWizardStep.ONSCREEN_CALCULATOR_ENABLED;
import static org.solovyev.android.calculator.wizard.WizardStep.choose_layout;
import static org.solovyev.android.calculator.wizard.WizardStep.choose_mode;
import static org.solovyev.android.calculator.wizard.WizardStep.on_screen_calculator;
@RunWith(RobolectricTestRunner.class)
public class WizardStepTest {
@@ -112,7 +116,7 @@ public class WizardStepTest {
final ChooseLayoutWizardStep layoutFragment = mock(ChooseLayoutWizardStep.class);
when(layoutFragment.getSelectedLayout()).thenReturn(layout);
when(layoutFragment.getActivity()).thenReturn(activity);
WizardStep.choose_layout.onNext(layoutFragment);
choose_layout.onNext(layoutFragment);
}
/* @Config(qualifiers = "large")
@@ -124,6 +128,56 @@ public class WizardStepTest {
@Config(qualifiers = "normal")
@Test
public void testChooseLayoutShouldNotBeVisibleForMobile() throws Exception {
assertFalse(WizardStep.choose_layout.isVisible());
assertFalse(choose_layout.isVisible());
}
@Test
public void testOnscreenCalculatorShouldNotBeShown() throws Exception {
doOnscreenStep(false);
assertFalse(showAppIcon.getPreference(getPreferences()));
}
@Test
public void testOnscreenCalculatorShouldBeShown() throws Exception {
doOnscreenStep(true);
assertTrue(showAppIcon.getPreference(getPreferences()));
}
private void doOnscreenStep(boolean onscreenCalculatorEnabled) {
final OnScreenCalculatorWizardStep f = mock(OnScreenCalculatorWizardStep.class);
when(f.isOnscreenCalculatorEnabled()).thenReturn(onscreenCalculatorEnabled);
when(f.getActivity()).thenReturn(activity);
WizardStep.on_screen_calculator.onNext(f);
}
@SuppressWarnings("ConstantConditions")
@Test
public void testChooseLayoutFragmentArgs() throws Exception {
CalculatorPreferences.Gui.layout.putPreference(getPreferences(), CalculatorPreferences.Gui.Layout.simple);
assertEquals(CalculatorLayout.optimized, choose_layout.getFragmentArgs().getSerializable(LAYOUT));
CalculatorPreferences.Gui.layout.putPreference(getPreferences(), CalculatorPreferences.Gui.Layout.simple_mobile);
assertEquals(CalculatorLayout.big_buttons, choose_layout.getFragmentArgs().getSerializable(LAYOUT));
}
@SuppressWarnings("ConstantConditions")
@Test
public void testChooseModeFragmentArgs() throws Exception {
CalculatorPreferences.Gui.layout.putPreference(getPreferences(), CalculatorPreferences.Gui.Layout.main_calculator);
assertEquals(CalculatorMode.engineer, choose_mode.getFragmentArgs().getSerializable(MODE));
CalculatorPreferences.Gui.layout.putPreference(getPreferences(), CalculatorPreferences.Gui.Layout.simple_mobile);
assertEquals(CalculatorMode.simple, choose_mode.getFragmentArgs().getSerializable(MODE));
}
@SuppressWarnings("ConstantConditions")
@Test
public void testOnscreenFragmentArgs() throws Exception {
CalculatorPreferences.OnscreenCalculator.showAppIcon.putPreference(getPreferences(), true);
assertTrue(on_screen_calculator.getFragmentArgs().getBoolean(ONSCREEN_CALCULATOR_ENABLED));
CalculatorPreferences.OnscreenCalculator.showAppIcon.putPreference(getPreferences(), false);
assertFalse(on_screen_calculator.getFragmentArgs().getBoolean(ONSCREEN_CALCULATOR_ENABLED));
}
}

View File

@@ -0,0 +1,88 @@
package org.solovyev.android.calculator.wizard;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;
import static org.junit.Assert.*;
import static org.solovyev.android.calculator.wizard.WizardStep.choose_mode;
import static org.solovyev.android.calculator.wizard.WizardStep.last;
import static org.solovyev.android.calculator.wizard.WizardStep.welcome;
import static org.solovyev.android.calculator.wizard.Wizards.*;
/**
* User: serso
* Date: 7/11/13
* Time: 10:29 AM
*/
@RunWith(value = RobolectricTestRunner.class)
public class WizardsTest {
@Test
public void testDefaultFlowShouldNotContainWelcomeAndLastSteps() throws Exception {
final WizardFlow flow = Wizards.newDefaultWizardFlow();
assertNull(flow.getStep(welcome.getName()));
assertNull(flow.getStep(last.getName()));
}
@Test
public void testFirstTimeFlowShouldContainWelcomeAndLastSteps() throws Exception {
final WizardFlow flow = Wizards.newFirstTimeWizardFlow();
assertNotNull(flow.getStep(welcome.getName()));
assertNotNull(flow.getStep(last.getName()));
}
@Test
public void testShouldThrowExceptionIfUnknownFlow() throws Exception {
try {
getWizardFlow("testtesttesttesttest");
fail();
} catch (IllegalArgumentException e) {
// ok
}
}
@Test
public void testShouldReturnFlow() throws Exception {
assertNotNull(getWizardFlow(FIRST_TIME_WIZARD));
assertNotNull(getWizardFlow(DEFAULT_WIZARD_FLOW));
}
@Test
public void testShouldSaveWizardIsFinishedWhenNotLastStepAndForce() throws Exception {
assertFalse(isWizardFinished(FIRST_TIME_WIZARD));
final WizardFlow flow = getWizardFlow(FIRST_TIME_WIZARD);
saveWizardFinished(flow, WizardStep.drag_button, true);
assertTrue(isWizardFinished(FIRST_TIME_WIZARD));
}
@Test
public void testShouldNotSaveWizardIsFinishedWhenNotLastStepAndNotForce() throws Exception {
assertFalse(isWizardFinished(FIRST_TIME_WIZARD));
final WizardFlow flow = getWizardFlow(FIRST_TIME_WIZARD);
saveWizardFinished(flow, WizardStep.drag_button, false);
assertFalse(isWizardFinished(FIRST_TIME_WIZARD));
}
@Test
public void testShouldSaveWizardIsFinishedWhenLastStep() throws Exception {
assertFalse(isWizardFinished(FIRST_TIME_WIZARD));
final WizardFlow flow = getWizardFlow(FIRST_TIME_WIZARD);
saveWizardFinished(flow, WizardStep.last, false);
assertTrue(isWizardFinished(FIRST_TIME_WIZARD));
}
@Test
public void testShouldSaveLastWizardStep() throws Exception {
assertFalse(isWizardStarted(FIRST_TIME_WIZARD));
assertNull(getLastSavedWizardStepName(FIRST_TIME_WIZARD));
final WizardFlow flow = getWizardFlow(FIRST_TIME_WIZARD);
saveLastWizardStep(flow, choose_mode);
assertTrue(isWizardStarted(FIRST_TIME_WIZARD));
assertEquals(choose_mode.name(), getLastSavedWizardStepName(FIRST_TIME_WIZARD));
}
}