Skip to content

Commit f0a532b

Browse files
committed
Initial Commit
0 parents  commit f0a532b

File tree

6 files changed

+242
-0
lines changed

6 files changed

+242
-0
lines changed

.gitignore

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

.tavis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: node_js
2+
install:
3+
- npm install
4+
node_js:
5+
- "4"
6+
- "5"
7+
- "6"

index.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export declare function addPromiseSegment<T>(subSegmentName: string, promiseToWrap: Promise<T>);

index.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"use strict";
2+
3+
const XRay = require("aws-xray-sdk");
4+
5+
module.exports.addPromiseSegment = function (segmentName, inputPromise) {
6+
if(!(inputPromise instanceof Promise)) {
7+
return Promise.reject(new Error("First parameter must be of type Promise"));
8+
}
9+
return new Promise((resolve, reject) => {
10+
XRay.captureAsyncFunc(segmentName, (subSegment) => {
11+
inputPromise
12+
.then(val => {
13+
resolve(val);
14+
subSegment.close();
15+
})
16+
.catch(err => {
17+
reject(err);
18+
subSegment.addErrorFlag();
19+
subSegment.close();
20+
});
21+
});
22+
});
23+
};

package.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "aws-xray-lambda-promise-subsegment",
3+
"version": "1.0.0",
4+
"description": "Allows adding a subsegment to XRay around any promise",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "mocha ./test/**/*.js"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/terodox/aws-xray-lambda-promise-subsegment.git"
12+
},
13+
"keywords": [
14+
"aws",
15+
"lambda",
16+
"xray",
17+
"sdk",
18+
"promise",
19+
"segment",
20+
"subsegment",
21+
"tracing",
22+
"awslambda",
23+
"awsxray",
24+
"awssdk"
25+
],
26+
"author": "Andy Desmarais <[email protected]>",
27+
"license": "MIT",
28+
"bugs": {
29+
"url": "https://github.com/terodox/aws-xray-lambda-promise-subsegment/issues"
30+
},
31+
"homepage": "https://github.com/terodox/aws-xray-lambda-promise-subsegment#readme",
32+
"devDependencies": {
33+
"chai": "^3.5.0",
34+
"chai-as-promised": "^6.0.0",
35+
"mocha": "^3.4.1",
36+
"proxyquire": "^1.8.0",
37+
"sinon": "^2.3.1"
38+
},
39+
"dependencies": {
40+
"aws-xray-sdk": "^1.1.1"
41+
}
42+
}

test/index.spec.js

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
"use strict";
2+
3+
let captureAsyncFuncValidation;
4+
require("proxyquire")(
5+
"../index", {
6+
"aws-xray-sdk" : {
7+
captureAsyncFunc: (name, func) => {
8+
captureAsyncFuncValidation(name, func);
9+
}
10+
}
11+
}
12+
);
13+
14+
const mocha = require("mocha");
15+
const chai = require("chai");
16+
const chaiAsPromised = require("chai-as-promised");
17+
const addPromiseSegment = require("../index").addPromiseSegment;
18+
19+
const describe = mocha.describe;
20+
const it = mocha.it;
21+
22+
chai.use(chaiAsPromised);
23+
const assert = chai.assert;
24+
25+
describe("addPromiseSegment", function () {
26+
const segmentName = "woohoo";
27+
28+
before(() => {
29+
const subSegment = {
30+
addErrorFlag: () => {},
31+
close: () => {}
32+
};
33+
captureAsyncFuncValidation = (name, funcToInvoke) => { funcToInvoke(subSegment); };
34+
});
35+
36+
it("is a function", () => {
37+
assert.equal(typeof addPromiseSegment, typeof function () {});
38+
});
39+
40+
it("rejects if second param is not a promise", () => {
41+
return assert.isRejected(addPromiseSegment(segmentName, "nope nope nope"));
42+
});
43+
44+
it("returns a promise", () => {
45+
assert.instanceOf(addPromiseSegment(segmentName, Promise.resolve()), Promise);
46+
});
47+
48+
it("rejects if passed promise rejects", () => {
49+
return assert.isRejected(addPromiseSegment(segmentName, Promise.reject()));
50+
});
51+
52+
it("resolves if passed promise resolves", () => {
53+
return assert.isFulfilled(addPromiseSegment(segmentName, Promise.resolve()));
54+
});
55+
56+
it("calls XRay.captureAsyncFunc", (done) => {
57+
captureAsyncFuncValidation = () => {
58+
done();
59+
};
60+
return assert.isFulfilled(addPromiseSegment(segmentName, Promise.resolve()));
61+
});
62+
63+
it("call close on subSegment when promise rejects", (done) => {
64+
const subSegment = {
65+
addErrorFlag: () => {},
66+
close: () => {
67+
done();
68+
}
69+
};
70+
captureAsyncFuncValidation = (name, func) => {
71+
func(subSegment);
72+
};
73+
74+
addPromiseSegment(segmentName, Promise.reject());
75+
});
76+
77+
it("call addErrorFlag on subSegment when promise rejects", (done) => {
78+
const subSegment = {
79+
addErrorFlag: () => {
80+
done();
81+
},
82+
close: () => {}
83+
};
84+
captureAsyncFuncValidation = (name, func) => {
85+
func(subSegment);
86+
};
87+
88+
addPromiseSegment(segmentName, Promise.reject());
89+
});
90+
91+
it("call close on subSegment when promise resolves", (done) => {
92+
const subSegment = {
93+
addErrorFlag: () => {},
94+
close: () => {
95+
done();
96+
}
97+
};
98+
captureAsyncFuncValidation = (name, func) => {
99+
func(subSegment);
100+
};
101+
102+
addPromiseSegment(segmentName, Promise.resolve());
103+
});
104+
});

0 commit comments

Comments
 (0)