Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: OADA/cerebral-module
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 27209d728787b220424779ba179d6a7e8841ea25
Choose a base ref
...
head repository: OADA/cerebral-module
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c5f32d5fcf59928bf162a55cd87209523938350c
Choose a head ref

Commits on Jun 13, 2019

  1. Removed module syntax

    cyrusbowman committed Jun 13, 2019
    Copy the full SHA
    277ef76 View commit details
  2. Still not working

    cyrusbowman committed Jun 13, 2019
    Copy the full SHA
    b5bfd12 View commit details

Commits on Jun 14, 2019

  1. Copy the full SHA
    f452542 View commit details
  2. Working with cerebral 5

    cyrusbowman committed Jun 14, 2019
    Copy the full SHA
    330b8b1 View commit details

Commits on Sep 26, 2019

  1. Copy the full SHA
    7a69761 View commit details

Commits on Oct 11, 2019

  1. Updated some code to cerebral 5.

    Building paths part by part because of cerebral problem.
    cyrusbowman committed Oct 11, 2019
    Copy the full SHA
    49b0ad2 View commit details

Commits on Oct 17, 2019

  1. update version

    sanoel committed Oct 17, 2019
    Copy the full SHA
    34eaf41 View commit details
  2. update version

    sanoel committed Oct 17, 2019
    Copy the full SHA
    105b5cc View commit details

Commits on Dec 6, 2019

  1. Copy the full SHA
    c60adcd View commit details

Commits on Dec 11, 2019

  1. Copy the full SHA
    2a8ccc3 View commit details

Commits on Dec 13, 2019

  1. - Working with watch now.

    cyrusbowman committed Dec 13, 2019
    Copy the full SHA
    67079c8 View commit details
  2. - Version bump

    cyrusbowman committed Dec 13, 2019
    Copy the full SHA
    5bff35f View commit details
  3. Copy the full SHA
    39b9e5c View commit details
  4. Merge tag 'v3.0.3' into develop

    - Fixed Issue#1
    cyrusbowman committed Dec 13, 2019
    Copy the full SHA
    a7dec1a View commit details

Commits on Dec 17, 2019

  1. Copy the full SHA
    0614967 View commit details
  2. Version bump

    cyrusbowman committed Dec 17, 2019
    Copy the full SHA
    b94e422 View commit details
  3. Copy the full SHA
    4dd01bc View commit details
  4. Copy the full SHA
    6e0e2c6 View commit details

Commits on Apr 2, 2020

  1. add prettier

    tomohiroarakawa committed Apr 2, 2020
    Copy the full SHA
    e2c6cce View commit details
  2. clean up code formatting

    prettier authored and tomohiroarakawa committed Apr 2, 2020
    Copy the full SHA
    5e67b77 View commit details

Commits on Apr 8, 2020

  1. Copy the full SHA
    511f923 View commit details
  2. - Updated babel

    - Updated cerebral-provider
    - Execute requests in sequence by default
    	- Can you concurrent: true to do in parallel
    - `connections` in state now has a `connected` boolean flag
    - connect() now returns a token, connection_id, or an error.
    cyrusbowman committed Apr 8, 2020
    1
    Copy the full SHA
    c97b172 View commit details
  3. Copy the full SHA
    bf98d76 View commit details

Commits on Apr 9, 2020

  1. - Fixed .gitignore

    cyrusbowman committed Apr 9, 2020
    Copy the full SHA
    813ac1d View commit details

Commits on Apr 15, 2020

  1. Copy the full SHA
    0500bd4 View commit details

Commits on Apr 16, 2020

  1. bug fix

    tomohiroarakawa committed Apr 16, 2020
    Copy the full SHA
    373aaee View commit details
  2. format codebase

    prettier authored and tomohiroarakawa committed Apr 16, 2020
    Copy the full SHA
    7f9a6ef View commit details
  3. Copy the full SHA
    816cfda View commit details
  4. Copy the full SHA
    c5f32d5 View commit details
Showing with 3,467 additions and 7,159 deletions.
  1. +12 −0 .babelrc
  2. +3 −2 .gitignore
  3. +0 −4,979 package-lock.json
  4. +24 −18 package.json
  5. +8 −22 src/index.js
  6. +72 −0 src/provider.js
  7. +307 −179 src/sequences.js
  8. +3 −0 src/state.js
  9. +258 −0 test/basic.test.js
  10. +0 −162 test/import.cerebral.provider.test.js
  11. +2,780 −1,797 yarn.lock
12 changes: 12 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"presets": [
[
"@babel/preset-env",
{
targets: {
esmodules: true
}
}
]
]
}
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
index.js
sequences.js
/index.js
/sequences.js
/state.js
4,979 changes: 0 additions & 4,979 deletions package-lock.json

