All Projects → sharenowTech → Endpoint2mock

sharenowTech / Endpoint2mock

Licence: other
Android library which simplifies mocking of Retrofit endpoints

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects
shell
77523 projects

Projects that are alternatives of or similar to Endpoint2mock

go-smtp-mock
SMTP mock server written on Golang. Mimic any 📤 SMTP server behavior for your test environment with fake SMTP server.
Stars: ✭ 76 (+375%)
Mutual labels:  mock-server
restio
HTTP Client for Dart inspired by OkHttp
Stars: ✭ 46 (+187.5%)
Mutual labels:  retrofit
mocat
🐈 Mocat is a mocking toolbar that allows you to interactively develop and test network requests.
Stars: ✭ 27 (+68.75%)
Mutual labels:  mock-server
smockin
Dynamic API, S3 & Mail mocking for web, mobile & microservice development.
Stars: ✭ 74 (+362.5%)
Mutual labels:  mock-server
platypus
Very simple and customizable mock/echo server
Stars: ✭ 15 (-6.25%)
Mutual labels:  mock-server
mock-webpack-plugin
A webpack plugin that starts a json mock server
Stars: ✭ 21 (+31.25%)
Mutual labels:  mock-server
Mockoon
Mockoon is the easiest and quickest way to run mock APIs locally. No remote deployment, no account required, open source.
Stars: ✭ 3,448 (+21450%)
Mutual labels:  mock-server
Retrofit-with-EventBus
Retrofit With EventBus
Stars: ✭ 21 (+31.25%)
Mutual labels:  retrofit
RxHttp
对RxJava2+Retrofit2+OkHttp3的封装
Stars: ✭ 65 (+306.25%)
Mutual labels:  retrofit
ruby-dns-mock
DNS mock server written on 💎 Ruby. Mimic any DNS records for your test environment with fake DNS server.
Stars: ✭ 50 (+212.5%)
Mutual labels:  mock-server
Library-Spring
The library web application where you can borrow books. It's Spring MVC and Hibernate project.
Stars: ✭ 73 (+356.25%)
Mutual labels:  retrofit
RxjavaSamples
This repo is a container for some samples using RXJAVA2 samples
Stars: ✭ 12 (-25%)
Mutual labels:  retrofit
Photos
No description or website provided.
Stars: ✭ 74 (+362.5%)
Mutual labels:  retrofit
RestaurantsExplorer
Android application build with MVVM Pattern, using Zomato API to enable search cities arround the world and display the city restaurants on a map.
Stars: ✭ 32 (+100%)
Mutual labels:  retrofit
StatefulLiveData
StatefulLiveData is a lean, yet powerful tool that harnesses the capabilities of LiveData and enhances them, enabling the observer to distinguish between different states the data can be in, such as Success, Loading and Error.
Stars: ✭ 18 (+12.5%)
Mutual labels:  retrofit
RxHttp
Retrofit 与 协程结合 断点下载 上传,网络缓存
Stars: ✭ 15 (-6.25%)
Mutual labels:  retrofit
android
🌦 Vädret
Stars: ✭ 17 (+6.25%)
Mutual labels:  retrofit
OLA Play Music App
Music Streaming App
Stars: ✭ 27 (+68.75%)
Mutual labels:  retrofit
KotlinEverywhere
This application created for Kotlin Everywhere series as a codelab. It will show step by step Kotlin and Android Jetpack Components fundamentals. 🚀🚀
Stars: ✭ 52 (+225%)
Mutual labels:  retrofit
json-fake-server
Simple way to create http server (node js) https://www.npmjs.com/package/test-fake-server
Stars: ✭ 15 (-6.25%)
Mutual labels:  mock-server

Endpoint2mock

Build Status

Sometimes when working with REST APIs there is a need to return some mock data. Maybe for demo purposes, or real endpoint is just not ready yet. Endpoint2mock aims to help with that by integrating with Retrofit and allowing you to easily redirect some (but not all!) of your requests to your mock server.

Here is how it goes.

Retrofit 2

This library is working only with Retrofit 1. For Retrofit 2 use the other version of the library: https://github.com/car2go/Endpoint2Mock2

Add it to your project

Step one

Add jitpack.io to the list of your repositories.

repositories {
  maven { url 'https://jitpack.io' }
}

Step two

Add dependencies.

compile 'com.github.car2go.Endpoint2mock:endpoint2mock:1.1.0'

// If you use Kotlin
kapt 'com.github.car2go.Endpoint2mock:endpoint2mock-compiler:1.1.0'

// If you do not use Kotlin
annotationProcessor 'com.github.car2go.Endpoint2mock:endpoint2mock-compiler:1.1.0'

Step three

Add @MockedEndpoint annotation to your Retrofit interface. For the sake of example let's use Github API.

interface GithubApi {

    /**
     * Will call mocked server if MockableClient is enabled.
     */
    @MockedEndpoint
    @GET("/users/car2go/repos")
    fun getCompanyRepositories(): Observable<List<Repository>>

}

Step four

Use MockableClient as client for your Retrofit builder.

RestAdapter.Builder()
  .setClient(
          MockableClient.build(mockServerUrl)   // Assuming that you have something running at this URL
                  .mockWhen { shouldMockRequests() }
                  .build()
  )
  .setEndpoint("https://api.github.com")  // In this case we are using Github API
  .build()
  .create(GithubApi::class.java)

You can check json-server folder for an example of mock server.

And you are ready to go!

Proguard

Just one line.

-keep class com.car2go.mock.MocksRegistry { *; }

License

Copyright 2017 car2go group GmbH

Released under the MIT license.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].