Commit 13be24b0 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent ce6c0ff3
...@@ -35,6 +35,11 @@ import ( ...@@ -35,6 +35,11 @@ import (
"lab.nexedi.com/kirr/go123/exc" "lab.nexedi.com/kirr/go123/exc"
) )
// XXX dup from connection_test
func xwait(w interface { Wait() error }) {
err := w.Wait()
exc.Raiseif(err)
}
// xfs1stor creates new NEO storage node backed by fs1 // xfs1stor creates new NEO storage node backed by fs1
// XXX is this wrapper a good idea? // XXX is this wrapper a good idea?
...@@ -65,7 +70,7 @@ func TestMasterStorage(t *testing.T) { ...@@ -65,7 +70,7 @@ func TestMasterStorage(t *testing.T) {
// basic interaction between Client -- Storage // basic interaction between Client -- Storage
func TestClientStorage(t *testing.T) { func TestClientStorage(t *testing.T) {
Cnl, Snl := nodeLinkPipe() Cnl, Snl := NodeLinkPipe()
wg := WorkGroup() wg := WorkGroup()
Sctx, Scancel := context.WithCancel(context.Background()) Sctx, Scancel := context.WithCancel(context.Background())
......
...@@ -184,6 +184,9 @@ func nodeLinkPipe() (nl1, nl2 *NodeLink) { ...@@ -184,6 +184,9 @@ func nodeLinkPipe() (nl1, nl2 *NodeLink) {
return _nodeLinkPipe(0, 0) return _nodeLinkPipe(0, 0)
} }
// XXX temp for cluster_test.fo
var NodeLinkPipe = nodeLinkPipe
func TestNodeLink(t *testing.T) { func TestNodeLink(t *testing.T) {
// TODO catch exception -> add proper location from it -> t.Fatal (see git-backup) // TODO catch exception -> add proper location from it -> t.Fatal (see git-backup)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment