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

add: test node as client SEA auth #990

Merged
merged 1 commit into from
Jul 24, 2020
Merged
Changes from all commits
Commits
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
70 changes: 70 additions & 0 deletions test/sea/nodeauth.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
const Gun = require("../../index.js");
const SEA = require("../../sea.js");
const expect = require("../expect");
const http = require("http");
require("../../lib/promise");

let gunClient, server;
describe("SEA node client auth", () => {
it("should start server", done => {
server = http.createServer().listen(8765, done);

let gunConfig = {
web: server
};

Gun(gunConfig);
gunClient = Gun({
file: "radataclient",
peers: ["http://localhost:8765/gun"]
});
});

it("should create user", done => {
gunClient.user().create("gun", "password", res => {
console.log({ res });
expect(res.err).to.equal(undefined);
done();
});
});

it("should not create new user when exists", done => {
gunClient2 = Gun({
file: "radataclient2",
peers: ["http://localhost:8765/gun"]
});
gunClient2.user().create("gun", "password", res => {
expect(res.err).to.equal("User already created!");
done();
});
});

it("should auth user", done => {
gunClient.user().auth("gun", "password", res => {
expect(res.err).to.equal(undefined);
done();
});
});

xit("should not stuck on null node", async () => {
const r1 = await gunClient
.user()
.once(console.log)
.get("test")
.promPut({ z: 1 });

const r2 = await gunClient
.user()
.get("test")
.promPut(null);
const res = await gunClient
.user()
.get("test")
.get("w");
});

after(() => {
server.close(() => {});
process.exit(-1);
});
});