Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve api #4

Open
wants to merge 38 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
5180689
Merge pull request #2 from mrmxf/2019-ibc
mrmxf Aug 30, 2019
522740a
moved file for cloudfront routing
mrmxf Aug 30, 2019
ca583e8
fixed mount point. Updated documentation
mrmxf Sep 3, 2019
820ca5f
fixed typos, re-enabled deletion of db
mrmxf Sep 3, 2019
a11f37a
start scripts lx & win for log routing
mrmxf Sep 3, 2019
15f608a
Merge pull request #3 from mrmxf/2019-ibc
mrmxf Sep 3, 2019
7ebfc91
added yaml parser for production
mrmxf Sep 3, 2019
3702a90
Merge pull request #4 from mrmxf/2019-ibc
mrmxf Sep 3, 2019
32dfce1
tweak ibc demo default logging profiles
mrmxf Sep 3, 2019
b028eef
second tweak of ibc profiles
mrmxf Sep 3, 2019
07c8625
Merge pull request #5 from mrmxf/2019-ibc
mrmxf Sep 3, 2019
1438084
page link updates for IBC
mrmxf Sep 4, 2019
1348034
Merge pull request #6 from mrmxf/2019-ibc
mrmxf Sep 4, 2019
40884a0
etag on POST, GET and GIT_URL
mrmxf Sep 25, 2019
475651b
minor increment of version
mrmxf Sep 25, 2019
7945445
tweak multi-instance configurations
mrmxf Sep 25, 2019
6d843c6
Merge pull request #9 from mrmxf/2019-ibc
mrmxf Sep 25, 2019
a8023a5
add Dockerfile and documentation to build and use docker image
MarcAntoine-Arnaud Oct 14, 2019
b5c9bb2
updated package and PUT API endpoint
mrmxf Nov 4, 2019
984d509
"put" demo logic is working - now update the asset
mrmxf Nov 5, 2019
a3b1b82
put asset/{id} demo works. documentation sucks
mrmxf Nov 6, 2019
423ba18
updated to remove security vulnerability
mrmxf Nov 6, 2019
e97b6b8
Merge pull request #10 from media-io/add_dockerfile
mrmxf Nov 6, 2019
7f8fd13
removed vinyl-ftp dependency
mrmxf Nov 11, 2019
71bc6e4
add travis CI
MarcAntoine-Arnaud Nov 20, 2019
de4dedf
add script action
MarcAntoine-Arnaud Nov 20, 2019
a5733c4
use npm instead of yarn
MarcAntoine-Arnaud Nov 20, 2019
abaaa43
use node version 11
MarcAntoine-Arnaud Nov 20, 2019
69d005a
add empty folder to run unit tests
MarcAntoine-Arnaud Nov 20, 2019
d3a9f08
update unit tests to fix them
MarcAntoine-Arnaud Nov 20, 2019
75160b1
update comment
MarcAntoine-Arnaud Nov 20, 2019
c259045
don't start at openning, cause issues with watching and unit tests
MarcAntoine-Arnaud Nov 20, 2019
15c05c1
simplify code of the server
MarcAntoine-Arnaud Nov 20, 2019
7c86064
update dependencies
MarcAntoine-Arnaud Nov 20, 2019
f075415
add filtering by file-type
MarcAntoine-Arnaud Nov 20, 2019
5d54dbc
add samples routes for type filtering in the documentation
MarcAntoine-Arnaud Nov 20, 2019
297a454
Merge remote-tracking branch 'mio/master' into improve_api
MarcAntoine-Arnaud Nov 20, 2019
8c53c4c
add jshint command a fix errors
MarcAntoine-Arnaud Nov 20, 2019
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
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules

8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

language: node_js
node_js:
- 11

script:
- npm run test
- npm run jshint
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM node:8.16.2-alpine

ENV NODE_ENV development
ENV NODE_CONFIG '{"port":3100,"log_options":{"level":"error","log_api_access":false},"enable":{"admin_delete_db":false}}'

ADD . /src
WORKDIR /src

RUN npm install --production && \
npm audit fix && \
npm dedupe

EXPOSE 3100

CMD npm start
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,19 @@ properly until a few bugs are ironed out. Probably August 2019 for that update.
* local: configure `/.vscode/runtime.env` to set `NODE_ENV`
* lambda: edit `serverless.yml` to set `NODE_ENV` for the cloudformation deployed app

### to build and run Docker image

The project can be used as Docker container.

First build the image:
`docker build -t imf-mm-api .`

First build the image:
`docker run -d -p 3100:3100 --name imf-mm imf-mm-api`

