Exporting the receiver and emitter for binary 0.3

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2019-08-04 13:26:14 -03:00
parent 805c8971a1
commit fd119040fc
2 changed files with 14 additions and 3 deletions

View File

@ -42,18 +42,21 @@ describe("The SDK Requirements", () => {
expect(v03).to.have.property("Spec"); expect(v03).to.have.property("Spec");
}); });
it("should exports 'StructuredHTTPEmitter'", () => { it("should exports 'StructuredHTTPEmitter'", () => {
expect(v03).to.have.property("StructuredHTTPEmitter"); expect(v03).to.have.property("StructuredHTTPEmitter");
}); });
// StructuredHTTPReceiver it("should exports 'StructuredHTTPReceiver'", () => {
expect(v03).to.have.property("StructuredHTTPReceiver");
});
it("should exports 'BinaryHTTPEmitter'", () => { it("should exports 'BinaryHTTPEmitter'", () => {
expect(v03).to.have.property("BinaryHTTPEmitter"); expect(v03).to.have.property("BinaryHTTPEmitter");
}); });
// BinaryHTTPReceiver it("should exports 'BinaryHTTPReceiver'", () => {
expect(v03).to.have.property("BinaryHTTPReceiver");
});
it("should exports 'event'", () => { it("should exports 'event'", () => {
expect(v03).to.have.property("event"); expect(v03).to.have.property("event");

View File

@ -4,6 +4,12 @@ const StructuredHTTPEmitter =
require("../lib/bindings/http/emitter_structured.js"); require("../lib/bindings/http/emitter_structured.js");
const BinaryHTTPEmitter = require("../lib/bindings/http/emitter_binary_0_3.js"); const BinaryHTTPEmitter = require("../lib/bindings/http/emitter_binary_0_3.js");
const StructuredHTTPReceiver =
require("../lib/bindings/http/receiver_structured_0_3.js");
const BinaryHTTPReceiver =
require("../lib/bindings/http/receiver_binary_0_3.js");
function event() { function event() {
return new Cloudevent(Spec); return new Cloudevent(Spec);
} }
@ -11,6 +17,8 @@ function event() {
module.exports = { module.exports = {
Spec, Spec,
StructuredHTTPEmitter, StructuredHTTPEmitter,
StructuredHTTPReceiver,
BinaryHTTPEmitter, BinaryHTTPEmitter,
BinaryHTTPReceiver,
event event
}; };