go-gun/gun/tests/gun_test.go

74 lines
2.1 KiB
Go
Raw Normal View History

2019-02-22 06:46:19 +00:00
package tests
2019-02-22 18:40:02 +00:00
import (
2019-02-25 04:23:15 +00:00
"strings"
2019-02-22 18:40:02 +00:00
"testing"
"github.com/cretz/esgopeta/gun"
2019-02-22 18:40:02 +00:00
)
func TestGunGetSimple(t *testing.T) {
2019-02-22 06:46:19 +00:00
// Run the server, put in one call, get in another, then check
ctx, cancelFn := newContext(t)
2019-02-22 06:46:19 +00:00
defer cancelFn()
serverCancelFn := ctx.startGunJSServer()
defer serverCancelFn()
2019-02-22 06:46:19 +00:00
randStr := randString(30)
2019-02-22 18:40:02 +00:00
// Write w/ JS
ctx.runJSWithGun(`
gun.get('esgopeta-test').get('TestGunGetSimple').get('some-key').put('` + randStr + `', ack => {
2019-02-22 06:46:19 +00:00
if (ack.err) {
console.error(ack.err)
process.exit(1)
}
process.exit(0)
})
`)
2019-02-22 18:40:02 +00:00
// Get
g := ctx.newGunConnectedToGunJS()
2019-02-22 21:40:55 +00:00
defer g.Close()
// Make sure we got back the same value
2019-02-25 04:23:15 +00:00
r := g.Scoped(ctx, "esgopeta-test", "TestGunGetSimple", "some-key").FetchOne(ctx)
ctx.Require.NoError(r.Err)
ctx.Require.Equal(gun.ValueString(randStr), r.Value.(gun.ValueString))
// Do it again with the JS server closed since it should fetch from memory
serverCancelFn()
ctx.debugf("Asking for key again")
r = g.Scoped(ctx, "esgopeta-test", "TestGunGetSimple", "some-key").FetchOne(ctx)
ctx.Require.NoError(r.Err)
ctx.Require.Equal(gun.ValueString(randStr), r.Value.(gun.ValueString))
2019-02-25 04:23:15 +00:00
}
2019-02-22 06:46:19 +00:00
2019-02-25 04:23:15 +00:00
func TestGunPutSimple(t *testing.T) {
2019-02-25 05:14:26 +00:00
ctx, cancelFn := newContextWithGunJServer(t)
2019-02-25 04:23:15 +00:00
defer cancelFn()
randStr := randString(30)
// Put
g := ctx.newGunConnectedToGunJS()
defer g.Close()
// Just wait for two acks (one local, one remote)
ch := g.Scoped(ctx, "esgopeta-test", "TestGunPutSimple", "some-key").Put(ctx, gun.ValueString(randStr))
// TODO: test local is null peer and remote is non-null
r := <-ch
ctx.Require.NoError(r.Err)
r = <-ch
ctx.Require.NoError(r.Err)
// Get from JS
out := ctx.runJSWithGun(`
gun.get('esgopeta-test').get('TestGunPutSimple').get('some-key').once(data => {
console.log(data)
process.exit(0)
})
`)
ctx.Require.Equal(randStr, strings.TrimSpace(string(out)))
2019-02-22 06:46:19 +00:00
}
/*
TODO Tests to write:
* test put w/ future state happens then
* test put w/ old state is discarded
* test put w/ new state is persisted
* test put w/ same state but greater is persisted
* test put w/ same state but less is discarded
*/