blob: 68d7f2a558ed980334a1e14fbf2792564727b96c [file] [log] [blame]
khenaidoobf6e7bb2018-08-14 22:27:29 -04001/*
2 * Copyright 2018-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 */
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040016package model
17
18import (
19 "encoding/json"
20 "fmt"
Stephane Barbarieec0919b2018-09-05 14:14:29 -040021 "github.com/opencord/voltha-go/protos/voltha"
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040022 "testing"
23 "time"
24)
25
26var (
Stephane Barbarie88fbe7f2018-09-25 12:25:23 -040027 backend *Backend
28 rootPrefix = "service/voltha/data/core/0001"
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040029
Stephane Barbarie88fbe7f2018-09-25 12:25:23 -040030 //basePrefix = "service/voltha/service/vcores/data/devices"
31 deviceId = "00016f13befaedcc"
32 //rootPrefix = basePrefix + "/" + deviceId
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040033 deviceProxy = "/devices/" + deviceId
34)
35
36func Test_NewRoot(t *testing.T) {
37 backend = NewBackend(ETCD_KV, etcd_host, etcd_port, timeout, rootPrefix)
38
Stephane Barbarie88fbe7f2018-09-25 12:25:23 -040039 var msgClass *voltha.Voltha
40 //var msgClass *voltha.DeviceInstance
41 root := NewRoot(msgClass, backend)
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040042
43 start := time.Now()
44
45 r := root.Load(msgClass)
46 afterLoad := time.Now()
Stephane Barbarieec0919b2018-09-05 14:14:29 -040047 fmt.Printf(">>>>>>>>>>>>> Time to Load : %f\n", afterLoad.Sub(start).Seconds())
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040048
Stephane Barbarie06c4a742018-10-01 11:09:32 -040049 d := r.node.Get(deviceProxy, "", 0, false, "")
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040050 afterGet := time.Now()
Stephane Barbarieec0919b2018-09-05 14:14:29 -040051 fmt.Printf(">>>>>>>>>>>>> Time to Load and get: %f\n", afterGet.Sub(start).Seconds())
Stephane Barbarie4a2564d2018-07-26 11:02:58 -040052
53 jr, _ := json.Marshal(r)
54 fmt.Printf("Content of ROOT --> \n%s\n", jr)
55
56 jd, _ := json.Marshal(d)
57 fmt.Printf("Content of GET --> \n%s\n", jd)
58
59}