Skip to content

yccock/arex-agent-java

 
 

Repository files navigation

Build Status codecov Quality Gate Status

Arex Icon AREX

An Open Source Testing Framework with Real World Data

Introduction

As your application evolves more complex, the effort required to thoroughly test against it also becomes tremendous. Arex is a framework designed around a quite straightforward principle of leveraging your real world data(i.e. database record, service payload, cache items etc.) for regression testing. Simple is powerful. The idea behind makes it incredibly powerful.

AREX provides an out-of-box agent file that could be attached to any applications with Java 8+ and dynamically weaves solid bytecode into your existing code to record the real data of live traffic, and further use and replay it for mocking, testing, and debugging purpose.

AREX is implemented with an unique mechanism for recording. Instead of being a proxy like other similar framework, AREX sits in the background without awareness of your application to record realistic data in live traffic which means that no intrusive code changes are required when integrating it to your existing application.

AREX utilizes the advanced Java technique, Instrument API, and is capable of instrumenting various libraries and frameworks which are widely used.

Libraries and frameworks supported by Arex (to be added...)

  • Java Executors
  • System time
  • Apache HttpClient 4.x
  • OkHttp 3+
  • Spring WebClient 5.x
  • Hibernate 5.x
  • MyBatis 3.x
  • Redisson 3.x
  • Lettuce 6+
  • Jedis 2.10+, 4+
  • Spring Boot 1.4+-2.x+, Servlet API 3+、5+
  • Custom type
  • Netty server 4.1+
  • Dubbo 3.x
  • Spring Security 5.x
  • Apache Shiro 1.x
  • Java JWT 3.x
  • JCasbin 1.x

Installation

Simply download the latest binary from github or compile it by yourself.

There are two agent files provided in the arex-agent-jar folder like below. They must be placed in the same directory.

arex-agent-<version>.jar
arex-agent-bootstrap-<version>.jar

Getting Started

Enable the instrumentation agent by configuring a javaagent flag to the JVM to run arex:

AREX agent works along with the AREX storage service.

You could just configure the host and port of them respectively, like below

java -javaagent:/path/to/arex-agent-<version>.jar
      -Darex.service.name=your-service-name
      -Darex.storage.service.host=[storage.service.host:port](storage.service.host:port) 
      -jar your-application.jar

Alternatively, you can put those configuration item in arex.agent.conf file, like below

arex.service.name=your-service-name  
arex.storage.service.host=<storage.service.host:port> 

Then simply run:

java -javaagent:/path/to/arex-agent-<version>.jar
      -Darex.config.path=/path/to/arex.agent.conf
      -jar your-application.jar

Also, You can Run with CLI in local mode:

Please refer to : AREX standalone mode.

Contributing

  1. Fork it
  2. Create your feature branch
  3. Commit your code changes and push to your feature branch
  4. Create a new Pull Request

License

About

AREX auto-instrumentation for Java.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%