Then simply access to the API:
[http://localhost:3100/demo/1/assets](http://localhost:3100/demo/1/assets)

## AWS requirements

To use the simpledb cloud database as the backend, you will need to provide AWS keys that allow the
Expand Down Expand Up @@ -209,6 +222,11 @@ the changes along side your main server.

## API Change Log

* 2019-11-20 Improve code and support file-type filter
* refactor some code
* be able to list `assets` and filter them by file type
* 2019-10-14 Docker image
* provide the Docker image of the service
* 2019-09-03 deployment updates
* fixed mounting of the app under defferent routes by providing `config.mount_point`
* updated cloud instance for testing with `staging`, `beta` and `1/` end points
Expand Down
76 changes: 0 additions & 76 deletions __test__/test__api-crawl.js

This file was deleted.

10 changes: 5 additions & 5 deletions __test__/test__api-properties.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/** @module test__api
*
/**
* @module test__api
*/
/* jshint node: true */
/* globals afterAll, beforeAll, describe, expect, test */
'use strict'
require('dotenv').config({ path: '__test__/.env',})
console.log(process.env.NODE_ENV)
/** db-local storage tester
*

/**
* db-local storage tester
*/
const fs = require('fs')
const path = require('path')
Expand Down
58 changes: 32 additions & 26 deletions __test__/test__api-assets.js → __test__/test__api.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
'use strict'
require('dotenv').config({ path: '__test__/.env', })

/** api-assets jest test scripts
*
/**
* api jest test scripts
*/
const config = require('config')
const log = require('pino')(config.get('log_options'))
Expand All @@ -14,24 +14,14 @@ const path = require('path')
const __test = path.basename(__filename)

const prefix = config.get('api_prefix')
const api = `${config.get('api_prefix')}/assets`
const assets_api = `${config.get('mount_point')}/${config.get('api_prefix')}/assets`
const admin_info_api = `${config.get('mount_point')}/admin/info`
const crawl_api = `${config.get('mount_point')}/crawl/`

// Test the server using the test port (you can replace this with any URL)
// Test the server using the test port
let request = require('supertest');
request = request(`http://localhost:${config.get('port')}`)
let app

beforeAll(async () => {
log.info(`${rJ('Jest starting: ')}server booting on http://localhost:${config.get('port')}.`);
log.info(`${rJ('Jest db: ')}${config.get('port')}.`);
/// prevent race conditions by waiting for the server to be listening on its port
try {
app = require('../src/start_local')
await request.get('/')
} catch (e) {
log.error(`${rJ('Server failed to start: ')}${e}.`);
}
});
let app = require('../src/start_local')
let testServer = request(`http://localhost:${config.get('port')}`)

// close koa's http after each test
afterAll(() => {
Expand All @@ -41,22 +31,22 @@ afterAll(() => {

// Local test database may be empty here so check basic functions

describe(`${__test}: testing GET /${api}`, () => {
test(`GET /${api}`, async () => {
describe(`${__test}: testing Assets`, () => {
test(`GET ${assets_api}`, async () => {
//assert code 200, json content type and the body contains required
return request
.get(`/${api}`)
return testServer
.get(`${assets_api}`)
.expect(200)
.expect('Content-Type', /json/)
.expect(/"limit":/)
.expect(/"results":/)
.expect(/"skip":/)
.expect(/"total":/)
});
test(`GET /${api}/`, async () => {
test(`GET ${assets_api}/`, async () => {
//assert code 200, json content type and the body contains required
return request
.get(`/${api}/`)
return testServer
.get(`${assets_api}/`)
.expect(200)
.expect('Content-Type', /json/)
.expect(/"limit":/)
Expand All @@ -66,4 +56,20 @@ describe(`${__test}: testing GET /${api}`, () => {
});
});

// Scan the test folder and build a local database (asssum that bit's working)
describe(`${__test}: testing Admin`, () => {
test(`GET ${admin_info_api}`, async () => {
//assert code 200, json content type and the body contains required
return testServer
.get(`/${admin_info_api}`)
.expect(404)
});
});

describe(`${__test}: testing Crawl`, () => {
test(`GET ${crawl_api}`, async () => {
//assert code 200, json content type and the body contains required
return testServer
.get(`/${crawl_api}`)
.expect(404)
});
});
17 changes: 10 additions & 7 deletions __test__/test__db-local.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
/* globals afterAll, beforeAll, describe, expect, test */
'use strict'
require('dotenv').config({ path: '__test__/.env',})
console.log(process.env.NODE_ENV)
/** db-local storage tester
*
/**
* db-local storage tester
*/
const fs = require('fs')
const path = require('path')
Expand All @@ -20,6 +19,10 @@ const test_asset1= test_assets[0]
const test_asset2= test_assets[1]

const test_folder = path.join(__dirname, '__db-local__')
if (!fs.existsSync(test_folder)) {
fs.mkdirSync(test_folder)
}

var params = {
local_filename: path.join(test_folder, config.get('database').local_filename),
}
Expand Down Expand Up @@ -93,25 +96,25 @@ describe(`${_module}`, () => {
})

test('db.get()', () => {
return local_db.get()
return local_db.get_assets()
.then(data => {
expect(data.length).toEqual(2)
})
})
test('db.get(0,1)', () => {
return local_db.get(0, 1)
return local_db.get_assets(0, 1)
.then(data => {
expect(data.length).toEqual(1)
})
})
test('db.get(1,1)', () => {
return local_db.get(1, 1)
return local_db.get_assets(1, 1)
.then(data => {
expect(data.length).toEqual(1)
})
})
test('db.get(2,100)', () => {
return local_db.get(2, 100)
return local_db.get_assets(2, 100)
.then(data => {
expect(data.length).toEqual(0)
})
Expand Down
4 changes: 4 additions & 0 deletions __test__/test__lib-crawl-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ var test_root = path.join(__dirname, 'assets-imf')
var empty_root = path.join(__dirname, 'assets-imf/empty')

const test_db_folder = path.join(__dirname, '__db-local__')
if (!fs.existsSync(test_db_folder)) {
fs.mkdirSync(test_db_folder)
}

const test_db_path = path.join(test_db_folder, config.get('database').local_crawl_filename)

describe(`${__test}: fs crawl core`, () => {
Expand Down
2 changes: 1 addition & 1 deletion config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"assets": true,
"crawl": true,
"www": true,
"load_home_page_on_boot": true,
"load_home_page_on_boot": false,
"extended_status_messages": true,
"synth_local_test_data": true
},
Expand Down
3 changes: 2 additions & 1 deletion config/development.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"__test__/assets-imf"
],
"enable":{
"extended_config_messages":true
"extended_config_messages": true,
"load_home_page_on_boot": false
}
}
3 changes: 3 additions & 0 deletions config/local-test.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@
"show_config_sources": true,
"prettyPrint": true,
"log_api_access": false
},
"enable": {
"load_home_page_on_boot": false
}
}
Loading