Cappuccino


Source link: https://github.com/metova/Cappuccino

Cappuccino

A sweeter Espresso. At present, there are two main features of Cappuccino:

  1. Never write your own IdlingResource again.
  2. Never manually disable system animations again. By using the SystemAnimations class of Cappuccino, along with the new Cappuccino Animations Gradle plugin, you can automatically disable and re-enable system animations.

##Current version Cappuccino Android library: 0.9.1

Cappuccino Animations Gradle plugin: 0.7.3

##Getting Started In your build.gradle:

repositories {

  // Either repository will work
  mavenCentral()
  jcenter() 
}
dependencies {

 // ...other dependencies...

 debugCompile "com.metova:cappuccino:${
latest_lib_version
}
"
  releaseCompile "com.metova:cappuccino-no-op:${
latest_lib_version
}
" 
}

You will also want to declare the following Espresso dependencies, if you haven't already:

dependencies {

// ...other dependencies...

androidTestCompile 'com.android.support:support-annotations:24.2.1'
  androidTestCompile 'com.android.support.test:runner:0.5'
  androidTestCompile 'com.android.support.test:rules:0.5'
  androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2' 
}

Check here for Espresso setup instructions, and to ensure you're using the latest version.

That's it! (mostly)

Automatically disable and re-enable system animations

If you want to automatically disable and re-enable system animations, there are (unfortunately, but necessarily) several steps to follow. In summary, they are:

  1. Apply the Cappuccino Animations plugin.
  2. Create or modify a debug/AndroidManifest.xml or ( [flavor]Debug/AndroidManifest.xml for each flavor, if you have them), as below.
  3. Add some code to your test classes, as below.

Apply the Cappuccino Animations plugin at the top of your build.gradle:

buildscript {

repositories {

  maven {
 url "https://plugins.gradle.org/m2/" 
}

}

dependencies {

  classpath "gradle.plugin.com.metova:cappuccino-plugin:${
latest_plugin_version
}
"

}
 
}
  apply plugin: "com.metova.cappuccino-animations"

Sample debug/AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android">

<!-- Disable animations on debug builds so that the animations do not interfere with Espresso 

tests. Adding this permission to the manifest is not sufficient - you must also grant the 

permission over adb! -->
  <uses-permission android:name="android.permission.SET_ANIMATION_SCALE" />  </manifest>

Sample test class

If you have all of your test classes inherit from this class, then you only need to do the following once.

import com.metova.cappuccino.animations.SystemAnimations;  public class BaseTestClass {

  @BeforeClass
  public static void disableAnimations() {

SystemAnimations.disableAll(InstrumentationRegistry.getContext());

  
}

@AfterClass
  public static void enableAnimations() {

SystemAnimations.enableAll(InstrumentationRegistry.getContext());

  
}

 // ...test code... 
}

Sample usage

public class MainActivity extends AppCompatActivity {

private TextView mTextHello;

// Declare your CappuccinoResourceWatcher
  private CappuccinoResourceWatcher mCappuccinoResourceWatcher;

@Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

 // Get a reference to a CappuccinoResourceWatcher. This also registers it with Cappuccino

// It will return a no-op version for release builds.

// We pass in 'this' as a convenience. Internally, Cappuccino converts 'this' into a String

mCappuccinoResourceWatcher = Cappuccino.newIdlingResourceWatcher(this);

 mTextHello = (TextView) findViewById(R.id.text_hello);

  
}

@Override
  protected void onResume() {

super.onResume();

initViews();

  
}

private void initViews() {

// This tells Cappuccino that the resoure associated with this Activity is busy, 

// and instrumentation tests should wait...

mCappuccinoResourceWatcher.busy();

// This is our custom animation, that Espresso knows nothing about, but

// Cappuccino does!

new Handler().postDelayed(new Runnable() {

 @Override

 public void run() {

  mTextHello.setVisibility(View.VISIBLE);

  // ...and this tells Cappuccino that the Activity is now idle, and instrumentation tests

  // may now proceed

  mCappuccinoResourceWatcher.idle();

 
}

}
, 500 /* delay in ms */);

  
}
 
}

...and in a test...

public class MainActivityTest {

// optional
  @BeforeClass
  public static void disableAnimations() {

SystemAnimations.disableAll(InstrumentationRegistry.getContext());

  
}

// optional
  @AfterClass
  public static void enableAnimations() {

SystemAnimations.enableAll(InstrumentationRegistry.getContext());

  
}

@Before
  public void setUp() throws Exception {

mActivityTestRule.launchActivity(new Intent());

  
}

@After
  public void tearDown() throws Exception {

Cappuccino.reset();

  
}

@Rule
  private ActivityTestRule<MainActivity> mActivityTestRule = new ActivityTestRule<>(MainActivity.class, true, false);

/** 
  * This test uses the common Espresso idiom for instantiating, registering, and unregistering 
  * custom IdlingResources, but uses our CappuccinoIdlingResource, instead. 
  */
  @Test
  public void testCappuccinoIdlingResource() throws Exception {

CappuccinoIdlingResource idlingResource = new CappuccinoIdlingResource(mActivityTestRule.getActivity());

Espresso.registerIdlingResources(idlingResource);

onView(withId(R.id.text_hello)).check(matches(isDisplayed()));

 Espresso.unregisterIdlingResources(idlingResource);

  
}

/** 
  * As a convenience, Cappuccino permits the following idiom, which keeps track of  
  * CappuccinoIdlingResources in an internal registry, keyed by the name of the object passed in. 
  * In this case, this is our MainActivity, retrieved by calling {
@code mActivityTestRule.getActivity()
}
. 
  */
  @Test
  public void testCappuccinoIdlingResource2() throws Exception {

Cappuccino.registerIdlingResource(mActivityTestRule.getActivity());

onView(withId(R.id.text_hello)).check(matches(isDisplayed()));

 Cappuccino.unregisterIdlingResource(mActivityTestRule.getActivity());

  
}
 
}

Please check out the cappuccino-sample module for more sample usages!

License

Copyright 2016 Metova, Inc.

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.

Resources

WaspDB is a pure Java key/value (NoSQL) database library for Android. It supports AES256 encryption for all the disk storage.

This library is an enhancement to the TextView component that allows you to style various spans of text inside the view.

Parrot is a gradle plugin that allows your app to speak multiple languages, without the hassle of working with multiple resources, using the translation editor or ordering an expensive translation from AS/IDEA

It leverages the Google Translate API in order to translate your string resources into all the languages specified in the configuration.

FAB to Toolbar Button library for Android Material Collapsing Toolbar.

ReDex is an Android bytecode (dex) optimizer originally developed at Facebook. It provides a framework for reading, writing, and analyzing .dex files, and a set of optimization passes that use this framework to improve the bytecode. An APK optimized by ReDex should be smaller and faster than its source.

FoldingCell is an expanding content cell inspired by folding paper material.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes