Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# AREX: Real automated API testing with real data.

AREX is an open-source automation testing tool which allows you to capture the online real data and replay it for testing. It provides rich testing features like API Testing, API Comparison Testing, Traffic Recording and Replay, etc.

##### AREX Introduction

- Homepage: www.arextest.com
- demo: demo.arextest.com
- Test restful API by record, replay and stub request/response.
- Differential testing known as differential fuzzing, is a popular software testing technique that attempts to detect bugs, by providing the same input to a series of similar applications and observing differences in their execution.
**AREX Components Version: 0.2.8**

## AREX Docker-Compose Install

Expand Down
17 changes: 9 additions & 8 deletions docker-compose-distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
arex:
image: arexadmin01/arex:0.2.7
image: arexadmin01/arex:0.2.8
container_name: arex-front
restart: always
ports:
Expand All @@ -11,8 +11,8 @@ services:
- ./arex-logs/arex-front:/usr/src/app/logs
environment:
- SERVICE_REPORT_URL=http://arex-report-service:8080
- SERVICE_NODE_URL=http://arex-node:3000
- SERVICE_SCHEDULE_URL=http://arex-schedule-service:8080
- SERVICE_NODE_URL=http://arex-node:3000
- SERVICE_STORAGE_URL=http://arex-storage-service:8080
depends_on:
- arex-report-service
Expand All @@ -24,11 +24,12 @@ services:
container_name: arex-node
restart: always
ports:
- '8088:3000'
- '10001:3000'
volumes:
- ./arex-logs/arex-node:/usr/src/app/logs

arex-report-service:
image: arexadmin01/arex-report:0.2.7
image: arexadmin01/arex-report:0.2.8
container_name: arex-report
restart: always
ports:
Expand All @@ -40,7 +41,7 @@ services:
depends_on:
- mongodb
arex-storage-service1:
image: arexadmin01/arex-storage-serive:0.2.7
image: arexadmin01/arex-storage-serive:0.2.8
container_name: arex-storage1
restart: always
ports:
Expand All @@ -53,7 +54,7 @@ services:
- mongodb
- redis
arex-storage-service2:
image: arexadmin01/arex-storage-serive:0.2.7
image: arexadmin01/arex-storage-serive:0.2.8
container_name: arex-storage2
restart: always
ports:
Expand All @@ -77,7 +78,7 @@ services:
- arex-storage-service1
- arex-storage-service2
arex-schedule-service1:
image: arexadmin01/arex-replay-schedule:0.2.7
image: arexadmin01/arex-replay-schedule:0.2.8
container_name: arex-schedule1
restart: always
ports:
Expand All @@ -90,7 +91,7 @@ services:
- mongodb
- redis
arex-schedule-service2:
image: arexadmin01/arex-replay-schedule:0.2.7
image: arexadmin01/arex-replay-schedule:0.2.8
container_name: arex-schedule2
restart: always
ports:
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
arex:
image: arexadmin01/arex:0.2.7
image: arexadmin01/arex:0.2.8
container_name: arex-front
restart: always
ports:
Expand All @@ -11,8 +11,8 @@ services:
- ./arex-logs/arex-front:/usr/src/app/logs
environment:
- SERVICE_REPORT_URL=http://arex-report-service:8080
- SERVICE_NODE_URL=http://arex-node:3000
- SERVICE_SCHEDULE_URL=http://arex-schedule-service:8080
- SERVICE_NODE_URL=http://arex-node:3000
- SERVICE_STORAGE_URL=http://arex-storage-service:8080
depends_on:
- arex-report-service
Expand All @@ -28,7 +28,7 @@ services:
volumes:
- ./arex-logs/arex-node:/usr/src/app/logs
arex-report-service:
image: arexadmin01/arex-report:0.2.7
image: arexadmin01/arex-report:0.2.8
container_name: arex-report
restart: always
ports:
Expand All @@ -40,7 +40,7 @@ services:
depends_on:
- mongodb
arex-storage-service:
image: arexadmin01/arex-storage-serive:0.2.7
image: arexadmin01/arex-storage-serive:0.2.8
container_name: arex-storage
restart: always
ports:
Expand All @@ -53,7 +53,7 @@ services:
- mongodb
- redis
arex-schedule-service:
image: arexadmin01/arex-replay-schedule:0.2.7
image: arexadmin01/arex-replay-schedule:0.2.8
container_name: arex-schedule
restart: always
ports:
Expand Down