This file was deleted.

42 changes: 24 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,39 @@
{
"name": "@oada/cerebral-module",
"version": "2.1.5",
"description": "oada cerebral module",
"main": "./index.js",
"version": "4.0.0",
"description": "OADA cerebral module",
"repository": "github:OADA/cerebral-module",
"main": "./build/index.js",
"scripts": {
"test": "mocha -w --require babel-polyfill --compilers js:babel-register test/**/*.test.js",
"build": "babel src --out-dir ./ --presets=env",
"test": "mocha -w --require @babel/register test/**/*.test.js",
"build": "babel src --out-dir build",
"prepare": "npm run build",
"build-watch": "babel --watch src --out-dir ./ --presets=env",
"prettier": "prettier --write 'src/**/*.js'",
"build-watch": "babel --watch src --out-dir ./",
"dev": "cpx \"*.js\" $APP_DIR/node_modules/@oada/cerebral-module/ --watch --verbose"
},
"author": "oada",
"license": "Apache-2.0",
"dependencies": {
"@cerebral/storage": "^4.2.2",
"@oada/cerebral-provider": "^2.1.0",
"assert": "^1.4.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"cerebral": "^4.2.2",
"chai": "^4.1.2",
"@oada/oada-cache": "^3.1.6",
"debug": "^4.1.0",
"fs": "^0.0.1-security",
"url": "^0.11.0"
"lodash": "^4.17.15",
"url": "^0.11.0",
"uuid": "^7.0.3"
},
"peerDependencies": {
"cerebral": "^5.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0"
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"cerebral": "^5.2.1",
"mocha": "^7.1.1",
"prettier": "2.0.2",
"chai": "^4.1.2",
"assert": "^1.4.1"
}
}
30 changes: 8 additions & 22 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,11 @@
import { Module } from 'cerebral';
import signals from './sequences';
import oada from '@oada/cerebral-provider';
/*import StorageModule from '@cerebral/storage'
const storage = StorageModule({
import sequences from "./sequences";
import oada from "./provider";
import state from "./state";

target: localStorage,
json: true,
sync: {
'connections': 'connections'
}
export default {
state,

})*/
providers: { oada },

export default Module ({

state: { connections: {} },

providers: { oada },

signals,

// modules: {storage}

})
sequences,
};
72 changes: 72 additions & 0 deletions src/provider.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
import { Provider } from "cerebral";
import oada from "@oada/oada-cache";
import uuid from "uuid";
var connections = {};

const connect = function connect(args) {
if (!args.connection_id) throw "connection_id not supplied";
if (args.connection_id && connections[args.connection_id])
return Promise.resolve(connections[args.connection_id]);
return oada.connect(args).then((conn) => {
conn.cache = {};
connections[args.connection_id] = conn;
return conn;
});
};

const get = function get(args) {
if (!args.connection_id) throw "connection_id not supplied";
if (args.watch && args.watch.signals) {
let sigs = args.watch.signals.map((signal) => {
if (this.context) {
return this.context.controller.hasOwnProperty("getSignal")
? this.context.controller.getSignal(signal)
: this.context.controller.getSequence(signal);
}
});
args.watch.func = (payload) => {
sigs.forEach((signal) => {
signal(payload);
});
};
}
return connections[args.connection_id].get(args);
};

const put = function put(args) {
if (!args.connection_id) throw "connection_id not supplied";
return connections[args.connection_id].put(args);
};

const post = function post(args) {
if (!args.connection_id) throw "connection_id not supplied";
return connections[args.connection_id].post(args);
};

const _delete = function _delete(args) {
if (!args.connection_id) throw "connection_id not supplied";
return connections[args.connection_id].delete(args);
};

const disconnect = function _disconnect(args) {
if (!args.connection_id) throw "connection_id not supplied";
var connection = connections[args.connection_id];
connections[args.connection_id] = undefined;
return connection.disconnect();
};

const resetCache = function resetCache(args) {
if (!args.connection_id) throw "connection_id not supplied";
if (!connections[args.connection_id]) return; // reseting a non-existent connection
return connections[args.connection_id].resetCache(args);
};

export default {
connect,
get,
put,
post,
delete: _delete,
resetCache,
disconnect,
};
486 changes: 307 additions & 179 deletions src/sequences.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/state.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default {
connections: {},
};
258 changes: 258 additions & 0 deletions test/basic.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,258 @@
process.env.NODE_TLS_REJECT_UNAUTHORIZED=0;
import { props, state } from 'cerebral/tags';
import { CerebralTest } from 'cerebral/test';
import oadaModule from '../src';
import assert from 'assert';
import yaml from 'js-yaml';
import fs from 'fs';
import url from 'url';
import chai from 'chai';
import Promise from 'bluebird';
import _ from 'lodash';
let expect = chai.expect;

