MCPcopy Index your code
hub / github.com/blipinsk/cortado

github.com/blipinsk/cortado @1.2.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release 1.2.0 ↗ · + Follow
1,022 symbols 2,925 edges 46 files 24 documented · 2%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Image

Android Espresso made more fluent :coffee:

Check out my blog :squirrel: or say hi on Twitter.


Android Arsenal Android Weekly Build Status

Overview

Cortado provides a layer of abstraction above Espresso, so it's a bit easier to use.

Remember: It is Google Espresso underneath. You can still mess up your tests the same way you would when using pure Espresso. Cortado just gives you a bit nicer way to communicate with Espresso.

Espresso vs. Cortado

  1. Get a Matcher for clickable views with R.id.text and with text NOT "Example"
Framework Code example
Espresso Matchers.allOf(withId(R.id.text), isClickable(), Matchers.not(withText("Example")));
Cortado Cortado.view().withId(R.id.text).and().isClickable().and().not().withText("Example");
  1. Get a Matcher for views that have text example or have parent FrameLayout
Framework Code example
Espresso Matchers.anyOf(withText("example"), withParent(isAssignableFrom(FrameLayout.class)));
Cortado Cortado.view().withText("example").or().withParent(isAssignableFrom(FrameLayout.class));
  1. Click on a View with R.id.button
Framework Code example
Espresso Espresso.onView(withId(R.id.button)).perform(ViewActions.click());
Cortado Cortado.onView().withId(R.id.button).perform().click();
  1. Check if a View with text example is visible
Framework Code example
Espresso Espresso.onView(withText("example")).check(ViewAssertions.matches(isDisplayed()));
Cortado Cortado.onView().withText("example").check().matches(isDisplayed());
  1. Replace a text on enabled view with R.id.edit
Framework Code example
Espresso Espresso.onView(Matchers.allOf(withId(R.id.edit),isEnabled())).perform(ViewActions.replaceText("changed"));
Cortado Cortado.onView().withId(R.id.edit).and().isEnabled().perform().replaceText("changed");

Features

  1. Creating an instance of org.hamcrest.Matcher<View>

    java org.hamcrest.Matcher<View> matcher = Cortado.view().withId(R.id.example);

  2. Creating an instance of android.support.test.espresso.ViewInteraction

    java ViewInteraction viewInteraction = Cortado.onView().withId(R.id.example).perform(click());

  3. Fluently creating Matchers.allOf(...)

    java Cortado.view().withId(R.id.example).and().withText("example").and().isClickable();

  4. Fluently creating Matchers.anyOf(...)

    java Cortado.view().withId(R.id.example).or().withText("example").or().isClickable();

  5. Fluently negating conditions

    java Cortado.view().not().withId(R.id.example).and().withText("example").and().not().isClickable();

  6. Fluently performing single action (on ViewInteraction)

    java Cortado.onView().withId(R.id.example).perform().click();

  7. Fluently checking matches (on ViewInteraction)

    java Cortado.onView().withId(R.id.example).check().matches(Cortado.view().withText("example"));

Compatibility

I wanted the api of Cortado to be compatible with Espresso as much as possible. That's why you can do stuff like that:

Espresso.onView(Cortado.view().withId(R.id.example).and().withText("Example")).perform(click());

Including In Your Project

dependencies {
    androidTestCompile 'com.bartoszlipinski:cortado:1.2.0'
}

Developed by

  • Bartosz Lipiński

License

Copyright 2017 Bartosz Lipiński

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.

Extension points exported contracts — how you extend this code

Matching (Interface)
(no doc) [4 implementers]
cortado/src/main/java/cortado/Matching.java
Interactable (Interface)
(no doc) [3 implementers]
cortado/src/main/java/cortado/Interactable.java

Core symbols most depended-on inside this repo

withText
called by 112
cortado/src/main/java/cortado/Matching.java
withHint
called by 56
cortado/src/main/java/cortado/Matching.java
returned
called by 54
cortado/src/main/java/cortado/NotCompletable.java
clearCached
called by 50
cortado/src/main/java/cortado/Cortado.java
addMatcher
called by 50
cortado/src/main/java/cortado/Cortado.java
getCortado
called by 49
cortado/src/main/java/cortado/Matcher.java
view
called by 49
cortado/src/main/java/cortado/Cortado.java
withContentDescription
called by 48
cortado/src/main/java/cortado/Matching.java

Shape

Method 938
Class 76
Interface 7
Enum 1

Languages

Java100%

Modules by API surface

cortado/src/main/java/cortado/Negated.java244 symbols
cortado/src/main/java/cortado/Unfinished.java166 symbols
cortado/src/main/java/cortado/Cortado.java115 symbols
cortado/src/main/java/cortado/Start.java82 symbols
cortado/src/test/java/cortado/NotCompletable_Tests.java58 symbols
cortado/src/test/java/cortado/Cortado_Tests.java53 symbols
cortado/src/main/java/cortado/NotCompletable.java38 symbols
cortado/src/main/java/cortado/Matching.java36 symbols
cortado/src/main/java/cortado/ViewInteraction.java30 symbols
cortado/src/main/java/cortado/Interactable.java30 symbols
cortado/src/test/java/cortado/SpecificViews_Tests.java23 symbols
cortado/src/test/java/internal/RecordingDescription.java8 symbols

For agents

$ claude mcp add cortado \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page