mirror of
https://github.com/absmach/magistrala.git
synced 2026-06-23 04:10:28 +00:00
61d0427898
Signed-off-by: dusan <borovcanindusan1@gmail.com>
180 lines
3.8 KiB
Go
180 lines
3.8 KiB
Go
// Copyright (c) Abstract Machines
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package cache_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/absmach/magistrala/clients/cache"
|
|
"github.com/absmach/magistrala/pkg/errors"
|
|
repoerr "github.com/absmach/magistrala/pkg/errors/repository"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
const (
|
|
testKey = "testKey"
|
|
testID = "testID"
|
|
testKey2 = "testKey2"
|
|
testID2 = "testID2"
|
|
)
|
|
|
|
func TestSave(t *testing.T) {
|
|
redisClient.FlushAll(context.Background())
|
|
tscache := cache.NewCache(redisClient, 1*time.Minute)
|
|
ctx := context.Background()
|
|
|
|
cases := []struct {
|
|
desc string
|
|
key string
|
|
id string
|
|
err error
|
|
}{
|
|
{
|
|
desc: "Save client to cache",
|
|
key: testKey,
|
|
id: testID,
|
|
err: nil,
|
|
},
|
|
{
|
|
desc: "Save already cached client to cache",
|
|
key: testKey,
|
|
id: testID,
|
|
err: nil,
|
|
},
|
|
{
|
|
desc: "Save another client to cache",
|
|
key: testKey2,
|
|
id: testID2,
|
|
err: nil,
|
|
},
|
|
{
|
|
desc: "Save client with long key ",
|
|
key: strings.Repeat("a", 513*1024*1024),
|
|
id: testID,
|
|
err: repoerr.ErrCreateEntity,
|
|
},
|
|
{
|
|
desc: "Save client with long id ",
|
|
key: testKey,
|
|
id: strings.Repeat("a", 513*1024*1024),
|
|
err: repoerr.ErrCreateEntity,
|
|
},
|
|
{
|
|
desc: "Save client with empty key",
|
|
key: "",
|
|
id: testID,
|
|
err: repoerr.ErrCreateEntity,
|
|
},
|
|
{
|
|
desc: "Save client with empty id",
|
|
key: testKey,
|
|
id: "",
|
|
err: repoerr.ErrCreateEntity,
|
|
},
|
|
{
|
|
desc: "Save client with empty key and id",
|
|
key: "",
|
|
id: "",
|
|
err: repoerr.ErrCreateEntity,
|
|
},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
err := tscache.Save(ctx, tc.key, tc.id)
|
|
if err == nil {
|
|
id, _ := tscache.ID(ctx, tc.key)
|
|
assert.Equal(t, tc.id, id, fmt.Sprintf("%s: expected %s got %s", tc.desc, tc.id, id))
|
|
}
|
|
assert.True(t, errors.Contains(err, tc.err), fmt.Sprintf("%s: expected %s got %s", tc.desc, tc.err, err))
|
|
}
|
|
}
|
|
|
|
func TestID(t *testing.T) {
|
|
redisClient.FlushAll(context.Background())
|
|
tscache := cache.NewCache(redisClient, 1*time.Minute)
|
|
ctx := context.Background()
|
|
|
|
err := tscache.Save(ctx, testKey, testID)
|
|
assert.Nil(t, err, fmt.Sprintf("Unexpected error while trying to save: %s", err))
|
|
|
|
cases := []struct {
|
|
desc string
|
|
key string
|
|
id string
|
|
err error
|
|
}{
|
|
{
|
|
desc: "Get client ID from cache",
|
|
key: testKey,
|
|
id: testID,
|
|
err: nil,
|
|
},
|
|
{
|
|
desc: "Get client ID from cache for non existing client",
|
|
key: "nonExistingKey",
|
|
id: "",
|
|
err: repoerr.ErrNotFound,
|
|
},
|
|
{
|
|
desc: "Get client ID from cache for empty key",
|
|
key: "",
|
|
id: "",
|
|
err: repoerr.ErrNotFound,
|
|
},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
id, err := tscache.ID(ctx, tc.key)
|
|
if err == nil {
|
|
assert.Equal(t, tc.id, id, fmt.Sprintf("%s: expected %s got %s", tc.desc, tc.id, id))
|
|
}
|
|
assert.True(t, errors.Contains(err, tc.err), fmt.Sprintf("%s: expected %s got %s\n", tc.desc, tc.err, err))
|
|
}
|
|
}
|
|
|
|
func TestRemove(t *testing.T) {
|
|
redisClient.FlushAll(context.Background())
|
|
tscache := cache.NewCache(redisClient, 1*time.Minute)
|
|
ctx := context.Background()
|
|
|
|
err := tscache.Save(ctx, testKey, testID)
|
|
assert.Nil(t, err, fmt.Sprintf("Unexpected error while trying to save: %s", err))
|
|
|
|
cases := []struct {
|
|
desc string
|
|
key string
|
|
err error
|
|
}{
|
|
{
|
|
desc: "Remove existing client from cache",
|
|
key: testID,
|
|
err: nil,
|
|
},
|
|
{
|
|
desc: "Remove non existing client from cache",
|
|
key: testID2,
|
|
err: nil,
|
|
},
|
|
{
|
|
desc: "Remove client with empty ID from cache",
|
|
key: "",
|
|
err: nil,
|
|
},
|
|
{
|
|
desc: "Remove client with long id from cache",
|
|
key: strings.Repeat("a", 513*1024*1024),
|
|
err: repoerr.ErrRemoveEntity,
|
|
},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
err := tscache.Remove(ctx, tc.key)
|
|
assert.True(t, errors.Contains(err, tc.err), fmt.Sprintf("%s: expected %s got %s\n", tc.desc, tc.err, err))
|
|
}
|
|
}
|