e228d090e8
* working on put request for nsclient * working on put request for nsclient * netstate put * netstate put * wip testing client * wip - testing client and working through some errors * wip - testing client and working through some errors * put request works * put request works for client * get request working * get request working * get request working-minor edit * get request working-minor edit * list request works * list request works * working through delete error * working through delete error * fixed exp client, still working through delete error * fixed exp client, still working through delete error * delete works; fixed formatting issues * delete works; fixed formatting issues * deleted comment * deleted comment * resolving merge conflicts * resolving merge conflict * fixing merge conflict * implemented and modified kayloyans paths file * working on testing * added test for path_test.go * fixed string, read through netstate test * deleted env variables * initial commit for mocking out grpc client- got it working * mocked grpc client * mock put passed test * 2 tests pass for PUT with mock * put requests test pass, wip- want mini review * get tests pass mock * list test working * initial commit for list test * all list req. working, starting on delete tests * delete tests passed * cleaned up tests * resolved merge conflicts * resolved merge conflicts * fixed linter errors * fixed error found in travis * initial commit for fixes from PR comments * fixed pr comments and linting * added error handling for api creds, and rebased * fixes from dennis comments * fixed pr with dennis suggestioon * added copyrights to files * fixed casing per dennis great comment * fixed travis complaint on sprintf
93 lines
2.0 KiB
Go
93 lines
2.0 KiB
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package pool
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type TestFoo struct {
|
|
called string
|
|
}
|
|
|
|
func TestGet(t *testing.T) {
|
|
cases := []struct {
|
|
pool ConnectionPool
|
|
key string
|
|
expected TestFoo
|
|
expectedError error
|
|
}{
|
|
{
|
|
pool: ConnectionPool{cache: map[string]interface{}{"foo": TestFoo{called: "hoot"}}},
|
|
key: "foo",
|
|
expected: TestFoo{called: "hoot"},
|
|
expectedError: nil,
|
|
},
|
|
}
|
|
|
|
for _, v := range cases {
|
|
test, err := v.pool.Get(context.Background(), v.key)
|
|
assert.Equal(t, v.expectedError, err)
|
|
assert.Equal(t, v.expected, test)
|
|
}
|
|
}
|
|
|
|
func TestAdd(t *testing.T) {
|
|
cases := []struct {
|
|
pool ConnectionPool
|
|
key string
|
|
value TestFoo
|
|
expected TestFoo
|
|
expectedError error
|
|
}{
|
|
{
|
|
pool: ConnectionPool{cache: map[string]interface{}{}},
|
|
key: "foo",
|
|
value: TestFoo{called: "hoot"},
|
|
expected: TestFoo{called: "hoot"},
|
|
expectedError: nil,
|
|
},
|
|
}
|
|
|
|
for _, v := range cases {
|
|
err := v.pool.Add(context.Background(), v.key, v.value)
|
|
assert.Equal(t, v.expectedError, err)
|
|
|
|
test, err := v.pool.Get(context.Background(), v.key)
|
|
assert.Equal(t, v.expectedError, err)
|
|
|
|
assert.Equal(t, v.expected, test)
|
|
}
|
|
}
|
|
|
|
func TestRemove(t *testing.T) {
|
|
cases := []struct {
|
|
pool ConnectionPool
|
|
key string
|
|
value TestFoo
|
|
expected interface{}
|
|
expectedError error
|
|
}{
|
|
{
|
|
pool: ConnectionPool{cache: map[string]interface{}{"foo": TestFoo{called: "hoot"}}},
|
|
key: "foo",
|
|
expected: nil,
|
|
expectedError: nil,
|
|
},
|
|
}
|
|
|
|
for _, v := range cases {
|
|
err := v.pool.Remove(context.Background(), v.key)
|
|
assert.Equal(t, v.expectedError, err)
|
|
|
|
test, err := v.pool.Get(context.Background(), v.key)
|
|
assert.Equal(t, v.expectedError, err)
|
|
|
|
assert.Equal(t, v.expected, test)
|
|
}
|
|
}
|