f9af3b6ee4
* initial commit for PUT request authorization * inital auth for put request * auth. request working for all req * deleted library * removed .db files * work in progress for modifying test suite to accomodate credentials * modified tests * gofmt, fixed code based on suggestions; test passed * gofmt again * merged nat's update on pointers, passed tests, cleanup from git rebase * fixed fmt * fixed fmt on tests * work in progress * reduced code * fixed naming conventions * added line in code * fixed server bug, merged new code to server, added env * fixed linter; getting cright issues on piecestore * added comments for what passes on the creds
164 lines
3.6 KiB
Go
164 lines
3.6 KiB
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package netstate
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"testing"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
"github.com/stretchr/testify/assert"
|
|
"go.uber.org/zap"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
pb "storj.io/storj/protos/netstate"
|
|
)
|
|
|
|
func TestNetStateClient(t *testing.T) {
|
|
logger, _ := zap.NewDevelopment()
|
|
|
|
lis, err := net.Listen("tcp", fmt.Sprintf(":%d", 9000))
|
|
assert.NoError(t, err)
|
|
|
|
mdb := &MockDB{
|
|
timesCalled: 0,
|
|
}
|
|
|
|
grpcServer := grpc.NewServer()
|
|
pb.RegisterNetStateServer(grpcServer, NewServer(mdb, logger))
|
|
|
|
defer grpcServer.GracefulStop()
|
|
go grpcServer.Serve(lis)
|
|
|
|
address := lis.Addr().String()
|
|
conn, err := grpc.Dial(address, grpc.WithInsecure())
|
|
assert.NoError(t, err)
|
|
|
|
c := pb.NewNetStateClient(conn)
|
|
|
|
ctx := context.Background()
|
|
|
|
// example file path to put/get
|
|
pr1 := pb.PutRequest{
|
|
Path: []byte("here/is/a/path"),
|
|
Pointer: &pb.Pointer{
|
|
Type: pb.Pointer_INLINE,
|
|
Encryption: &pb.EncryptionScheme{
|
|
EncryptedEncryptionKey: []byte("key"),
|
|
EncryptedStartingNonce: []byte("nonce"),
|
|
},
|
|
InlineSegment: []byte("oatmeal"),
|
|
},
|
|
APIKey: []byte("abc123"),
|
|
}
|
|
|
|
if mdb.timesCalled != 0 {
|
|
t.Error("Expected mockdb to be called 0 times")
|
|
}
|
|
|
|
// Tests Server.Put
|
|
_, err = c.Put(ctx, &pr1)
|
|
if err != nil || status.Code(err) == codes.Internal {
|
|
t.Error("Failed to Put")
|
|
}
|
|
|
|
if mdb.timesCalled != 1 {
|
|
t.Error("Failed to call mockdb correctly")
|
|
}
|
|
|
|
if !bytes.Equal(mdb.puts[0].Path, pr1.Path) {
|
|
t.Error("Expected saved path to equal given path")
|
|
}
|
|
|
|
pointerBytes, err := proto.Marshal(pr1.Pointer)
|
|
if err != nil {
|
|
t.Error("failed to marshal test pointer")
|
|
}
|
|
|
|
if !bytes.Equal(mdb.puts[0].Pointer, pointerBytes) {
|
|
t.Error("Expected saved value to equal given value")
|
|
}
|
|
|
|
// Tests Server.Get
|
|
getReq := pb.GetRequest{
|
|
Path: []byte("here/is/a/path"),
|
|
APIKey: []byte("abc123"),
|
|
}
|
|
|
|
getRes, err := c.Get(ctx, &getReq)
|
|
assert.NoError(t, err)
|
|
|
|
if !bytes.Equal(getRes.Pointer, pointerBytes) {
|
|
t.Error("Expected to get same content that was put")
|
|
}
|
|
|
|
if mdb.timesCalled != 2 {
|
|
t.Error("Failed to call mockdb correct number of times")
|
|
}
|
|
|
|
// Puts another pointer entry to test delete and list
|
|
pr2 := pb.PutRequest{
|
|
Path: []byte("here/is/another/path"),
|
|
Pointer: &pb.Pointer{
|
|
Type: pb.Pointer_INLINE,
|
|
Encryption: &pb.EncryptionScheme{
|
|
EncryptedEncryptionKey: []byte("key"),
|
|
EncryptedStartingNonce: []byte("nonce"),
|
|
},
|
|
InlineSegment: []byte("raisins"),
|
|
},
|
|
APIKey: []byte("abc123"),
|
|
}
|
|
|
|
_, err = c.Put(ctx, &pr2)
|
|
if err != nil || status.Code(err) == codes.Internal {
|
|
t.Error("Failed to Put")
|
|
}
|
|
|
|
if mdb.timesCalled != 3 {
|
|
t.Error("Failed to call mockdb correct number of times")
|
|
}
|
|
|
|
// Test Server.Delete
|
|
delReq := pb.DeleteRequest{
|
|
Path: []byte("here/is/a/path"),
|
|
APIKey: []byte("abc123"),
|
|
}
|
|
|
|
_, err = c.Delete(ctx, &delReq)
|
|
if err != nil || status.Code(err) == codes.Internal {
|
|
t.Error("Failed to delete")
|
|
}
|
|
|
|
if mdb.timesCalled != 4 {
|
|
t.Error("Failed to call mockdb correct number of times")
|
|
}
|
|
|
|
// Tests Server.List
|
|
listReq := pb.ListRequest{
|
|
// This pagination functionality doesn't work yet.
|
|
// The given arguments are placeholders.
|
|
StartingPathKey: []byte("test/pointer/path"),
|
|
Limit: 5,
|
|
APIKey: []byte("abc123"),
|
|
}
|
|
|
|
listRes, err := c.List(ctx, &listReq)
|
|
if err != nil {
|
|
t.Error("Failed to list file paths")
|
|
}
|
|
|
|
if !bytes.Equal(listRes.Paths[0], []byte("here/is/another/path")) {
|
|
t.Error("Failed to list correct file path")
|
|
}
|
|
|
|
if mdb.timesCalled != 5 {
|
|
t.Error("Failed to call mockdb correct number of times")
|
|
}
|
|
}
|