let _token = 'def';
let _url = 'https://localhost/bookmarks';
let _contentType = 'application/vnd.oada.yield.1+json';
let _domain = 'https://localhost';

let _options = {
redirect: 'http://localhost:8000/oauth2/redirect.html',
metadata: 'eyJqa3UiOiJodHRwczovL2lkZW50aXR5Lm9hZGEtZGV2LmNvbS9jZXJ0cyIsImtpZCI6ImtqY1NjamMzMmR3SlhYTEpEczNyMTI0c2ExIiwidHlwIjoiSldUIiwiYWxnIjoiUlMyNTYifQ.eyJyZWRpcmVjdF91cmlzIjpbImh0dHA6Ly92aXAzLmVjbi5wdXJkdWUuZWR1OjgwMDAvb2F1dGgyL3JlZGlyZWN0Lmh0bWwiLCJodHRwOi8vbG9jYWxob3N0OjgwMDAvb2F1dGgyL3JlZGlyZWN0Lmh0bWwiXSwidG9rZW5fZW5kcG9pbnRfYXV0aF9tZXRob2QiOiJ1cm46aWV0ZjpwYXJhbXM6b2F1dGg6Y2xpZW50LWFzc2VydGlvbi10eXBlOmp3dC1iZWFyZXIiLCJncmFudF90eXBlcyI6WyJpbXBsaWNpdCJdLCJyZXNwb25zZV90eXBlcyI6WyJ0b2tlbiIsImlkX3Rva2VuIiwiaWRfdG9rZW4gdG9rZW4iXSwiY2xpZW50X25hbWUiOiJPcGVuQVRLIiwiY2xpZW50X3VyaSI6Imh0dHBzOi8vdmlwMy5lY24ucHVyZHVlLmVkdSIsImNvbnRhY3RzIjpbIlNhbSBOb2VsIDxzYW5vZWxAcHVyZHVlLmVkdT4iXSwic29mdHdhcmVfaWQiOiIxZjc4NDc3Zi0zNTQxLTQxM2ItOTdiNi04NjQ0YjRhZjViYjgiLCJyZWdpc3RyYXRpb25fcHJvdmlkZXIiOiJodHRwczovL2lkZW50aXR5Lm9hZGEtZGV2LmNvbSIsImlhdCI6MTUxMjAwNjc2MX0.AJSjNlWX8UKfVh-h1ebCe0MEGqKzArNJ6x0nmta0oFMcWMyR6Cn2saR-oHvU8WrtUMEr-w020mAjvhfYav4EdT3GOGtaFgnbVkIs73iIMtr8Z-Y6mDEzqRzNzVRMLghj7CyWRCNJEk0jwWjOuC8FH4UsfHmtw3ouMFomjwsNLY0',
scope: 'oada.yield:all'
};


const numberSamples = 4;

function domainToConnectionId(domainUrl) {
let domain = url.parse(domainUrl).hostname;
return domain.replace(/\./g, "_");
}


function createRequests(){
let requests = [];

for(let i=0; i<numberSamples; i++){
let request = {
//path: '/bookmarks/serviotest' + i,
path: '/bookmarks/operations',
data: {test: i}
}
requests.push(request);
}

return requests;
}

let requests = createRequests();

