-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #990 from amark/node-client-auth
add: test node as client SEA auth
- Loading branch information
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
}); | ||
}); |