Skip to content

Commit 6f57f0d

Browse files
committed
first commit
0 parents  commit 6f57f0d

30 files changed

+22022
-0
lines changed

.dockerignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
coverage/
2+
node_modules/
3+
.dockerignore
4+
.eslintignore
5+
.git/
6+
.gitignore
7+
Dockerfile
8+
LICENSE
9+
README.md
10+
.circleci/

.eslintignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
coverage
2+
templates
3+
docs
4+
**/node_modules

.eslintrc

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 9
4+
},
5+
"rules": {
6+
"no-console": ["off"],
7+
"indent": [
8+
2,
9+
2
10+
],
11+
"quotes": [
12+
2,
13+
"single"
14+
],
15+
"linebreak-style": [
16+
2,
17+
"unix"
18+
],
19+
"semi": [
20+
2,
21+
"never"
22+
]
23+
},
24+
"env": {
25+
"es6": true,
26+
"node": true
27+
},
28+
"extends": "eslint:recommended"
29+
}

.gitignore

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (https://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# TypeScript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# Yarn Integrity file
55+
.yarn-integrity
56+
57+
# dotenv environment variables file
58+
.env
59+
60+
# next.js build output
61+
.next
62+
63+
# --------------- #
64+
# IntelliJ #
65+
# --------------- #
66+
.idea/
67+
**/*.iml
68+
69+
# VSCode directory
70+
.vscode
71+
jsconfig.json

.ncurc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"reject": [
3+
4+
]
5+
}

.nycrc.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
temp-directory: "./.nyc_output"
2+
check-coverage: true
3+
per-file: true
4+
lines: 90
5+
statements: 90
6+
functions: 90
7+
branches: 90
8+
all: true
9+
include: [
10+
"src/**/*.js"
11+
]
12+
reporter: [
13+
"lcov",
14+
"text-summary"
15+
]
16+
exclude: [
17+
"**/node_modules/**",
18+
'**/migrations/**',
19+
'**/docs/**'
20+
]

ChangeLog.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## v1.0.1:
2+
* Implemented version negotiation logic
3+
* Implemented accept header validation logic
4+
* Added all the remaining endpoints in openapi specification file
5+
* Prepared postman collection to test some positive and negative cases
6+
* Added postman collection and environment files to this repo
7+
* Added logic to respond with selected version in Content-type header
8+
* Added logic to respond failed version negotiation cases with a proper list of accepted versions as the specification document

Dockerfile

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
FROM node:10.15.3-alpine AS builder
2+
3+
WORKDIR /opt/mojaloop-testing-toolkit
4+
5+
RUN apk add --no-cache -t build-dependencies git make gcc g++ python libtool autoconf automake \
6+
&& cd $(npm root -g)/npm \
7+
&& npm config set unsafe-perm true \
8+
&& npm install -g node-gyp
9+
10+
COPY package.json package-lock.json* /opt/mojaloop-testing-toolkit/
11+
RUN npm install
12+
13+
COPY config /opt/mojaloop-testing-toolkit/config
14+
COPY src /opt/mojaloop-testing-toolkit/src
15+
COPY spec_files /opt/mojaloop-testing-toolkit/spec_files
16+
17+
FROM node:10.15.3-alpine
18+
19+
WORKDIR /opt/mojaloop-testing-toolkit
20+
21+
COPY --from=builder /opt/mojaloop-testing-toolkit .
22+
RUN npm prune --production
23+
24+
EXPOSE 3000
25+
CMD ["npm", "run", "start"]

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Mojaloop Self Testing Tooolkit
2+
3+
A self testing tool to test the mojaloop implementations
4+
5+
6+
## Start Mock Server
7+
To run the server run the following commands
8+
9+
### Running locally
10+
```bash
11+
#NPM:
12+
npm start
13+
14+
#CLI:
15+
node src/index.js server
16+
```
17+
18+
### Running in docker
19+
```bash
20+
docker-compose up
21+
```
22+

TODO.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# TODO:
2+
* Add documentation about building and running the tool
3+
* Fix logger and log the requests, resposes and errors with verbosity
4+
* Write unit tests and integration tests (**Implemented for core functions**)

config/default.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"API_PORT": 3000,
3+
"DISPLAY_ROUTES": true,
4+
"ENDPOINT_CACHE_CONFIG": {
5+
"expiresIn": 180000,
6+
"generateTimeout": 30000
7+
},
8+
"FSPIOP_API_DEFINITIONS": [
9+
{
10+
"version": "1.0",
11+
"spec_file": "fspiop_v1.0.yaml"
12+
},
13+
{
14+
"version": "1.1",
15+
"spec_file": "fspiop_v1.1.yaml"
16+
}
17+
]
18+
}

docker-compose.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: "3.7"
2+
3+
services:
4+
mojaloop-testing-toolkit:
5+
build:
6+
context: .
7+
target: builder
8+
container_name: mojaloop-testing-toolkit-int
9+
ports:
10+
- "3000:3000"
11+
command:
12+
- sh
13+
- -c
14+
- "npm start"

jest.config.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
verbose: true,
3+
collectCoverageFrom: [
4+
'**/src/**/**/*.js'
5+
],
6+
coverageThreshold: {
7+
global: {
8+
statements: 90,
9+
functions: 90,
10+
branches: 90,
11+
lines: 90
12+
}
13+
}
14+
}

jsdoc.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"tags": {
3+
"allowUnknownTags": true
4+
},
5+
"source": {
6+
"include": [
7+
"src"
8+
],
9+
"includePattern": ".js$",
10+
"excludePattern": "(node_modules/|docs)"
11+
},
12+
"plugins": [
13+
"plugins/markdown"
14+
],
15+
"opts": {
16+
"template": "node_modules/docdash",
17+
"encoding": "utf8",
18+
"destination": "docs/",
19+
"recurse": true,
20+
"verbose": true
21+
},
22+
"markdown": {
23+
"parser": "gfm",
24+
"hardwrap": true
25+
},
26+
"templates": {
27+
"cleverLinks": false,
28+
"monospaceLinks": false,
29+
"default": {
30+
"outputSourceFiles": true,
31+
"includeDate": false
32+
}
33+
},
34+
"docdash": {
35+
"static": false,
36+
"sort": true
37+
}
38+
}

0 commit comments

Comments
 (0)