/**
* Testing connection requests
*/
describe('CONNECTION', function() {
this.timeout(30000);

it('should connect using a token and disconnect', () => {
const cerebral = CerebralTest(oadaModule); // Expects a Module
let current_connection_id = null;
// Runs Cerebral Signal -> Sequence
return cerebral.runSequence('connect', {
token: _token,
domain: _domain,
noWebsocket: true,
cache: false,
})
.then((result) => {
//`connect` sequence has two actions, pull out output from second one
expect(result[1].output.connection_id).to.equal(domainToConnectionId(_domain));
current_connection_id = result[1].output.connection_id;
//Should be connected
expect(result.state.oada.connections[current_connection_id].connected).to.equal(true);
}).then(() => {
// Runs Cerebral Signal -> Sequence
return cerebral.runSequence('disconnect', {
connection_id: current_connection_id
}).then((result) => {
expect(result.state.oada.connections[current_connection_id].connected).to.equal(false);
})
})
})//it

it('should connect using a token and options', () => {
const cerebral = CerebralTest(oadaModule); // Expects a Module
let current_connection_id = null;
return cerebral.runSequence('connect', {
token: _token,
domain: _domain,
options: _options, //TODO this is same as metadata test, it is using metadata
noWebsocket: true,
cache: false,
})
.then((result) => {
expect(result[1].output.connection_id).to.equal(domainToConnectionId(_domain));
current_connection_id = result[1].output.connection_id;
//Should be connected
expect(result.state.oada.connections[current_connection_id].connected).to.equal(true);
}).then(() => {
// Runs Cerebral Signal -> Sequence
return cerebral.runSequence('disconnect', {
connection_id: current_connection_id
}).then((result) => {
expect(result.state.oada.connections[current_connection_id].connected).to.equal(false);
})
})
})

it('should connect using a token, options, and metadata', () => {
const cerebral = CerebralTest(oadaModule); // Expects a Module
let current_connection_id = null;
return cerebral.runSequence('connect', {
token: _token,
domain: _domain,
options: _options,
metadata: _options.metadata,
noWebsocket: true,
cache: false
})
.then((result) => {
expect(result[1].output.connection_id).to.equal(domainToConnectionId(_domain));
current_connection_id = result[1].output.connection_id;
//Should be connected
expect(result.state.oada.connections[current_connection_id].connected).to.equal(true);
}).then(() => {
// Runs Cerebral Signal -> Sequence
return cerebral.runSequence('disconnect', {
connection_id: current_connection_id
}).then((result) => {
expect(result.state.oada.connections[current_connection_id].connected).to.equal(false);
})
})
})

it('should connect using a custom connection_id', () => {
const cerebral = CerebralTest(oadaModule); // Expects a Module
const connection_id = '0';
return cerebral.runSequence('connect', {
token: _token,
domain: _domain,
options: _options,
noWebsocket: true,
cache: false,
connection_id
})
.then((result) => {
//Should be connected
expect(result.state.oada.connections['0'].connected).to.equal(true);
//`connect` sequence has two actions, pull out output from second one
expect(result[1].output.connection_id).to.equal(connection_id);
}).then(() => {
// Runs Cerebral Signal -> Sequence
return cerebral.runSequence('disconnect', {
connection_id
}).then((result) => {
expect(result.state.oada.connections[connection_id].connected).to.equal(false);
})
})
})

});


describe('PUT, GET, DELETE', function() {
const cerebral = CerebralTest(oadaModule); // Expects a Module
const connection_id = '0'

before(function() {
return cerebral.runSequence('connect', {
token: _token,
domain: _domain,
options: _options,
noWebsocket: true,
cache: false,
connection_id
})
})
after(function() {
return cerebral.runSequence('disconnect', {
connection_id
})
})

/**
* Testing PUT requests
*/
describe('#PUT()', function() {
this.timeout(30000);
it('should PUT ' + numberSamples + ' requests using path', () => {
//Add content type to requests
requests = requests.map((r) => {
r.headers = {...r.headers, "content-type": _contentType}
return r;
})
return cerebral.runSequence('put', {
connection_id,
token: _token,
domain: _domain,
requests: requests,
noWebsocket: true,
cache: false,
}).then( ({state}) => {
//state should include results
expect(state.oada[connection_id].bookmarks.operations).to.be.an('object');
expect(state.oada[connection_id].bookmarks.operations.test).to.equal(numberSamples-1);
})
})//it
});//describe

/**
* Testing GET requests
*/
describe('#GET()', function() {
this.timeout(30000);

before(function() {
//Reset state, so data from PUT doesn't exist
cerebral.setState(`oada.${connection_id}`, {})
})

it('should GET ' + numberSamples + ' requests using path', () => {
return cerebral.runSequence('get', {
connection_id,
token: _token,
domain: _domain,
requests: [
{
path: '/bookmarks/operations'
}
]
}).then(({ state }) => {
expect(state.oada[connection_id].bookmarks.operations).to.be.an('object');
expect(state.oada[connection_id].bookmarks.operations.test).to.equal(numberSamples-1);
})
})
});

/**
* Testing DELETE requests
*/
describe('#DELETE()', function() {
this.timeout(30000);
it('should DELETE ' + numberSamples + ' requests using path', () => {
return cerebral.runSequence('delete', {
connection_id,
token: _token,
domain: _domain,
requests: [
{
path: '/bookmarks/operations',
headers: {"content-type": _contentType}
}
]
}).then(({state}) => {
expect(state.oada[connection_id].bookmarks.operations).to.not.exist;
})
})
});
})
162 changes: 0 additions & 162 deletions test/import.cerebral.provider.test.js

This file was deleted.

4,577 changes: 2,780 additions & 1,797 deletions yarn.lock

Large diffs are not rendered by default.