Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
Add real behavior for ShadowBundle#getParcelableArray
Browse files Browse the repository at this point in the history
  • Loading branch information
WonderCsabo committed Dec 27, 2014
1 parent 2251a76 commit c94ba98
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 11 deletions.
@@ -0,0 +1,50 @@
/**
* Copyright (C) 2010-2014 eBusiness Information, Excilys Group
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed To in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.androidannotations.test15;

import static org.robolectric.Robolectric.directlyOn;

import java.util.Arrays;

import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.annotation.RealObject;
import org.robolectric.internal.ReflectionHelpers;
import org.robolectric.shadows.ShadowBundle;

import android.os.Bundle;
import android.os.Parcelable;

/***
* Workaround for https://github.com/robolectric/robolectric/issues/1440
*/
@Implements(Bundle.class)
public class CustomShadowBundle extends ShadowBundle {

@RealObject
private Bundle realObject;

@Implementation
public Parcelable[] getParcelableArray(String key) {
Parcelable[] array = directlyOn(realObject, Bundle.class, "getParcelableArray", new ReflectionHelpers.ClassParameter<String>(String.class, key));

if (array == null) {
return null;
}

return Arrays.copyOf(array, array.length, Parcelable[].class);
}
}
Expand Up @@ -21,9 +21,11 @@
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;

import android.os.Bundle;

@Config(shadows = CustomShadowBundle.class)
@RunWith(RobolectricTestRunner.class)
public class FragmentArgsTest {

Expand Down
Expand Up @@ -24,11 +24,13 @@
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;
import org.robolectric.util.ActivityController;

import android.app.Activity;
import android.content.Context;

@Config(shadows = CustomShadowBundle.class)
@RunWith(RobolectricTestRunner.class)
public class InjectExtraTest {

Expand Down
Expand Up @@ -22,27 +22,30 @@
import java.util.Arrays;
import java.util.Collection;

import org.androidannotations.test15.CustomShadowBundle;
import org.fest.util.Lists;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.ParameterizedRobolectricTestRunnerWorkaround;
import org.robolectric.ParameterizedRobolectricTestRunner.Parameters;
import org.robolectric.ParameterizedRobolectricTestRunnerWorkaround;
import org.robolectric.Robolectric;
import org.robolectric.annotation.Config;

import android.os.Bundle;

@Config(shadows = CustomShadowBundle.class)
@RunWith(ParameterizedRobolectricTestRunnerWorkaround.class)
public class SaveInstanceStateActivityParameterizedTest {

@Parameters(name = "{0}")
public static Collection<Object[]> generateTestCases() throws Exception {
ArrayList<MyGenericParcelableBean<Integer>> myGenericParcelableBeanArrayList = new ArrayList<MyGenericParcelableBean<Integer>>();
myGenericParcelableBeanArrayList.add(new MyGenericParcelableBean<Integer>((Integer) 1));
myGenericParcelableBeanArrayList.add(new MyGenericParcelableBean<Integer>((Integer) 2));
myGenericParcelableBeanArrayList.add(new MyGenericParcelableBean<Integer>((Integer) 3));
myGenericParcelableBeanArrayList.add(new MyGenericParcelableBean<Integer>(1));
myGenericParcelableBeanArrayList.add(new MyGenericParcelableBean<Integer>(2));
myGenericParcelableBeanArrayList.add(new MyGenericParcelableBean<Integer>(3));

Object[][] testCases = { //
//
//
{ "myBoolean", true }, //
{ "myBooleanArray", new boolean[] { true, false, true } }, //
{ "myBooleanObject", Boolean.TRUE }, //
Expand Down Expand Up @@ -83,10 +86,10 @@ public static Collection<Object[]> generateTestCases() throws Exception {
{ "mySerializableBeanArray", new MySerializableBean[] { new MySerializableBean(5), new MySerializableBean(6) } }, //
{ "myParcelableBean", new MyParcelableBean(9) }, //
{ "myParcelableBeanArray", new MyParcelableBean[] { new MyParcelableBean(3), new MyParcelableBean(9) } }, //
{ "myGenericSerializableBean", new MyGenericSerializableBean<Integer>((Integer)3)}, //
{ "myGenericSerializableBeanArray", new MyGenericSerializableBean[] {new MyGenericSerializableBean<Integer>((Integer)3), new MyGenericSerializableBean<Integer>((Integer)5)} }, //
{ "myGenericParcelableBean", new MyGenericParcelableBean<String>("Plop !")}, //
{ "myGenericParcelableBeanArray", new MyGenericParcelableBean[] {new MyGenericParcelableBean<Integer>((Integer)3), new MyGenericParcelableBean<Integer>((Integer)5)} }, //
{ "myGenericSerializableBean", new MyGenericSerializableBean<Integer>(3) }, //
{ "myGenericSerializableBeanArray", new MyGenericSerializableBean[] { new MyGenericSerializableBean<Integer>(3), new MyGenericSerializableBean<Integer>(5) } }, //
{ "myGenericParcelableBean", new MyGenericParcelableBean<String>("Plop !") }, //
{ "myGenericParcelableBeanArray", new MyGenericParcelableBean[] { new MyGenericParcelableBean<Integer>(3), new MyGenericParcelableBean<Integer>(5) } }, //
{ "myParcelableBeanArrayList", Lists.newArrayList(new MyParcelableBean(1), new MyParcelableBean(2), new MyParcelableBean(3)) }, //
{ "myGenericParcelableBeanArrayList", myGenericParcelableBeanArrayList }, //
{ "mySerializableBeanArrayList", Lists.newArrayList(new MySerializableBean(1), new MySerializableBean(2), new MySerializableBean(3)) }, //
Expand Down

0 comments on commit c94ba98

Please sign in to comment.