blob: 7a861d42ba6a680ae755afd6d35ef0e6d0d9b163 [file] [log] [blame]
khenaidoo59ce9dd2019-11-11 13:05:32 -05001/*
2 * Copyright 2019-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package mocks
18
19import (
npujar5bf737f2020-01-16 19:35:25 +053020 "context"
khenaidooc7005fc2019-11-18 19:23:57 -050021 "fmt"
serkant.uluderyab38671c2019-11-01 09:35:38 -070022 "github.com/opencord/voltha-lib-go/v3/pkg/db/kvstore"
khenaidooc7005fc2019-11-18 19:23:57 -050023 "github.com/phayes/freeport"
khenaidoo59ce9dd2019-11-11 13:05:32 -050024 "github.com/stretchr/testify/assert"
khenaidoo59ce9dd2019-11-11 13:05:32 -050025 "os"
26 "testing"
27)
28
29var etcdServer *EtcdServer
30var client *kvstore.EtcdClient
31
32func setup() {
khenaidooc7005fc2019-11-18 19:23:57 -050033 clientPort, err := freeport.GetFreePort()
34 if err != nil {
khenaidoob332f9b2020-01-16 16:25:26 -050035 logger.Fatal(err)
khenaidooc7005fc2019-11-18 19:23:57 -050036 }
37 peerPort, err := freeport.GetFreePort()
38 if err != nil {
khenaidoob332f9b2020-01-16 16:25:26 -050039 logger.Fatal(err)
khenaidooc7005fc2019-11-18 19:23:57 -050040 }
41 etcdServer = StartEtcdServer(MKConfig("voltha.mock.test", clientPort, peerPort, "voltha.lib.mocks.etcd", "error"))
khenaidoo59ce9dd2019-11-11 13:05:32 -050042 if etcdServer == nil {
khenaidoob332f9b2020-01-16 16:25:26 -050043 logger.Fatal("Embedded server failed to start")
khenaidoo59ce9dd2019-11-11 13:05:32 -050044 }
khenaidooc7005fc2019-11-18 19:23:57 -050045 clientAddr := fmt.Sprintf("localhost:%d", clientPort)
46 client, err = kvstore.NewEtcdClient(clientAddr, 10)
khenaidoo59ce9dd2019-11-11 13:05:32 -050047 if err != nil || client == nil {
48 etcdServer.Stop()
khenaidoob332f9b2020-01-16 16:25:26 -050049 logger.Fatal("Failed to create an Etcd client")
khenaidoo59ce9dd2019-11-11 13:05:32 -050050 }
51}
52
53func TestEtcdServerRW(t *testing.T) {
54 key := "myKey-1"
55 value := "myVal-1"
npujar5bf737f2020-01-16 19:35:25 +053056 err := client.Put(context.Background(), key, value)
khenaidoo59ce9dd2019-11-11 13:05:32 -050057 assert.Nil(t, err)
npujar5bf737f2020-01-16 19:35:25 +053058 kvp, err := client.Get(context.Background(), key)
khenaidoo59ce9dd2019-11-11 13:05:32 -050059 assert.Nil(t, err)
60 assert.NotNil(t, kvp)
61 assert.Equal(t, kvp.Key, key)
62 val, err := kvstore.ToString(kvp.Value)
63 assert.Nil(t, err)
64 assert.Equal(t, value, val)
65}
66
67func TestEtcdServerReserve(t *testing.T) {
68 assert.NotNil(t, client)
69 txId := "tnxId-1"
npujar5bf737f2020-01-16 19:35:25 +053070 val, err := client.Reserve(context.Background(), "transactions", txId, 10)
khenaidoo59ce9dd2019-11-11 13:05:32 -050071 assert.Nil(t, err)
72 assert.NotNil(t, val)
73 assert.Equal(t, val, txId)
74}
75
76func shutdown() {
77 if client != nil {
78 client.Close()
79 }
80 if etcdServer != nil {
81 etcdServer.Stop()
82 }
83}
84
85func TestMain(m *testing.M) {
86 setup()
87 code := m.Run()
88 shutdown()
89 os.Exit(code)
90}